:root {
  --cf-bg: #0b0d10;
  --cf-bg-muted: #12161b;
  --cf-surface: #191919;
  --cf-surface-strong: #242424;
  --cf-panel: #101419;
  --cf-panel-alt: #171c21;
  --cf-text: #f3f7fb;
  --cf-text-soft: #b1bcc8;
  --cf-text-muted: #7f8b98;
  --cf-border: #383838;
  --cf-border-strong: #565656;
  --cf-primary: #00cae7;
  --cf-primary-hover: #11d8f2;
  --cf-primary-soft: rgba(0, 202, 231, 0.12);
  --cf-secondary: #6ef6d4;
  --cf-danger: #e05a5a;
  --cf-warning: #e0aa3e;
  --cf-radius-sm: 10px;
  --cf-radius: 20px;
  --cf-radius-lg: 30px;
  --cf-shadow-sm: 0 10px 20px rgba(0, 0, 0, 0.2);
  --cf-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --cf-shell-width: min(1360px, calc(100vw - 24px)); /* matches the audio player width */
  --cf-copy-width: 640px;
}

html {
  color-scheme: dark;
  background: var(--cf-bg);
}

body {
  margin: 0 !important;
  padding: 0 !important;
  background:
    radial-gradient(circle at top right, rgba(0, 202, 231, 0.1), transparent 24%),
    radial-gradient(circle at 15% 20%, rgba(110, 246, 212, 0.08), transparent 28%),
    linear-gradient(180deg, #071014 0%, #0b0d10 24%, #090b0d 100%) !important;
  color: var(--cf-text) !important;
  font-family: 'SFProDisplay', 'Montserrat', sans-serif !important;
  text-align: left !important;
  text-justify: auto !important;
}

/* ===== Centreforce display headers — Scale Variable (variable font) =====
   Experiment: change --cf-head-wght (100–900) and --cf-head-wdth (~75–125). */
:root {
  --cf-head-wght: 800;
  --cf-head-wdth: 100;
}

h1, h2, h3,
.cf-page-title, .h1-style, .h3-style,
.section-header h2, .slide-content h2,
.cf-home .cf-home-headline h2,
.show-count-title, .sticky-heading {
  font-variation-settings: "wdth" var(--cf-head-wdth), "wght" var(--cf-head-wght);
}

/* Kickers / small labels — same font, lighter weight for legibility */
.cf-page-kicker,
.cf-brand-kicker, .cf-nav-label, .cf-section-kicker,
.cf-card-meta, .cf-footer-label, .cf-hero-meta, .hero-text p {
  font-variation-settings: "wdth" 100, "wght" 600;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  opacity: 0.25;
}

.hero-home .slide-content h2,
.section-header h2 {
  font-family: 'scale-variable', sans-serif !important;
}

.page-container {
  position: relative;
}

.bloc,
.bloc .container,
.full-width-bloc .container {
  max-width: none !important;
}

/* #bloc-8 is an empty placeholder bloc above the nav. Its container carries
   Blocs' .bloc-lg (100px top+bottom) padding; bloc-no-padding-lg only clears it
   at desktop, so on mobile ~200px of empty space pushes the hero down. It holds
   nothing — hide it so the hero sits at the top (nav floats over it, as on desktop). */
#bloc-8 { display: none; }

.cf-shell {
  position: relative;
  z-index: 2;
}

.cf-shell,
#page-content {
  background: transparent !important;
}

#ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;   /* mobile: exclude the browser toolbars so content centres in the visible area */
  background: rgba(6, 9, 12, 0.86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Centreforce loader — wordmark + neon equalizer bars (radio-themed, lightweight) */
.cf-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cf-loader-logo {
  width: 148px;
  height: auto;
  animation: cfLoaderPulse 1.6s ease-in-out infinite;
}

.cf-loader-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 28px;
}

