/* ===== Carrusel tlkbanner (simple, JSON con logo como título) ===== */
.tlkbanner {
  position: relative;
  width: 100%;
}
.tlkbanner-viewport {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.tlkbanner-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.tlkbanner-slide {
  flex: 0 0 100%;
  position: relative;
  height: 460px;
}

.tlkbanner-card {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #000;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
}
.tlkbanner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0) 75%
  );
}
.tlkbanner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 48px;
  max-width: 560px;
}
.tlkbanner-logo {
  max-width: 380px;
  height: auto;
  display: block;
}
.tlkbanner-sub {
  margin: 6px 0 0;
  font-size: clamp(14px, 1.6vw, 18px);
  opacity: 0.95;
}
.tlkbanner-btn {
  margin-top: 14px;
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 4px;
}
.tlkbanner-btn:hover {
  background: #fff;
  color: #000;
}

.tlkbanner-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.tlkbanner-arrow {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 28px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.tlkbanner-prev {
  left: 8px;
}
.tlkbanner-next {
  right: 8px;
}

.tlkbanner-indicators {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
}
.tlkbanner-ind {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.tlkbanner-ind > i {
  position: absolute;
  inset: 0;
  width: 0%;
  background: #fff;
  display: block;
}
.tlkbanner-ind.is-active > i {
  width: 100%;
  transition: width var(--tlkbanner-interval, 5000ms) linear;
}

@media (max-width: 1024px) {
  .tlkbanner-slide {
    height: 420px;
  }
  .tlkbanner-content {
    padding: 40px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .tlkbanner-slide {
    height: 380px;
  }
  .tlkbanner-content {
    padding: 24px;
    max-width: 88vw;
  }
  .tlkbanner-logo {
    max-width: 30vw;
    margin-top: 130px;
  }

}
