/* ============================================
   SARAANSH — TESTIMONIALS PAGE STYLES
   ============================================ */

/* ============================================
   PAGE HEADER
   ============================================ */

.test-header {
  padding: 14vh var(--gutter) 8vh;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.test-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 14px;
}

.test-eyebrow::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre);
  display: inline-block;
}

.test-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.test-sub {
  font-size: 15px;
  color: var(--charcoal-soft);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   QUOTE MARK — shared
   ============================================ */

.test-mark {
  display: block;
  font-size: 56px;
  color: var(--ochre);
  font-weight: 300;
  line-height: 0.8;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.test-mark--small {
  font-size: 36px;
  margin-bottom: 12px;
}

/* ============================================
   FEATURED TESTIMONIAL
   ============================================ */

.test-featured {
  padding: 10vh var(--gutter);
  border-bottom: 1px solid var(--hairline);
}

.test-featured__inner {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 0 6vw;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.test-featured__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 4vw;
  border-right: 1px solid var(--hairline-strong);
}

.test-featured__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

.test-featured__project {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
}

.test-featured__location {
  font-size: 12px;
  color: var(--charcoal-faint);
}

.test-featured__right {
  position: relative;
}

.test-featured__quote {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  font-style: italic;
}

.test-featured__rule {
  width: 32px;
  height: 2px;
  background: var(--ochre);
  margin-top: 24px;
}

/* ============================================
   THREE CARD GRID
   ============================================ */

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
}

.test-card {
  background: var(--canvas);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.test-card__quote {
  font-size: 14px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  font-style: italic;
  flex: 1;
}

.test-card__divider {
  width: 24px;
  height: 1px;
  background: var(--hairline-strong);
}

.test-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.test-card__project {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ochre);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .test-featured__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .test-featured__left {
    border-right: none;
    border-bottom: 1px solid var(--hairline-strong);
    padding-right: 0;
    padding-bottom: 24px;
  }

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

@media (max-width: 540px) {
  .test-featured__quote {
    font-size: 18px;
  }

  .test-card {
    padding: 28px var(--gutter);
  }
}