.cf-loader-bars span {
  display: block;
  width: 5px;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(180deg, #6ef6d4 0%, #00cae7 100%);
  transform-origin: bottom center;
  animation: cfLoaderEq 1s ease-in-out infinite;
}

.cf-loader-bars span:nth-child(1) { animation-delay: 0s; }
.cf-loader-bars span:nth-child(2) { animation-delay: 0.18s; }
.cf-loader-bars span:nth-child(3) { animation-delay: 0.36s; }
.cf-loader-bars span:nth-child(4) { animation-delay: 0.18s; }
.cf-loader-bars span:nth-child(5) { animation-delay: 0s; }

@keyframes cfLoaderEq {
  0%, 100% { transform: scaleY(0.3); opacity: 0.7; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

@keyframes cfLoaderPulse {
  0%, 100% { opacity: 0.85; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .cf-loader-logo,
  .cf-loader-bars span { animation: none; }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heart-bounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  50% { transform: scale(1.1); }
  70% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.heart-bounce {
  animation: heart-bounce 0.8s ease;
}

#feature-tooltip {
  position: fixed !important;
  right: 310px;
  bottom: 160px;
  z-index: 9999;
  animation: floatUpDown 2s ease-in-out infinite, fadeOut 1s ease 9s forwards;
}

.tooltip-bubble {
  position: fixed;
  width: 300px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.87);
  color: #000;
  font-size: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tooltip-close {
  position: absolute;
  top: 4px;
  right: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.tooltip-close:hover {
  color: #000;
}

.tooltip-arrow {
  position: absolute;
  right: 10px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid #fff;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.cf-shell .sticky-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--cf-shell-width);
  max-width: calc(100vw - 24px);
  z-index: 9999;
  background: rgba(10, 14, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-shell .sticky-nav.scrolled {
  background: rgba(10, 14, 18, 0.9);
  border-color: rgba(0, 202, 231, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.cf-shell .cf-nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 14px;
}

.cf-shell .cf-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-right: 4px;
  min-width: 0;
  flex: 0 0 auto;
  max-width: 168px;
}

.cf-shell .sticky-nav .cf-brand-mark {
  display: block;
}

.cf-brand-mark {
  width: 132px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.cf-brand-kicker,
.cf-nav-label,
.cf-section-kicker,
.cf-card-meta,
.cf-footer-label,
.cf-hero-meta,
.hero-text p {
  font-family: 'scale-variable', sans-serif !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


.cf-shell .navbar {
  position: static !important;
  width: auto !important;
  margin: 0;
}

.cf-shell .cf-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.cf-shell .cf-nav-label {
  display: none;
  font-size: 0.62rem;
  color: var(--cf-text-muted);
  white-space: nowrap;
}

.cf-shell .navbar-collapse {
  flex-grow: 0 !important;
}

.cf-shell .navbar-nav {
  align-items: center;
  gap: 2px !important;
  flex-wrap: nowrap;
}

.cf-shell .nav-link {
  position: relative;
  padding: 8px 10px !important;
  border-radius: 999px;
  color: var(--cf-text-soft) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1 !important;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}

.cf-shell .nav-link:hover,
.cf-shell .nav-link:focus {
  color: var(--cf-text) !important;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.cf-shell .nav-link.cf-nav-live,
.cf-shell .nav-link.is-active {
  color: #071317 !important;
  background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-secondary) 100%);
  box-shadow: 0 10px 20px rgba(0, 202, 231, 0.16);
}

.cf-shell .nav-link.cf-nav-live:hover,
.cf-shell .nav-link.cf-nav-live:focus,
.cf-shell .nav-link.is-active:hover,
.cf-shell .nav-link.is-active:focus {
  color: #041317 !important;
  background: linear-gradient(135deg, var(--cf-primary-hover) 0%, #82f8dc 100%);
}

/* Live pill in the nav (before HOME) — app-style: artwork + LIVE + show name +
   play button. Clicking it plays the current live show in the player. */
/* 883 Club account pill — branded standout CTA in the nav */
.cf-shell .cf-club-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 8px;
  margin-left: 4px;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  flex: 0 0 auto !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%) !important;
  color: #04232a !important;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 16px -6px rgba(0, 202, 231, 0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.cf-shell .cf-club-pill:hover,
.cf-shell .cf-club-pill:focus {
  color: #04232a !important;
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 6px 22px -6px rgba(0, 202, 231, 0.8);
}
.cf-club-pill-logo {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
  flex: 0 0 auto;
  filter: brightness(0);   /* white 883 mark → solid dark, for contrast on the cyan pill */
}
.cf-club-pill-text { display: inline-block; }
@media (max-width: 767px) {
  .cf-shell .cf-club-pill { margin: 8px 0; }
}

.cf-shell .cf-nav-livepill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 6px 2px 3px;
  margin-right: 6px;
  /* neutralise sizing the pill inherits from the shared .listen-btn class
     (46px min-height globally; 72px circle from the schedule page's styles) */
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  flex: 0 0 auto !important;
  border-radius: 999px !important;
  /* dark grey gradient fill + faint outline. !important overrides the neon
     gradient the shared .listen-live class otherwise forces on this element. */
  background: linear-gradient(135deg, #1c2228 0%, #0e1217 100%) !important;
  border: 1px solid rgba(140, 165, 190, 0.32) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cf-shell .cf-nav-livepill:hover,
.cf-shell .cf-nav-livepill:focus {
  background: linear-gradient(135deg, #232a31 0%, #12171c 100%) !important;
  border-color: rgba(0, 202, 231, 0.5) !important;
  box-shadow: 0 0 12px rgba(0, 202, 231, 0.16) !important;
  transform: translateY(-1px);
}

.cf-nav-livepill-art {
  /* !important guards against the schedule page's ".listen-btn img { width:60px }" */
  width: 20px !important;
  height: 20px !important;
  opacity: 1 !important;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  background: #1a1f24;
}

.cf-nav-livepill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1;
}

.cf-nav-livepill-top {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.cf-nav-livepill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3b3b;
  flex: 0 0 auto;
  animation: cfLiveDotPulse 1.6s ease-out infinite;
}

.cf-nav-livepill-name {
  font-size: 0.54rem;
  font-weight: 700;
  color: var(--cf-text);
  text-transform: none;
  letter-spacing: 0;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cf-nav-livepill-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cae7, #6ef6d4);
  flex: 0 0 auto;
}

.cf-shell .cf-nav-livepill-play svg {
  /* override the schedule page's ".listen-btn svg { display:none !important }" */
  display: block !important;
  width: 9px;
  height: 9px;
  fill: #04232a;
  margin-left: 1px;
}

@keyframes cfLiveDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.55); }
  70%  { box-shadow: 0 0 0 6px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .cf-nav-livepill-dot { animation: none; }
}

/* Mobile top-bar Live pill — compact (no show name) so it fits beside the hamburger.
   Visibility is fully controlled here (not via Bootstrap d-*): hidden on tablet/desktop,
   force-shown on phones. The in-menu (desktop) pill is hidden on phones. */
.cf-shell .cf-nav-livepill-mobile { display: none; margin-right: 4px; }
.cf-nav-livepill-mobile .cf-nav-livepill-name { display: none; }
.cf-nav-livepill-mobile .cf-nav-livepill-text { gap: 0; }
@media (max-width: 767px) {
  .cf-shell .cf-nav-livepill-mobile { display: inline-flex !important; padding: 4px 9px 4px 4px; gap: 8px; }
  .cf-nav-livepill-item { display: none !important; } /* hide the desktop in-menu pill on mobile */

  /* Slightly larger on mobile — there's room beside the hamburger */
  .cf-nav-livepill-mobile .cf-nav-livepill-art { width: 28px !important; height: 28px !important; }
  .cf-nav-livepill-mobile .cf-nav-livepill-play { width: 24px; height: 24px; }
  .cf-nav-livepill-mobile .cf-nav-livepill-play svg { width: 11px; height: 11px; }
  .cf-nav-livepill-mobile .cf-nav-livepill-top { font-size: 0.5rem; }
  .cf-nav-livepill-mobile .cf-nav-livepill-dot { width: 6px; height: 6px; }
}

/* Light/dark mode toggle hidden for now (feature paused — see index.php head) */
.cf-shell .nav-item:has(> #cf-theme-toggle),
#cf-theme-toggle { display: none !important; }

.heart-icon-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
/* Override the inline `.heart-icon-container { margin-right: 10px; position: relative }`
   inside the nav so the heart sits dead-centre and the badge anchors to the 40px
   circle's corner (not the inner heart). */
.sticky-nav .heart-icon-container { margin: 0 !important; position: static !important; }

#favourites-link-mobile,
#favourites-link-desktop {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
#favourites-link-mobile:hover,
#favourites-link-desktop:hover {
  background: rgba(0, 202, 231, 0.10);
  border-color: rgba(0, 202, 231, 0.45);
}

#favourites-heart-mobile,
#favourites-heart-desktop,
#favourites-heart {
  color: var(--cf-primary) !important;
  font-size: 16px;
}

/* Notification-style count badge anchored to the circle's top-right edge. */
#favourites-count-mobile,
#favourites-count-desktop {
  position: absolute;
  top: -5px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  box-sizing: border-box;
  background-color: var(--cf-primary);
  color: #04232a;
  border-radius: 999px;
  border: 2px solid #0b0f13;
  text-align: center;
  line-height: 14px;
  font-weight: 800;
  font-size: 10.5px;
}

.cf-shell .navbar-toggler {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.navbar-dark .svg-menu-icon,
.svg-menu-icon {
  stroke: var(--cf-text);
}

#hero-container {
  position: relative;
  z-index: 1;
}

.cf-shell .hero-wrapper {
  position: relative;
  width: 100% !important;
  min-height: 620px;
  margin: 0 !important;
  padding: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.cf-shell .hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 20, 0.16) 0%, rgba(7, 16, 20, 0.48) 30%, rgba(7, 16, 20, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 16, 20, 0.85) 0%, rgba(7, 16, 20, 0.42) 42%, rgba(7, 16, 20, 0.2) 100%);
  z-index: 0;
  pointer-events: none;
}

.cf-shell .hero-wrapper:not(.hero-home)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 10, 0.96));
  z-index: 1;
  pointer-events: none;
}

