/* ==========================================================================
   GKU Radio 90.4 MHz - Preview Page Styling
   Accurately crafted for Desktop (16263:258) & Mobile (16263:556)
   ========================================================================== */

:root {
  --gku-navy: #1e2f57;
  --gku-navy-dark: #15223f;
  --gku-navy-light: #273965;
  --gku-maroon: #9f2b2c;
  --gku-maroon-dark: #842122;
  --gku-maroon-light: #b53435;
  --gku-gold: #f1ba00;
  --gku-gold-bright: #ffc107;
  --gku-cream: #fcf9f2;
  --gku-cream-card: #fef8ee;
  --gku-dark: #1b1e28;
  --gku-text-muted: #5e6573;
  --gku-border: #e2e8f0;
  --gku-white: #ffffff;
  --gku-font-sans: 'Karla', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gku-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --gku-shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --gku-shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --gku-radius-sm: 10px;
  --gku-radius-md: 16px;
  --gku-radius-lg: 24px;
}

/* Page Wrapper */
.radio-page-wrapper {
  font-family: var(--gku-font-sans);
  color: var(--gku-dark);
  background-color: #fcfcfc;
  overflow-x: hidden;
  line-height: 1.6;
}

.radio-page-wrapper * {
  box-sizing: border-box;
}

.radio-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .radio-container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   Eyebrow & Heading Typography System (Figma exact tokens)
   ========================================================================== */
.radio-eyebrow-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 22px;
}

.radio-eyebrow-text {
  font-family: var(--gku-font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: #9F2B2C;
}

.radio-eyebrow-text.gold {
  color: var(--gku-gold-bright);
}

.radio-eyebrow-text.white {
  color: #ffffff;
}

.radio-eyebrow-line {
  display: flex;
  align-items: center;
  margin-top: 8px;
}

.radio-eyebrow-line::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #9F2B2C;
  flex-shrink: 0;
}

.radio-eyebrow-line::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #9F2B2C;
  border-radius: 1px;
}

/* Exact line lengths matching Figma render bounds */
.radio-eyebrow-line.line-beginning::after {
  width: 257px;
}

.radio-eyebrow-line.line-voices::after {
  width: 195px;
}

.radio-eyebrow-line.line-whats-on::after {
  width: 95px;
}

.radio-eyebrow-line.line-campus::after {
  width: 125px;
}

.radio-eyebrow-line.line-promo::after {
  width: 170px;
}

/* Color modifiers */
.radio-eyebrow-line.gold::before,
.radio-eyebrow-line.gold::after {
  background-color: var(--gku-gold-bright);
}

.radio-eyebrow-line.white::before,
.radio-eyebrow-line.white::after {
  background-color: var(--gku-gold-bright);
}

/* Headings H2 Typography System */
.radio-section-h2 {
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 47px;
  /* 117.5% */
  letter-spacing: -1.6px;
  color: #000000;
  margin-top: 0;
  margin-bottom: 22px;
}

.radio-section-h2.font-semibold {
  font-weight: 600;
}

.radio-section-h2.text-white {
  color: #ffffff !important;
}

.radio-section-h2 .text-red,
.text-red {
  color: #9F2B2C !important;
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: -1.6px;
}

.radio-section-h2 .text-black,
.text-black {
  color: #000000 !important;
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: -1.6px;
}

/* Backward compatibility */
.radio-section-h2 .text-maroon {
  color: #9F2B2C !important;
}

.radio-section-h2 .text-dark {
  color: #000000 !important;
}

/* Section Body Paragraphs */
.radio-body-desc {
  font-family: var(--gku-font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.64px;
  color: #666666;
  margin-top: 0;
  margin-bottom: 34px;
}

.radio-body-desc strong {
  font-weight: 700;
  color: #666666;
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.radio-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-image: url('/public/frontend/images/radio/hero-radio-studio.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: var(--gku-white);
  padding: 80px 0;
  overflow: hidden;
}

.radio-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}



.radio-hero .radio-container {
  position: relative;
  z-index: 2;
}

.radio-hero-content {
  max-width: 660px;
}

.radio-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 34px;
}

.radio-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 18px;
}

