/* Why Narvyn Moda page */

.why-hero {
  padding: 4rem 0 2.5rem;
  text-align: center;
  background: var(--white);
}

.why-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.35;
  font-weight: 500;
}

.why-story {
  padding: 2rem 0 4rem;
  background: var(--white);
}

.why-story__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.why-story__content p {
  font-size: 1.0625rem;
  line-height: 1.75;
}

.why-story__content .btn {
  margin-top: 0.5rem;
}

.why-story__media {
  text-align: center;
}

.why-story__media img {
  max-width: 420px;
  margin-inline: auto;
  border-radius: 8px;
}

.why-story__caption {
  margin-top: 1rem;
  font-size: 1rem;
}

.why-story__caption em {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

@media (min-width: 900px) {
  .why-story__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.why-testimonials {
  padding: 4rem 0;
  background: var(--blue-light);
}

.why-testimonials__grid {
  display: grid;
  gap: 1.5rem;
}

.why-testimonial-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.why-testimonial-card__body {
  padding: 1.5rem 1.5rem 1.25rem;
}

.why-testimonial-card__stars {
  color: var(--green);
  font-size: 0.9375rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.why-testimonial-card__text {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.why-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e4e4e4;
  background: rgba(59, 130, 246, 0.06);
}

.why-testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.why-testimonial-card__name strong,
.why-testimonial-card__name p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
}

.why-testimonial-card__name span,
.why-testimonial-card__name p:last-child {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

@media (min-width: 900px) {
  .why-testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