.cf-shell .hero-home {
  min-height: 580px;
  margin-bottom: 48px;
}

.cf-shell .hero-sub {
  min-height: 420px;
}

.cf-shell .hero-content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  z-index: 2;
  width: var(--cf-shell-width);
  max-width: calc(100vw - 24px);
  margin: 0 auto;
  padding: 102px 0 34px;
  text-align: left !important;
}

.cf-shell .hero-wrapper:not(.hero-home) .hero-content {
  display: flex;
  align-items: flex-end;
  min-height: 420px;
}

.cf-shell .hero-text {
  width: min(100%, 880px);
  margin: 0;
}

.cf-shell .hero-text h1,
.cf-shell #hero-slider .slide-content h2 {
  margin: 0;
  color: var(--cf-text);
  font-family: 'scale-variable', sans-serif !important;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: 0.02em;
}

.cf-shell .hero-text h1 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem) !important;
}

.cf-shell .hero-text p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--cf-text-muted);
  font-size: 0.68rem;
  line-height: 1.6;
  font-variation-settings: "wdth" 100, "wght" 400;
}

.cf-shell .cf-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--cf-primary);
  font-size: 0.68rem;
}

.cf-shell .cf-hero-meta::before {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(0, 202, 231, 0.6);
}

.cf-shell .hero-home #hero-slider-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cf-shell .hero-home .slide-bg {
  position: absolute;
  inset: 0;
}