.radio-hero-title span {
  color: var(--gku-gold-bright);
}

.radio-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 580px;
}

/* Hero Live Player Card */
.radio-live-card {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 24px;
  border-radius: var(--gku-radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  max-width: 278px;
}

.radio-live-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.radio-live-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.radio-live-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFEF6;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.48px;
  text-transform: capitalize;
}

.radio-live-dot {
  width: 9px;
  height: 9px;
  background-color: var(--gku-gold-bright);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(241, 186, 0, 0.7);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 0 0 rgba(241, 186, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(241, 186, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(241, 186, 0, 0);
  }
}

.radio-live-freq {
  font-size: 26px;
  font-weight: 700;
  color: var(--gku-gold-bright);
  letter-spacing: -0.5px;
}

.radio-play-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gku-gold-bright);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gku-navy-dark);
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(241, 186, 0, 0.4);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.radio-play-btn:hover {
  transform: scale(1.1);
  background: #ffffff;
  color: var(--gku-maroon);
}

.radio-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
  margin-left: 8px;
  vertical-align: middle;
}

.radio-equalizer span {
  width: 3px;
  background-color: var(--gku-gold-bright);
  border-radius: 2px;
  animation: eq-bounce 0.8s ease-in-out infinite alternate;
}

.radio-equalizer span:nth-child(1) {
  height: 50%;
  animation-delay: 0.1s;
}

.radio-equalizer span:nth-child(2) {
  height: 100%;
  animation-delay: 0.3s;
}

.radio-equalizer span:nth-child(3) {
  height: 35%;
  animation-delay: 0.2s;
}

.radio-equalizer span:nth-child(4) {
  height: 75%;
  animation-delay: 0.4s;
}

@keyframes eq-bounce {
  0% {
    height: 25%;
  }

  100% {
    height: 100%;
  }
}

/* ==========================================================================
   2. THE BEGINNING OF FM GKU 90.4
   ========================================================================== */
.radio-beginning-section {
  padding: 100px 0 80px;
  background-color: #ffffff;
}

.radio-beginning-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.radio-beginning-content h2 {
  color: #000000;
  font-family: Karla, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 47px;
  /* 117.5% */
  letter-spacing: -1.6px;
  margin-bottom: 22px;
}

.radio-beginning-content h2 span {
  color: #000000;
}

.radio-beginning-content h2 .text-red,
.radio-beginning-content h2 span.text-red {
  color: #9F2B2C !important;
}

.radio-beginning-content h2 .text-black,
.radio-beginning-content h2 span.text-black {
  color: #000000 !important;
}

.radio-beginning-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gku-text-muted);
  margin-bottom: 36px;
}

.radio-stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 330px));
  gap: 24px;
  align-items: center;
  margin-top: 10px;
  max-width: 684px;
}

