.testimonials {
  background: #000;
  color: #fff;
  border-bottom: 2px solid #000;
  position: relative;
}

.ts-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.ts-title-cell {
  padding: 60px 40px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.ts-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(80px, 14vw, 160px);
  letter-spacing: -3px;
  line-height: .85;
  color: #fff;
  text-transform: uppercase;
}

.ts-desc-cell {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ts-desc {
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  letter-spacing: 1px;
  max-width: 340px;
}

.ts-count-big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 100px;
  color: rgba(255,255,255,.06);
  line-height: 1;
  letter-spacing: -5px;
  margin-bottom: -20px;
}

.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.ts-card {
  padding: 48px 36px 36px;
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  min-height: 320px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.ts-card:last-child { border-right: none; }
.ts-card.vis { opacity: 1; transform: translateY(0); }

.ts-mark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 120px;
  line-height: .6;
  color: rgba(255,255,255,.18);
  position: absolute;
  top: 24px;
  right: 36px;
  pointer-events: none;
}

.ts-quote {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  flex: 1;
  position: relative;
  z-index: 1;
}

.ts-author {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ts-author-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .3px;
}

.ts-author-role {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .ts-grid { grid-template-columns: 1fr; }
  .ts-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .ts-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .ts-header { grid-template-columns: 1fr; }
  .ts-title-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); padding: 40px 20px; }
  .ts-desc-cell { padding: 30px 20px; }
  .ts-card { padding: 36px 20px 28px; min-height: auto; }
}