.cf-shell .hero-home .slide-bg video,
.cf-shell .hero-home .slide-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cf-shell .hero-home .swiper-container,
.cf-shell .hero-home .swiper-slide {
  width: 100%;
  height: 100% !important;
}

.cf-shell .hero-home .slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 16, 0.12) 0%, rgba(8, 13, 16, 0.55) 70%, rgba(8, 13, 16, 0.85) 100%),
    linear-gradient(90deg, rgba(6, 12, 16, 0.7) 0%, rgba(6, 12, 16, 0.22) 60%, rgba(6, 12, 16, 0.1) 100%);
  z-index: 1;
}

.cf-shell .hero-home .slide-content {
  position: absolute !important;
  inset: auto auto 58px 0;
  z-index: 3 !important;
  width: var(--cf-shell-width);
  max-width: calc(100vw - 24px);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  text-align: left;
  pointer-events: none;
}

.cf-shell .hero-home .slide-content > * {
  pointer-events: auto;
}

.cf-shell .hero-home .slide-content h2 {
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 3.6vw, 3.7rem);
  text-shadow: 0 2px 26px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.cf-shell .hero-home .slide-content p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--cf-text-soft);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  pointer-events: none;
}

.cf-shell .hero-home .slide-content a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 20px;
  padding: 0 38px;
  border: 1.5px solid rgba(0, 202, 231, 0.9);
  border-radius: 999px;
  background: rgba(4, 19, 23, 0.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #ffffff !important;
  font-family: 'scale-variable', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4), 0 0 22px rgba(0, 202, 231, 0.25);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, border-color 0.25s ease;
}

.cf-shell .hero-home .slide-content a.button:hover {
  transform: translateY(-2px);
  background: rgba(0, 202, 231, 0.18);
  border-color: var(--cf-primary);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.45), 0 0 30px rgba(0, 202, 231, 0.45);
}

.cf-shell .hero-home .swiper-pagination {
  bottom: 42px !important;
}

