#tnh-carrossel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  font-family: "Switzer", "Switzer Variable", Arial, sans-serif;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
#tnh-carrossel-wrap:active { cursor: grabbing; }

/* Track */
#tnh-carrossel-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

/* Card */
.tnh-cc-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  outline: 1px solid #DDD;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.tnh-cc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13); }

/* Thumb */
.tnh-cc-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  flex-shrink: 0;
  background: #1d1d1b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tnh-cc-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s;
}
.tnh-cc-card:hover .tnh-cc-thumb img { transform: scale(1.04); }

/* Info */
.tnh-cc-info {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tnh-cc-titulo {
  font-family: 'Gambarino', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #820105;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tnh-cc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #61615F;
}
.tnh-cc-meta-item { display: flex; align-items: center; gap: 5px; }
.tnh-cc-sep { width: 1px; height: 14px; background: #61615F; opacity: 0.4; }

/* Nav — só a barra, sem botões */
#tnh-carrossel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

/* Barra de progresso */
#tnh-dots {
  width: 100%;
  max-width: 300px;
  position: relative;
  height: 5px;
  border-radius: 70px;
  background: var(--Principal-preto-100, #DDD);
  overflow: visible;
}
#tnh-progress {
  position: absolute;
  top: 0; left: 0;
  height: 5px;
  border-radius: 80px;
  background: var(--principal-vermelho-500-main, #820105);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile: 1 card por vez */
@media (max-width: 768px) {
  .tnh-cc-card { width: 100%; }
  #tnh-carrossel-track { gap: 16px; }
}