.radio-stat-card {
  color: var(--gku-white);
  height: 116px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: var(--gku-shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.radio-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(30, 47, 87, 0.25);
}

/* Card 1: Left Card (Blue on left, Black on right) */
.radio-stat-card-left {
  border-radius: 20px 100px 100px 20px;
  background: linear-gradient(90deg, #4C75CB 0%, #000000 100%);
  padding: 18px 20px 16px 20px;
}

/* Card 2: Right Card (Black on left, Blue on right) */
.radio-stat-card-right {
  border-radius: 100px 20px 20px 100px;
  background: linear-gradient(90deg, #000000 0%, #4C75CB 100%);
  padding: 18px 20px 16px 46px;
}

/* Eyebrow / Header */
.radio-stat-card .radio-stat-header {
  color: #F2BA00;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}

.radio-stat-card-right .radio-stat-header {
  padding-left: 6px;
}

/* Content Body Row */
.radio-stat-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Big Numbers: 16 and 4 */
.radio-stat-big-num {
  color: #FFC107;
  font-family: 'Karla', sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 800;
  line-height: 46px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}

/* Card 1: 16 + Date group */
.radio-stat-left-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.radio-stat-date-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.radio-stat-date-top {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.radio-stat-th {
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: lowercase;
  line-height: 1;
}

.radio-stat-month {
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.radio-stat-year {
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-left: 21px;
  /* Align 2024 directly under SEPTEMBER */
}

/* Card 2: Right content group */
.radio-stat-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.radio-stat-transmission-text {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.15;
}

.radio-stat-transmission-text span {
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Icons */
.radio-stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radio-stat-icon img,
.radio-stat-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.radio-stat-icon-sound {
  margin-right: 18px;
  /* Offset from 100px rounded corner */
}

.radio-stat-icon-radio {
  margin-left: 2px;
}

.radio-beginning-image {
  position: relative;
}

.radio-beginning-image img {
  width: 100%;
  height: auto;
  border-radius: var(--gku-radius-lg);
  box-shadow: var(--gku-shadow-lg);
  object-fit: cover;
  transition: transform 0.4s ease;
}

.radio-beginning-image:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   3. FREQUENCY BANNER STRIP
   ========================================================================== */
/* ==========================================================================
   3. FREQUENCY BANNER STRIP (Matching Figma Group 1546)
   ========================================================================== */
.radio-frequency-banner {
  margin: 20px 0 80px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  color: #ffffff;
}

.radio-freq-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.radio-frequency-banner .radio-container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 52px;
}

.radio-freq-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.radio-freq-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.radio-freq-soundwaves {
  width: 112px;
  height: 74px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-freq-soundwaves img,
.radio-freq-soundwaves svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.radio-freq-quote {
  max-width: 290px;
  display: flex;
  flex-direction: column;
}

.radio-freq-text {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.64px;
  color: #ffffff;
  margin: 0;
}

.radio-freq-highlight {
  font-family: 'Karla', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #FFC107;
  margin-top: 6px;
  display: block;
}

/* Watermark Right: Rotated -12deg with yellow swoosh */
.radio-freq-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin-right: 20px;
}

.radio-freq-watermark-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.radio-freq-watermark {
  font-family: 'Karla', sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  user-select: none;
  transform: rotate(-12deg);
  transform-origin: left bottom;
  display: inline-flex;
  align-items: baseline;
}

.radio-freq-unit {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 4px;
  line-height: 1;
}

.radio-freq-swoosh {
  width: 380px;
  max-width: 100%;
  height: auto;
  position: absolute;
  bottom: -22px;
  left: 20px;
  pointer-events: none;
  z-index: 2;
}

/* ==========================================================================
   4. THE VOICES BEHIND THE MIC (Discover What's on Air)
   ========================================================================== */
.radio-voices-section {
  padding: 40px 0 90px;
  background-color: #ffffff;
}

.radio-voices-header {
  margin-bottom: 48px;
}

.radio-voices-header h2 {
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 47px;
  letter-spacing: -1.6px;
  color: #000000;
  margin-bottom: 22px;
}

.radio-voices-header h2 span {
  color: #000000;
}

.radio-voices-header h2 .text-red,
.radio-voices-header h2 span.text-red {
  color: #9F2B2C !important;
}

.radio-voices-header h2 .text-black,
.radio-voices-header h2 span.text-black {
  color: #000000 !important;
}

.radio-voices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.radio-voices-portrait {
  position: relative;
  height: 100%;
  min-height: 440px;
}

.radio-voices-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--gku-radius-lg);
  box-shadow: var(--gku-shadow-md);
  transition: transform 0.4s ease;
}

.radio-voices-portrait:hover img {
  transform: scale(1.02);
}

.radio-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.radio-pillar-card {
  background: var(--gku-cream-card);
  border: 1px solid rgba(159, 43, 44, 0.08);
  border-radius: var(--gku-radius-md);
  padding: 24px 28px;
  transition: all 0.3s ease;
}

.radio-pillar-card:hover {
  background: #ffffff;
  transform: translateX(6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
  border-color: rgba(159, 43, 44, 0.2);
}

.radio-pillar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--gku-maroon);
  margin-bottom: 10px;
  text-transform: capitalize;
}

.radio-pillar-icon {
  font-size: 20px;
  color: var(--gku-maroon);
  display: flex;
  align-items: center;
}

.radio-pillar-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gku-text-muted);
  margin: 0;
}

/* ==========================================================================
   5. WHAT'S ON AIR - PROGRAMMES BEHIND THE FREQUENCY
   ========================================================================== */
.radio-programmes-section {
  padding: 90px 0 100px;
  background-color: var(--gku-navy);
  color: #ffffff;
}

.radio-programmes-header {
  margin-bottom: 50px;
}

.radio-programmes-header h2 {
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -1.6px;
  color: #ffffff;
  margin-top: 4px;
}

.radio-programmes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.radio-program-card {
  background: #ffffff;
  border-radius: var(--gku-radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.radio-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.radio-program-media {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--gku-radius-md) var(--gku-radius-md) 0 0;
}

.radio-program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.radio-program-card:hover .radio-program-media img {
  transform: scale(1.08);
}

.radio-program-badge {
  position: absolute;
  top: 168px;
  /* Perfectly centered across the 200px image boundary: 200 - (65 / 2) */
  left: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  z-index: 5;
  transition: transform 0.3s ease;
}

.radio-program-card:hover .radio-program-badge {
  transform: scale(1.06);
}

.radio-program-badge.maroon {
  background-color: #9F2B2C;
}

.radio-program-badge.navy {
  background-color: #293867;
}

.radio-program-badge img,
.radio-program-badge svg,
.radio-program-badge i {
  width: 32px;
  height: 32px;
  font-size: 26px;
  object-fit: contain;
}

.radio-program-body {
  padding: 44px 22px 26px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 0 0 var(--gku-radius-md) var(--gku-radius-md);
}

.radio-program-title {
  color: #293867;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 12px;
}

.radio-program-desc {
  color: #666;
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.56px;
  margin: 0;
}

/* ==========================================================================
   6. FROM THE CAMPUS - CAMPUS COVERAGE
   ========================================================================== */
.radio-coverage-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.radio-coverage-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

/* Media Collage on Left */
.radio-coverage-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.radio-coverage-col-stacked {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.radio-coverage-thumb {
  border-radius: var(--gku-radius-md);
  overflow: hidden;
  box-shadow: var(--gku-shadow-sm);
}

.radio-coverage-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.radio-coverage-thumb:hover img {
  transform: scale(1.04);
}

.radio-coverage-thumb.stacked-top img {
  height: 200px;
}

.radio-coverage-thumb.stacked-bottom img {
  height: 220px;
}

.radio-coverage-thumb.tall img {
  height: 436px;
}

/* Content on Right */
.radio-coverage-content h2 {
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -1.6px;
  color: #000000;
  margin-bottom: 22px;
}

.radio-coverage-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gku-text-muted);
  margin-bottom: 14px;
}

.radio-coverage-features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--gku-border);
}