.cf-shell .hero-home .swiper-pagination-bullet {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.cf-shell .hero-home .swiper-pagination-bullet-active {
  background: var(--cf-primary);
}

.cf-shell .hero-home .swiper-button-next,
.cf-shell .hero-home .swiper-button-prev {
  color: rgba(255, 255, 255, 0.65);
}

#bloc-11 {
  padding: 0 0 60px;
}

.cf-shell #bloc-11 > .container,
.cf-shell .padding-main {
  width: var(--cf-shell-width) !important;
  max-width: calc(100vw - 24px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

/* zero the Bootstrap column padding so page content lines up flush with the
   nav and audio player (same edges), not inset by ~12px each side */
.cf-shell #bloc-11 > .container > .row,
.cf-shell #bloc-11 > .container > .row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#page-content {
  position: relative;
  padding: 0 !important;
}

.cf-home {
  display: grid;
  gap: 22px;
}

.cf-home .cf-home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 16px;
  margin-top: -18px;
  position: relative;
  z-index: 3;
  align-items: start;
}

.cf-home .cf-home-panel {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cf-radius-lg);
  background:
    linear-gradient(180deg, rgba(20, 27, 34, 0.92) 0%, rgba(10, 14, 18, 0.98) 100%);
  box-shadow: var(--cf-shadow);
}

.cf-home-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 202, 231, 0.18), transparent 70%);
  pointer-events: none;
}

.cf-home-panel p:last-child {
  margin-bottom: 0;
}

.cf-home .cf-home-headline {
  max-width: none;
}

.cf-home-headline h2,
.cf-home-headline p,
.cf-home-stat-value,
.cf-home-stat-label {
  margin: 0;
}

.cf-home .cf-home-headline h2 {
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(1.7rem, 2.8vw, 3rem) !important;
  line-height: 1;
  text-transform: uppercase;
}

.cf-home .cf-home-headline p {
  margin-top: 12px;
  max-width: 520px;
  color: var(--cf-text-soft);
  font-size: 0.9rem;
  line-height: 1.58;
}

.cf-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.cf-home-btn,
.see-all,
.listen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.cf-home-btn-primary,
.listen-live {
  color: #041317 !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-secondary) 100%) !important;
  box-shadow: 0 18px 36px rgba(0, 202, 231, 0.2);
}

.cf-home-btn-secondary,
.see-all,
.listen-btn:not(.listen-live) {
  color: var(--cf-text) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.cf-home-btn:hover,
.see-all:hover,
.listen-btn:hover {
  transform: translateY(-2px);
}

.cf-home .cf-home-aside {
  display: grid;
  gap: 10px;
  align-content: start;
}

.cf-home .cf-home-stat {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cf-radius);
  background: rgba(255, 255, 255, 0.03);
}

.cf-home .cf-home-stat-value {
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  color: var(--cf-text);
}

.cf-home .cf-home-stat-label {
  color: var(--cf-text-soft);
  font-size: 0.88rem;
}

.cf-home-stat-note {
  color: var(--cf-text-muted);
  font-size: 0.8rem;
}

.cf-home .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.cf-home .section-header h2,
.cf-home .hot-picks-heading {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--cf-text) !important;
  font-family: 'scale-variable', sans-serif !important;
  font-size: clamp(1.35rem, 2vw, 2.1rem) !important;
  line-height: 1;
  text-transform: uppercase;
}

.cf-home .cf-section-kicker {
  margin: 0 0 10px;
  color: var(--cf-primary);
  font-size: 0.67rem;
}

.cf-home .cf-feature-band {
  display: grid;
  gap: 24px;
}

.cf-home .hot-picks-section,
.cf-home .listenbackapp,
.cf-home .scheduleapp,
.cf-home .eventsapp,
.cf-home .videosapp,
.cf-home .newsapp {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 23, 29, 0.88) 0%, rgba(10, 14, 18, 0.96) 100%);
  box-shadow: var(--cf-shadow-sm);
}

.cf-home .hot-picks-grid,
.cf-home .video-grid {
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.cf-home .hot-picks-grid > .hot-pick-card {
  grid-column: span 3;
}

.cf-home .video-grid > .video-tile,
.cf-home .video-grid > .news-link {
  grid-column: span 3;
}

.cf-home .video-tile,
.cf-home .hot-pick-card,
.cf-home .listen-card,
.cf-home .event-item,
.cf-home .show-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--cf-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 14, 18, 0.8) 100%) !important;
  box-shadow: none;
}

