.n-testimonies {
  --testimony-star-size: 14px;
  max-width: var(--n-max-width, 1360px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.n-testimonies__title {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--n-color-muted, #7a7a7a);
}
.n-testimonies__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.5vw, 1.3rem);
  width: 100%;
  padding-bottom: 20px;
}
.n-testimonies .swiper-button-prev,
.n-testimonies .swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--n-color-white, #fff);
  color: var(--n-color-dark, #242323);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 425px) {
  .n-testimonies .swiper-button-prev,
  .n-testimonies .swiper-button-next {
    display: none;
  }
}
.n-testimonies .swiper-button-prev::after,
.n-testimonies .swiper-button-next::after {
  font-size: 14px;
  font-weight: 700;
}

.n-testimony {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  padding: 0;
  background: transparent;
}
.n-testimony__quotation {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  min-height: var(--testimony-star-size);
  margin-top: auto;
}
.n-testimony__quotation-star {
  width: var(--testimony-star-size);
  height: var(--testimony-star-size);
  display: inline-block;
  position: relative;
  background: center/contain no-repeat url("../images/star.svg");
}
.n-testimony__quotation-star.half {
  background-image: url("../images/half-star.svg");
}
.n-testimony__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--n-color-dark, #242323);
}
.n-testimony__content {
  color: var(--n-color-muted, #7a7a7a);
  font-size: 0.9rem;
  line-height: 1.45;
}
.n-testimony__content p {
  margin: 0;
}

@media (max-width: 768px) {
  .n-testimonies {
    margin: 1.2rem 0.8rem;
  }
  .n-testimonies__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 540px) {
  .n-testimonies__list {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=nephants_testimony.css.map */