.radio-coverage-feature-item {
  position: relative;
  padding-right: 16px;
}

.radio-coverage-feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: 0;
  width: 1px;
  background-color: var(--gku-border);
}

.radio-feature-icon {
  font-size: 24px;
  color: var(--gku-maroon);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.radio-feature-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gku-maroon);
  margin-bottom: 8px;
}

.radio-feature-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gku-text-muted);
  margin: 0;
}

/* ==========================================================================
   7. BEYOND THE BROADCAST - PROMOTIONAL BROADCASTS
   ========================================================================== */
.radio-promo-section {
  position: relative;
  width: 100%;
  padding: 56px 0;
  margin: 0;
  overflow: hidden;
  background-color: #9F2B2C;
  color: #ffffff;
  margin-bottom: 80px;
}

.radio-promo-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  pointer-events: none;
}



.radio-promo-section .radio-container {
  position: relative;
  z-index: 3;
}

.radio-promo-row {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 40px;
  align-items: center;
}

.radio-promo-content {
  max-width: 460px;
}

.radio-promo-title {
  font-family: 'Karla', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 47px;
  letter-spacing: -1.6px;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 16px;
}

.radio-promo-desc {
  font-family: var(--gku-font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Glassmorphism Cards Grid: Side by Side */
.radio-promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 24px;
  align-items: stretch;
}

.radio-promo-card {
  background: rgba(159, 43, 44, 0.25);
  border: 1px solid rgba(255, 193, 7, 0.22);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 22px 24px;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  border: 1px solid rgba(255, 193, 7, 0.20);
  background: rgba(159, 43, 44, 0.20);
  backdrop-filter: blur(15px);
}

.radio-promo-card:hover {
  background: rgba(159, 43, 44, 0.35);
  border-color: rgba(255, 193, 7, 0.45);
  transform: translateY(-3px);
}

.radio-promo-card-number {
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.radio-promo-card-title {
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.radio-promo-card-desc {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--gku-font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Matching Node 16263:556 Mobile specifications)
   ========================================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .radio-hero {
    min-height: 520px;
    padding: 60px 0;
  }

  .radio-hero-title {
    font-size: 38px;
  }

  .radio-beginning-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .radio-voices-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .radio-programmes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .radio-coverage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .radio-promo-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile (max-width: 767px) - Exact Mobile Specs from Figma Node 16263:556 */
@media (max-width: 767px) {
  .radio-eyebrow-wrap {
    margin-bottom: 14px;
  }

  .radio-eyebrow-text {
    font-size: 10px;
    line-height: 12px;
    letter-spacing: 0.4px;
  }

  .radio-eyebrow-line {
    margin-top: 5px;
  }

  .radio-eyebrow-line::before {
    width: 6px;
    height: 6px;
  }

  .radio-eyebrow-line::after {
    height: 1.5px;
  }

  .radio-eyebrow-line.line-beginning::after {
    width: 140px;
  }

  .radio-eyebrow-line.line-voices::after {
    width: 130px;
  }

  .radio-eyebrow-line.line-whats-on::after {
    width: 75px;
  }

  .radio-eyebrow-line.line-campus::after {
    width: 90px;
  }

  .radio-eyebrow-line.line-promo::after {
    width: 120px;
  }

  .radio-section-h2 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

  .radio-body-desc {
    font-size: 13px;
    line-height: 20px;
    letter-spacing: -0.4px;
    margin-bottom: 22px;
  }

  /* Hero Section Mobile */
  .radio-hero {
    min-height: 480px;
    padding: 50px 0 60px;
    background-image: url('/public/frontend/images/radio/hero-radio-studio-mobile.jpg');
    background-size: cover;
    background-repeat: no-repeat;
  }


  .radio-hero-content {
    max-width: 100%;
  }

  .radio-hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }

  .radio-hero-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

  .radio-hero-desc {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 26px;
  }

  .radio-live-card {
    width: 100%;
    padding: 14px 18px;
    gap: 16px;
  }

  .radio-live-status {
    font-size: 11px;
  }

  .radio-live-freq {
    font-size: 18px;
  }

  .radio-play-btn {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  /* The Beginning Section Mobile */
  .radio-beginning-section {
    padding: 50px 0 40px;
  }

  .radio-beginning-content h2 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
  }

  .radio-beginning-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .radio-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .radio-hero-overlay {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.1) 70%, rgba(15, 23, 42, 0.2) 100%);
  }

  .radio-stat-card {
    height: auto;
    min-height: 110px;
  }

  .radio-stat-card-left {
    padding: 16px 18px 16px 18px;
    border-radius: 10px;
  }

  .radio-stat-card-right {
    padding: 16px 18px 16px 36px;
    border-radius: 10px;
  }

  .radio-stat-big-num {
    font-size: 42px;
    line-height: 40px;
  }

  .radio-stat-month,
  .radio-stat-year,
  .radio-stat-transmission-text span {
    font-size: 16px;
    line-height: 20px;
  }

  .radio-stat-year {
    padding-left: 17px;
  }

  /* Frequency Banner Mobile */
  .radio-frequency-banner {
    margin: 10px 0 50px;
  }

  .radio-frequency-banner .radio-container {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .radio-freq-content-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .radio-freq-left {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .radio-freq-soundwaves {
    width: 64px;
    height: 44px;
  }

  .radio-freq-quote {
    max-width: 100%;
  }

  .radio-freq-text {
    font-size: 13px;
    line-height: 18px;
  }

  .radio-freq-highlight {
    font-size: 15px;
    line-height: 19px;
  }

  .radio-freq-right {
    display: none;
  }

  /* Voices Behind Mic Mobile */
  .radio-voices-section {
    padding: 30px 0 60px;
  }

  .radio-voices-header {
    margin-bottom: 30px;
  }

  .radio-voices-header h2,
  .radio-section-h2 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.8px;
  }

  .radio-section-h2 .text-maroon,
  .radio-section-h2 .text-dark {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.8px;
  }

  .radio-voices-portrait {
    min-height: 280px;
  }

  .radio-pillar-card {
    padding: 18px 20px;
  }

  .radio-pillar-title {
    font-size: 17px;
  }

  .radio-pillar-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Programmes Mobile */
  .radio-programmes-section {
    padding: 60px 0 70px;
  }

  .radio-programmes-header {
    margin-bottom: 36px;
  }

  .radio-programmes-header h2 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.8px;
  }

  .radio-programmes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .radio-program-media {
    height: 180px;
  }

  .radio-program-badge {
    top: 152px;
    width: 56px;
    height: 56px;
  }

  .radio-program-badge img,
  .radio-program-badge svg {
    width: 26px;
    height: 26px;
  }

  .radio-program-body {
    padding: 38px 18px 22px;
  }

  .radio-program-title {
    font-size: 18px;
  }

  .radio-program-desc {
    font-size: 13px;
  }

  /* Campus Coverage Mobile */
  .radio-coverage-section {
    padding: 60px 0;
  }

  .radio-coverage-content h2 {
    font-size: 20px;
    line-height: 23px;
    letter-spacing: -0.8px;
  }

  .radio-coverage-desc {
    font-size: 13px;
  }

  .radio-coverage-features-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .radio-coverage-feature-item {
    padding-right: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gku-border);
  }

  .radio-coverage-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .radio-coverage-feature-item:not(:last-child)::after {
    display: none;
  }

  .radio-coverage-media {
    margin-top: 26px;
  }

  .radio-coverage-thumb.stacked-top img {
    height: 140px;
  }

  .radio-coverage-thumb.stacked-bottom img {
    height: 140px;
  }

  .radio-coverage-thumb.tall img {
    height: 296px;
  }

  /* Promotional Broadcasts Mobile */
  .radio-promo-section {
    padding: 44px 0;
  }

  .radio-promo-bg-img {
    width: 100%;
    opacity: 0.22;
  }



  .radio-promo-title {
    font-size: 24px;
    line-height: 28px;
    letter-spacing: -0.8px;
  }

  .radio-promo-desc {
    font-size: 13px;
    line-height: 20px;
  }

  .radio-promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .radio-promo-card {
    padding: 18px 20px;
  }

  .radio-promo-card-number {
    font-size: 18px;
  }

  .radio-promo-card-title {
    font-size: 15px;
  }

  .radio-promo-card-desc {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width:480px) {
  .radio-freq-soundwaves {
    width: 31px;
    height: 20px;
  }

  .radio-freq-text {
    font-size: 12px;
    line-height: 16px;
  }

  .radio-freq-highlight {
    font-size: 14px;
    line-height: 18px;
  }

  .radio-frequency-banner .radio-container {
    padding-top: 36px;
    padding-bottom: 14px;
  }

  .radio-programmes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .radio-program-title {
    font-size: 16px;
    line-height: 20px;
  }

  .radio-program-badge {
    top: 78px;
    width: 42px;
    height: 42px;
    left: 12px;
  }

  .radio-program-badge img,
  .radio-program-badge svg {
    width: 16px;
    height: 16px;
  }

  .radio-program-body {
    padding: 24px 10px 10px;
  }

  .radio-section-h2 .text-red,
  .text-red {
    font-size: 32px;
  }

  .radio-section-h2 .text-black,
  .text-black {
    font-size: 32px;
  }

  .radio-program-media {
    height: 100px;
  }

  .radio-live-freq {
    font-size: 22px;
  }

  .radio-live-card {
    width: 100%;
    padding: 14px 14px;
    gap: 14px;
    max-width: 212px;
  }

  .radio-hero-desc {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 26px;
  }

  .radio-hero-title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
  }

}