.cf-home .video-tile,
.cf-home .hot-pick-card,
.cf-home .listen-card {
  padding: 10px;
}

.video-tile:hover,
.hot-pick-card:hover,
.listen-card:hover,
.event-item:hover,
.show-item:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(0, 202, 231, 0.3) !important;
}

.video-thumb-wrapper,
.video-thumb-container {
  overflow: hidden;
  border-radius: calc(var(--cf-radius) - 8px);
}

.cf-home .video-thumb-wrapper {
  aspect-ratio: 16 / 10;
  background: #05080b;
}

.video-thumb-wrapper img,
.video-thumb,
.hot-pick-card img,
.listen-card img,
.event-img {
  width: 100%;
  object-fit: cover;
}

.video-thumb-wrapper img,
.video-thumb,
.listen-card img {
  aspect-ratio: 16 / 10;
}

.hot-pick-card img,
.cf-home .diagonal-dual,
.cf-home .split-image {
  aspect-ratio: 1 / 1;
}

.cf-home .event-item {
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 12px;
  margin-bottom: 14px;
  align-items: center;
}

.event-img {
  width: 120px;
  height: 120px;
  border-radius: calc(var(--cf-radius) - 6px);
}

.video-info,
.card-info {
  /* no horizontal padding — the 14px text inset comes from .show-name etc.,
     so this kept the hot-pick info/button drifted ~4px past the other cards */
  padding: 14px 0 4px;
}

.cf-home .video-title,
.cf-home .show-name,
.cf-home .presenter-name {
  margin: 0;
  color: var(--cf-text) !important;
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  line-height: 1.15;
}

.cf-home .show-presenter,
.cf-home .show-title,
.cf-home .video-date,
.cf-home .show-date {
  color: var(--cf-text-soft) !important;
}

.cf-home .video-date,
.cf-home .show-date,
.cf-home .show-title {
  margin-top: 8px;
  font-size: 0.78rem !important;
  line-height: 1.4 !important;
}

.cf-home .genre-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.cf-home .genre-filter button,
.cf-home .genre-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 202, 231, 0.24);
  background: rgba(0, 202, 231, 0.08);
  color: var(--cf-text) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cf-home .genre-filter button.active,
.cf-home .genre-filter button:hover {
  background: linear-gradient(135deg, var(--cf-primary) 0%, var(--cf-secondary) 100%);
  color: #041317 !important;
}

.cf-home .genre-scroll-wrap {
  padding: 0 24px;
  mask-image: none;
  -webkit-mask-image: none;
}

.cf-home #genre-show-wrapper {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  display: block !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-x: contain !important;
  touch-action: pan-x pan-y !important;
}

.cf-home #genre-show-wrapper::-webkit-scrollbar {
  display: none;
}

.cf-home .genre-scroll-inner {
  display: flex;
  gap: 16px;
  width: max-content;
}

.cf-home .listen-card {
  flex: 0 0 196px;
  width: 196px;
  transform: none !important;
}

.listen-card.visible,
.hot-pick-card.visible {
  opacity: 1;
  transform: none !important;
}

.cf-home .scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 14, 18, 0.85);
  color: var(--cf-text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.cf-home .scroll-arrow:hover {
  border-color: rgba(0, 202, 231, 0.26);
  background: rgba(12, 18, 24, 0.96);
}

.cf-home .scroll-arrow.left {
  left: 0;
}

.cf-home .scroll-arrow.right {
  right: 0;
}

.cf-home .diagonal-dual,
.cf-home .split-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: calc(var(--cf-radius) - 8px);
  margin-bottom: 10px;
}

.cf-home .diagonal-dual .diagonal-left,
.cf-home .diagonal-dual .diagonal-right,
.cf-home .split-image .left-half,
.cf-home .split-image .right-half {
  position: absolute;
  inset: 0;
}

.cf-home .diagonal-dual .diagonal-left {
  clip-path: polygon(0% 0%, 60% 0%, 40% 100%, 0% 100%);
  z-index: 1;
}

.cf-home .diagonal-dual .diagonal-right {
  clip-path: polygon(60% 0%, 100% 0%, 100% 100%, 40% 100%);
  z-index: 2;
}

.cf-home .split-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cf-home .split-image .left-half,
.cf-home .split-image .right-half {
  position: relative;
  background-size: cover;
  background-position: center;
}

