.chi-hero-slides,
.chi-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chi-hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 1.25s ease, transform 7s ease;
  will-change: opacity, transform;
}

.chi-hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.chi-hero-controls {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  display: flex;
  gap: 9px;
}

.chi-hero-controls button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 999px;
  background: rgba(255,255,255,.24);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.chi-hero-controls button.active {
  width: 28px;
  background: #fff;
}

.chi-hero-controls button:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .chi-hero-slide { object-position: 68% center; }
  .chi-hero-controls { right: 18px; bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .chi-hero-slide { transition: none; transform: none; }
}

.programme-visual.has-image {
  position: relative;
  height: 170px;
  padding: 0;
  overflow: hidden;
  background: #0a2540;
}

.programme-visual.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,22,42,.72));
}

.programme-visual.has-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.chi-programmes article:hover .programme-visual.has-image img { transform: scale(1.045); }
.programme-visual.has-image span { position: absolute; right: 18px; bottom: 10px; z-index: 2; }
.programme-summary { min-height: 38px; margin: -4px 0 13px; color: #607086; font-size: 10px; line-height: 1.55; }
