/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--gray-100);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-top: 60px;
}

.testimonial-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--gray-200);
}

.testimonial-tab {
  background: transparent;
  border: none;
  font-family: inherit;
  text-align: left;
  padding: 24px 28px;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all var(--t-fast);
}

.testimonial-tab:hover {
  background: rgba(0, 0, 0, 0.03);
}

.testimonial-tab.active {
  border-left-color: var(--black);
  background: var(--white);
}

.tab-author {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.tab-role {
  font-size: 12px;
  color: var(--gray-600);
}

.testimonial-content {
  background: var(--white);
  padding: 64px;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  font-size: 120px;
  line-height: 0.8;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 24px;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.testimonial-meta {
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-panel {
  display: none;
}

.testimonial-panel.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
