/* ── PROGRAMME CARDS — Cinematic horizontal scroll ───────────── */

/* Remove old grid layout */
.main-page-popular-programs .row {
  display: block !important;
  margin: 0 !important;
}
.main-page-popular-programs .col-lg-3,
.main-page-popular-programs .col-sm-6 {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}

/* Scroll container */
.tc-scroll-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -48px;
  padding: 0 48px;
}
.tc-scroll-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.tc-scroll-track::-webkit-scrollbar { display: none; }
.tc-scroll-track.grabbing { cursor: grabbing; }

/* Individual card */
.tc-scroll-card {
  flex-shrink: 0;
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--tc-light);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  display: block;
}
.tc-scroll-card:hover { transform: translateY(-3px); }

/* Portrait photo */
.tc-scroll-card__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tc-scroll-card:hover .tc-scroll-card__img { transform: scale(1.03); }

/* Price badge */
.tc-scroll-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 11px;
  border-radius: 20px;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--tc-dark);
  backdrop-filter: blur(4px);
}

/* Bottom overlay */
.tc-scroll-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
}
.tc-scroll-card__loc {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-b);
  margin-bottom: 4px;
}
.tc-scroll-card__name {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}
.tc-scroll-card__age {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-b);
  margin-top: 4px;
}

/* Arrow controls */
.tc-scroll-arrows {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  justify-content: flex-end;
}
.tc-scroll-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--tc-border);
  background: var(--tc-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--tc-dark);
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.tc-scroll-arrow:hover {
  background: var(--tc-orange);
  border-color: var(--tc-orange);
  color: #fff;
}

/* Section header with arrows */
.tc-programmes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
