/* Cards horizontais responsivos para depoimentos dentro das páginas de case */
#depoimentos.case-testimonials .t-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

#depoimentos.case-testimonials .t-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 32px;
  padding: 32px;
  min-height: 260px;
}

#depoimentos.case-testimonials .t-quote-mark {
  display: none;
}

#depoimentos.case-testimonials .t-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#depoimentos.case-testimonials .t-avatar {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  font-size: 1.4rem;
}

#depoimentos.case-testimonials .t-logo {
  max-width: 170px;
  max-height: 90px;
  margin-left: 0;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  object-fit: contain;
  opacity: 1;
}

#depoimentos.case-testimonials .t-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

#depoimentos.case-testimonials .t-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #C9CDD6;
}

#depoimentos.case-testimonials .t-person {
  border-top: 1px solid var(--nb);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

#depoimentos.case-testimonials .t-name {
  font-size: 1rem;
}

#depoimentos.case-testimonials .t-role {
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  #depoimentos.case-testimonials .t-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    min-height: auto;
  }

  #depoimentos.case-testimonials .t-media {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
  }

  #depoimentos.case-testimonials .t-avatar {
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    font-size: 1.1rem;
  }

  #depoimentos.case-testimonials .t-logo {
    max-width: 140px;
    max-height: 70px;
    padding: 8px 10px;
  }

  #depoimentos.case-testimonials .t-text {
    font-size: 0.95rem;
  }
}
