.testimonials-section{
  padding:120px 0;
  background:var(--soft);
  border-top:1px solid var(--line);
}
.testimonials-section.is-white{
  background:var(--white);
}
.tvoices-heading-text{
  max-width:460px;
}
.tvoices-heading-text p{
  margin:0;
  font-size:18px;
  line-height:1.65;
  color:rgba(17,17,17,.72);
}
.tvoices-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:24px;
}
.tvoices-grid + .tvoices-grid{
  margin-top:24px;
}
.tvoices-card{
  grid-column:span 4;
  display:flex;
  flex-direction:column;
  min-height:100%;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.035);
}
.tvoices-card--wide{
  grid-column:span 6;
}
.tvoices-card--text{
  justify-content:space-between;
}
.tvoices-media{
  aspect-ratio:4/3;
  overflow:hidden;
  background:#ece7dc;
}
.tvoices-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.tvoices-body{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:26px;
  height:100%;
}
.tvoices-kicker{
  margin:0;
  color:var(--red);
  font-size:12px;
  line-height:1.4;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.tvoices-title{
  margin:0;
  font-size:clamp(25px,2.1vw,34px);
  line-height:1.02;
  letter-spacing:-.045em;
}
.tvoices-meta{
  margin:0;
  font-size:14px;
  line-height:1.6;
  color:rgba(17,17,17,.68);
}
.tvoices-quote{
  margin:0;
  font-size:18px;
  line-height:1.68;
  color:var(--ink);
}
.tvoices-quote::before{content:"“";}
.tvoices-quote::after{content:"”";}
.tvoices-note{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:rgba(17,17,17,.74);
}
.tvoices-signoff{
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid var(--line);
  font-size:14px;
  line-height:1.5;
  color:rgba(17,17,17,.66);
}
.tvoices-grid--single .tvoices-card{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(280px,360px) 1fr;
}
.tvoices-grid--single .tvoices-card.tvoices-card--text{
  display:flex;
}
.tvoices-grid--single .tvoices-media{
  aspect-ratio:auto;
  height:100%;
  min-height:320px;
}
.tvoices-grid--single .tvoices-body{
  padding:34px;
}
.tvoices-duo{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.tvoices-duo .tvoices-media{
  aspect-ratio:4/4.25;
}
.tvoices-card--compact .tvoices-title{
  font-size:clamp(23px,2vw,30px);
}
.tvoices-card--compact .tvoices-quote{
  font-size:17px;
}
@media (max-width: 1200px){
  .tvoices-card,
  .tvoices-card--wide{
    grid-column:span 6;
  }
}
@media (max-width: 900px){
  .testimonials-section{
    padding:96px 0;
  }
  .tvoices-grid--single .tvoices-card{
    display:flex;
    grid-template-columns:none;
  }
  .tvoices-grid--single .tvoices-media{
    min-height:280px;
  }
}
@media (max-width: 760px){
  .tvoices-card,
  .tvoices-card--wide{
    grid-column:1 / -1;
  }
  .tvoices-duo{
    grid-template-columns:1fr;
  }
  .tvoices-heading-text{
    max-width:none;
  }
}
