/* SECTION */
.testimonials-section {
  padding: 6rem 4rem;
  background: var(--color-bg-light);
  color: #fff;
}

/* TITLE */
.testimonials-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem auto;
}
.testimonials-title h5 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: calc(var(--spacing) * 2);
  color: #b98c25;
  /* font-weight: 800; */
  margin-bottom: 0.5rem;
}

.testimonials-title > h2 {
  font-size: calc(var(--spacing) * 60);
  color: #000;
  font-weight: 700;
}
.testimonials-title p {
  color: #000;
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
}
/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

/* TEXT */
.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* AUTHOR */
.testimonial-author strong {
  display: block;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #777;
}

/* TABLET */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .testimonials-section {
    padding: 4rem 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quote-section {
  padding: 24px 32px;
  background: #f5f5f3;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 48px;
  color: #c9a227;
  opacity: 0.6;
  font-family: serif;
}

.quote-text {
  color: #3d3d32;
  font-style: italic;
  line-height: 1.623;
  font-size: 1.2rem;
  padding-top: 3rem;
  color: #4b5563;
}

.guest-section {
  background: #6b7a4f;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.guest-image {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c9a227;
}

.guest-info h3 {
  color: #ffffff;
  font-size: 18px;
  font-family: "Playfair Display", serif;
  margin: 0;
}

.guest-location {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 4px 0 0 0;
}