.cf-home .split-image .left-half {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.show-more-container {
  margin-top: 22px;
}

.schedule-container {
  display: grid;
  gap: 14px;
}

.cf-home .show-item {
  padding: 16px 18px;
  margin-bottom: 0;
}

.show-item.live-show {
  border-color: rgba(0, 202, 231, 0.35) !important;
  box-shadow: inset 0 0 0 1px rgba(0, 202, 231, 0.12);
}

.cf-home .show-time {
  min-width: 72px;
  color: var(--cf-primary);
  font-family: 'scale-variable', sans-serif !important;
  font-size: 1.1rem;
}

.cf-home .show-text {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}

.show-details {
  gap: 18px !important;
}

.cf-home .genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.presenter-images {
  min-width: 72px;
}

.presenter-img,
.dual-presenter-img,
.dual-presenter-img .half {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.dual-presenter-img {
  overflow: hidden;
}

.cf-home .favourite-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(12, 16, 20, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cf-home .heart-icon {
  width: 15px;
  fill: #fff;
  transition: fill 0.2s ease, transform 0.2s ease;
}

.cf-home .heart-icon.favourited {
  fill: var(--cf-primary);
}

.cf-home .favourite-heart:hover .heart-icon {
  transform: scale(1.08);
}

.cf-home .news-link,
.cf-home .event-link,
.cf-home .presenter-link {
  color: inherit;
  text-decoration: none;
}

.cf-home .presenter-link {
  border-bottom: 1px solid rgba(0, 202, 231, 0.26);
}

.cf-home .presenter-link:hover {
  border-bottom-color: rgba(0, 202, 231, 0.8);
}

.cf-footer {
  position: relative;
  overflow: hidden;
  width: var(--cf-shell-width);
  max-width: calc(100vw - 24px);
  margin: 40px auto 130px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--cf-radius-lg);
  background:
    linear-gradient(180deg, rgba(18, 22, 27, 0.92) 0%, rgba(10, 14, 18, 0.98) 100%);
  box-shadow: var(--cf-shadow-sm);
}

.cf-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00cae7 35%, #6ef6d4 65%, transparent 100%);
  opacity: 0.85;
}

.cf-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.cf-footer-brand {
  max-width: 440px;
}

.cf-footer-logo {
  width: 168px;
  max-width: 100%;
}

.cf-footer-copy {
  margin-top: 16px;
  max-width: 430px;
  color: var(--cf-text-soft);
  font-size: 0.7rem;
  line-height: 1.55;
}

.cf-footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  margin-left: auto;
  text-align: right;
}

/* Listen Live CTA */
.cf-footer-listen {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cf-listen-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 9px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%);
  color: #04232a !important;
  font-family: 'SFProDisplay', 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 202, 231, 0.28);
  transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease;
}

.cf-listen-live:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 30px rgba(0, 202, 231, 0.36);
}

/* The footer Listen Live button shares .listen-btn/.listen-live with the
   audio-player JS hook, so page-level inline styles (e.g. show-schedule's
   72px round play buttons, with !important) bleed onto it and wreck the pill.
   Re-assert the neon-pill look with enough specificity + !important to win
   on every page. */
.cf-footer-listen .cf-listen-live {
  width: auto !important;
  height: auto !important;
  flex: 0 0 auto !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #00cae7 0%, #6ef6d4 100%) !important;
  box-shadow: 0 10px 24px rgba(0, 202, 231, 0.28) !important;
  color: #04232a !important;
  font-size: 0.72rem !important;
}
.cf-footer-listen .cf-listen-live svg {
  display: inline-block !important;
  width: 11px !important;
  height: 11px !important;
  opacity: 1 !important;
}

.cf-footer-avail {
  margin: 0;
  color: var(--cf-text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

/* Labelled groups (links / social) */
.cf-footer-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.cf-footer-mini-label {
  color: var(--cf-text-muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cf-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
}

.cf-footer-nav .footer-link {
  color: var(--cf-text-soft) !important;
}

.cf-footer-nav .footer-link:hover {
  color: var(--cf-text) !important;
}

.cf-footer-social {
  display: flex;
  gap: 12px;
}

.cf-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cf-text-soft);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.cf-social-icon:hover {
  color: #04232a;
  background: #00cae7;
  border-color: #00cae7;
  transform: translateY(-2px);
}

.cf-footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--cf-text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.cf-footer-label {
  margin: 0 0 14px;
  color: var(--cf-primary);
  font-size: 0.7rem;
}

.cf-footer-links {
  display: grid;
  gap: 10px;
}

.cf-footer-links a {
  color: var(--cf-text-soft);
}

.cf-footer-links a:hover {
  color: var(--cf-text);
}

.footer-copy {
  width: var(--cf-shell-width);
  max-width: calc(100vw - 24px);
  margin: 20px auto 140px;
  color: var(--cf-text-muted);
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 1200px) {
  .cf-shell .cf-brand {
    max-width: 152px;
  }

  .cf-home .hot-picks-grid > .hot-pick-card,
  .cf-home .video-grid > .video-tile,
  .cf-home .video-grid > .news-link {
    grid-column: span 4;
  }

  .cf-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .cf-footer-end {
    align-items: flex-start;
    margin-left: 0;
    width: 100%;
    text-align: left;
  }

  .cf-footer-listen,
  .cf-footer-group {
    align-items: flex-start;
  }

  .cf-footer-nav,
  .cf-footer-social {
    justify-content: flex-start;
  }

  .cf-home .cf-home-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .cf-shell .sticky-nav {
    top: 10px;
    border-radius: 20px;
  }

  .cf-shell .cf-nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .cf-shell .navbar-collapse {
    grid-column: 1 / -1;
  }

  .cf-shell .navbar-nav {
    align-items: stretch;
    flex-wrap: wrap;
    padding-top: 12px;
  }

  .cf-shell .nav-link,
  .cf-shell .nav-link.cf-nav-live,
  .cf-shell .nav-link.is-active {
    width: 100%;
    justify-content: flex-start;
  }

  .cf-shell .hero-home {
    min-height: 520px;
  }

  .cf-shell .slide-content {
    bottom: 48px;
  }

  .cf-home .hot-picks-grid > .hot-pick-card,
  .cf-home .video-grid > .video-tile,
  .cf-home .video-grid > .news-link {
    grid-column: span 6;
  }

  .cf-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  /* Hide the slider arrows on mobile — swipe to change slides instead */
  .cf-shell .swiper-button-next,
  .cf-shell .swiper-button-prev {
    display: none !important;
  }

  .cf-shell .sticky-nav {
    /* dock flush to the top edge, full-width — reclaims the top gap + side
       margins for more screen real estate. Only the bottom corners are rounded
       so it reads as a clean top bar rather than a floating pill. */
    top: 0;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0 0 18px 18px;
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .cf-shell .cf-nav-shell,
  .cf-shell .hero-content,
  .cf-shell .slide-content,
  .cf-shell #bloc-11 > .container,
  .cf-footer,
  .footer-copy {
    max-width: calc(100vw - 24px) !important;
  }

  .cf-nav-label {
    display: none;
  }

  .cf-shell .hero-content {
    padding-top: 96px;
    padding-bottom: 30px;
  }

  .cf-shell .hero-text h1,
  .cf-shell #hero-slider .slide-content h2 {
    font-size: clamp(2.4rem, 11vw, 4rem) !important;
  }

  .cf-shell .slide-content {
    bottom: 54px;
  }
  /* centre the hero heading, text and CTA on mobile (needs the same 3-class
     specificity as the base .cf-shell .hero-home .slide-content text-align:left) */
  .cf-shell .hero-home .slide-content {
    text-align: center;
    bottom: 140px; /* raise content so the heading sits near the slider's centre (the arrows) */
  }
  .cf-shell .hero-home .slide-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cf-home .cf-home-panel,
  .cf-home .hot-picks-section,
  .cf-home .listenbackapp,
  .cf-home .scheduleapp,
  .cf-home .eventsapp,
  .cf-home .videosapp,
  .cf-home .newsapp,
  .cf-footer {
    padding: 20px 16px;
    border-radius: 24px;
  }

  .cf-home .event-item {
    grid-template-columns: 1fr;
  }

  .event-img {
    width: 100%;
    height: 220px;
  }

  .cf-home .genre-scroll-wrap {
    padding: 0 8px;
  }

  .scroll-arrow {
    display: none;
  }

  .cf-home .listen-card {
    flex-basis: 220px;
    width: 220px;
  }

  .cf-home .hot-picks-grid > .hot-pick-card,
  .cf-home .video-grid > .video-tile,
  .cf-home .video-grid > .news-link {
    grid-column: span 12;
  }

  .cf-footer-grid {
    grid-template-columns: 1fr;
  }
}
