/* ============================================
   HSPTV — Hollywood Star In Paris TV
   Design: Gold & Red | Dark/Light theme-aware
   Fonts: Montserrat (headings), Roboto (body)
   ============================================ */

/* ---------- RESET & VARIABLES ---------- */
:root {
  --primary-gold: #C99000;
  --primary-gold-dark: #9A6E00;
  --primary-gold-light: #E8B830;
  --primary-red: #C42828;
  --primary-red-light: #E05050;
  --primary-red-dark: #8B1A1A;
  --white: #ffffff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --bg-body: var(--white);
  --bg-section-alt: var(--slate-50);
  --bg-card: var(--white);
  --border-card: var(--slate-100);
  --text-body: var(--slate-800);
  --text-muted: var(--slate-500);
  --text-heading: var(--slate-900);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-montse: 'Montserrat', sans-serif;
  --font-roboto: 'Roboto', sans-serif;
}

/* ===== DARK MODE ===== */
html.dark,
html.dark body {
  color-scheme: dark;
}

html.dark {
  --primary-gold: #F0C43F;
  --primary-gold-dark: #D4A830;
  --primary-gold-light: #F5D76E;
  --primary-red: #EF4444;
  --primary-red-light: #F87171;
  --primary-red-dark: #DC2626;
  --slate-50: #0f172a;
  --slate-100: #1e293b;
  --slate-200: #334155;
  --slate-300: #475569;
  --slate-400: #94a3b8;
  --slate-500: #94a3b8;
  --slate-600: #cbd5e1;
  --slate-700: #e2e8f0;
  --slate-800: #f1f5f9;
  --slate-900: #f8fafc;
  --bg-body: #0b1120;
  --bg-section-alt: #0f172a;
  --bg-card: #1e293b;
  --border-card: #334155;
  --text-body: #e2e8f0;
  --text-muted: #94a3b8;
  --text-heading: #f8fafc;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -2px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.5), 0 4px 6px -4px rgba(0,0,0,0.3);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5), 0 8px 10px -6px rgba(0,0,0,0.3);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.5);
}

/* Respect system preference if user hasn't manually toggled */
@media (prefers-color-scheme: dark) {
  html:not(.light):not(.dark) {
    --primary-gold: #F0C43F;
    --primary-gold-dark: #D4A830;
    --primary-gold-light: #F5D76E;
    --primary-red: #EF4444;
    --primary-red-light: #F87171;
    --primary-red-dark: #DC2626;
    --slate-50: #0f172a;
    --slate-100: #1e293b;
    --slate-200: #334155;
    --slate-300: #475569;
    --slate-400: #94a3b8;
    --slate-500: #94a3b8;
    --slate-600: #cbd5e1;
    --slate-700: #e2e8f0;
    --slate-800: #f1f5f9;
    --slate-900: #f8fafc;
    --bg-body: #0b1120;
    --bg-section-alt: #0f172a;
    --bg-card: #1e293b;
    --border-card: #334155;
    --text-body: #e2e8f0;
    --text-muted: #94a3b8;
    --text-heading: #f8fafc;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.5);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.5);
  }
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-roboto);
  color: var(--text-body);
  background: var(--bg-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 72px; /* space for sticky player */
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  min-width: 320px;
}

.header-inner {
  background: rgba(180, 110, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  height: 64px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.logo-link {
  flex-shrink: 0;
  padding-top: 6px;
}

.logo-svg {
  width: 96px;
  height: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* Mobile header actions (search icon always visible on mobile) */
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 56px; /* space for hamburger */
}

.mobile-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(232, 184, 48, 0.2);
  transition: var(--transition);
}

.mobile-search-btn:hover {
  background: rgba(232, 184, 48, 0.4);
  color: var(--white);
}

@media (min-width: 1024px) {
  .mobile-header-actions {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: transparent;
  transition: var(--transition);
  position: absolute;
  right: 0;
  top: 0;
}

.hamburger:hover {
  background: rgba(180, 110, 0, 0.3);
  color: var(--primary-red);
}

/* Main Nav */
.main-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: var(--primary-gold);
  overflow: hidden;
  transition: all 0.35s ease;
  max-height: 0;
  opacity: 0;
}

.main-nav.open {
  max-height: 500px;
  opacity: 1;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-link:hover {
  background: rgba(196, 40, 40, 0.2);
}

.header-actions {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(232, 184, 48, 0.2);
  transition: var(--transition);
  font-size: 16px;
}

.icon-btn:hover {
  background: var(--primary-gold-dark);
  color: var(--primary-red);
}

.play-btn-header {
  background: rgba(196, 40, 40, 0.25);
}

.play-btn-header:hover {
  background: var(--primary-red);
  color: var(--white) !important;
}

/* Dark mode toggle icon visibility */
.dark-mode-icon {
  transition: transform 0.3s ease;
}

.sun-icon { display: none; }
.moon-icon { display: block; }

html.dark .sun-icon { display: block; }
html.dark .moon-icon { display: none; }

html:not(.dark):not(.light) .sun-icon { display: none; }
html:not(.dark):not(.light) .moon-icon { display: block; }

#darkModeToggle {
  position: relative;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .hamburger { display: none; }

  .header-inner {
    padding: 0 40px;
  }

  .main-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    max-height: none !important;
    opacity: 1 !important;
    width: auto;
    overflow: visible;
    gap: 2px;
  }

  .nav-link {
    padding: 0 18px;
    height: 64px;
    border-bottom: none;
    font-size: 13px;
  }

  .nav-link:hover {
    background: rgba(180, 110, 0, 0.4);
  }

  .header-actions {
    padding: 0;
    margin-left: 28px;
    gap: 6px;
  }
}

@media (min-width: 1280px) {
  .nav-link { font-size: 14px; padding: 0 20px; }
  .header-actions { margin-left: 40px; }
}

/* ---------- SEARCH OVERLAY ---------- */
.search-overlay {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 35;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-card);
  box-shadow: var(--shadow-xl);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
}

.search-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.search-overlay-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 20px 20px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-body);
  border: 2px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 0 16px;
  transition: border-color 0.3s ease;
}

.search-input-wrap:focus-within {
  border-color: var(--primary-gold);
}

.search-input-icon {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 18px;
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: var(--font-roboto);
  font-size: 16px;
  color: var(--text-body);
  outline: none;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-close-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition);
}

.search-close-btn:hover {
  background: var(--bg-section-alt);
  color: var(--text-body);
}

/* Search results */
.search-results {
  margin-top: 16px;
  max-height: 380px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-card) transparent;
}

.search-results::-webkit-scrollbar {
  width: 4px;
}
.search-results::-webkit-scrollbar-thumb {
  background: var(--border-card);
  border-radius: 2px;
}

.search-hint {
  text-align: center;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.search-no-results {
  text-align: center;
  padding: 24px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.search-result-group {
  margin-bottom: 16px;
}

.search-result-group-title {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
  margin-bottom: 6px;
  padding: 0 4px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.search-result-item:hover {
  background: var(--bg-section-alt);
}

.search-result-item:active {
  transform: scale(0.99);
}

.search-result-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--bg-section-alt);
  color: var(--text-muted);
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.search-result-sub {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-thumb {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---------- HERO / FADING SLIDESHOW ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
}

/* Dark overlay on slideshow for readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.50) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0.30) 60%,
    rgba(0,0,0,0.60) 100%
  );
  pointer-events: none;
}

/* Centered brand image on hero */
.hero-center-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  max-width: 280px;
  width: 60vw;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero-center-image {
    max-width: 360px;
  }
}

/* ---------- HERO PULSING RING ---------- */
.hero-pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(
    from var(--ring-angle, 0deg),
    #ff0055,
    #ff6600,
    #ffcc00,
    #00cc66,
    #0099ff,
    #6633ff,
    #ff00aa,
    #ff0055
  );
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-mask: radial-gradient(
    circle,
    transparent calc(50% - 4px),
    #000 calc(50% - 4px),
    #000 50%,
    transparent 50%
  );
  mask: radial-gradient(
    circle,
    transparent calc(50% - 4px),
    #000 calc(50% - 4px),
    #000 50%,
    transparent 50%
  );
}

@media (min-width: 768px) {
  .hero-pulse-ring {
    width: 360px;
    height: 360px;
  }
}

/* ---------- HERO EQUALIZER RING ---------- */
.hero-equalizer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hero-equalizer .bar {
  position: absolute;
  width: 4px;
  border-radius: 2px 2px 0 0;
  left: -2px;
  bottom: 0;
  transform-origin: center bottom;
  transform: rotate(calc(var(--i) * 11.25deg)) translateY(-140px);
  height: 20px;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .hero-equalizer .bar {
    transform: rotate(calc(var(--i) * 11.25deg)) translateY(-185px);
  }
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.slide-image.active {
  z-index: 2;
}

.hero-play-overlay {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.hero-play-btn:hover {
  background: var(--primary-red-dark);
  transform: scale(1.05);
}

.hero-play-btn:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .hero {
    min-height: 560px;
  }
  .hero-play-btn {
    padding: 14px 36px;
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 650px;
  }
}

/* ---------- SECTION COMMON ---------- */
.section {
  padding: 64px 0 72px;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-title-group {
  position: relative;
}

.section-title {
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-heading);
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.section-title-bg {
  position: absolute;
  top: -6px;
  left: -4px;
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: rgba(201, 144, 0, 0.08);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

html.dark .section-title-bg {
  color: rgba(240, 196, 63, 0.12);
}

@media (min-width: 768px) {
  .section-title-bg {
    top: -12px;
    left: -8px;
  }
}

.see-more {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-gold-light);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.see-more:hover {
  color: var(--primary-red);
  gap: 12px;
}

/* ---------- PODCASTS CAROUSEL ---------- */
.podcasts-section {
  background: var(--bg-section-alt);
  transition: background 0.3s ease;
}

.podcasts-section .section-title-bg {
  color: rgba(196, 40, 40, 0.08);
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-container {
  display: flex;
  gap: 20px;
}

.podcast-card {
  flex: 0 0 180px;
  min-width: 160px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.podcast-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.podcast-card-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.podcast-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.podcast-card:hover .podcast-card-image img {
  transform: scale(1.08);
}

.podcast-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.podcast-card:hover .podcast-card-overlay {
  opacity: 1;
}

.podcast-card-overlay i {
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.podcast-card-body {
  padding: 12px 14px;
}

.podcast-card-title {
  display: block;
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 4px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.podcast-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--primary-gold);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
  opacity: 0;
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }

@media (max-width: 768px) {
  .carousel-btn { display: none; }
}

/* ---------- NEWS GRID ---------- */
.news-section {
  background: var(--bg-body);
  transition: background 0.3s ease;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--border-card);
}

.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary-gold-light);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--primary-gold);
  color: var(--white);
}

.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.news-card-meta .date::before {
  content: "\01F4C5 ";
}

.news-card-meta .author::before {
  content: "\270D\FE0F ";
}

.news-card-title {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  color: var(--text-heading);
  margin-bottom: 8px;
  transition: var(--transition);
}

.news-card:hover .news-card-title {
  color: var(--primary-gold);
}

.news-card-excerpt {
  font-size: 14px;
  color: var(--text-body);
  opacity: 0.7;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 600px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }

  .news-card:first-child .news-card-image {
    aspect-ratio: auto;
    height: 100%;
  }
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
  background: var(--bg-section-alt);
  padding: 48px 0;
}

.newsletter-card {
  background: linear-gradient(135deg, var(--primary-gold-dark) 0%, #3a2a00 100%);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(180, 110, 0, 0.3);
}

.newsletter-title {
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
}

.newsletter-text {
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 28px;
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.newsletter-input {
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 15px;
  font-family: var(--font-roboto);
  outline: none;
  transition: var(--transition);
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
  border-color: var(--primary-red);
  background: rgba(255,255,255,0.25);
}

.newsletter-btn {
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--primary-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 40, 40, 0.4);
}

@media (min-width: 600px) {
  .newsletter-form {
    flex-direction: row;
  }
  .newsletter-input {
    flex: 1;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--slate-900);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
  transition: background 0.3s ease;
}

html.dark .site-footer {
  background: #060a14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.contact-item {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

/* ---------- STICKY PLAYER ---------- */
.sticky-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.player-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
}

/* Live indicator */
.player-status {
  flex-shrink: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.live-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.live-text {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fca5a5;
}

.player-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.player-thumb {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.player-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-equalizer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding-bottom: 3px;
  opacity: 0;
  transition: var(--transition);
}

.player-equalizer.playing {
  opacity: 1;
}

.player-equalizer span {
  width: 3px;
  background: var(--primary-red);
  border-radius: 2px;
  animation: equalize 0.8s ease-in-out infinite alternate;
}

.player-equalizer span:nth-child(1) { height: 40%; animation-delay: 0s; }
.player-equalizer span:nth-child(2) { height: 70%; animation-delay: 0.2s; }
.player-equalizer span:nth-child(3) { height: 50%; animation-delay: 0.4s; }
.player-equalizer span:nth-child(4) { height: 80%; animation-delay: 0.6s; }

@keyframes equalize {
  0% { height: 20%; }
  100% { height: 90%; }
}

.player-track {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.track-name {
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.control-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 18px;
}

.control-btn:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

#playerPlayBtn {
  background: var(--primary-red);
  color: var(--white);
  width: 40px;
  height: 40px;
}

#playerPlayBtn:hover {
  background: var(--primary-red-dark);
  transform: scale(1.05);
}

/* Volume control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 2px;
  position: relative;
}

.volume-slider-wrap {
  width: 0;
  overflow: hidden;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.volume-control:hover .volume-slider-wrap,
.volume-slider-wrap.active {
  width: 72px;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 68px;
  height: 4px;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 2px;
  vertical-align: middle;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-red);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.volume-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 2px 8px rgba(196, 40, 40, 0.5);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--primary-red);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.volume-slider::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}

/* Volume icon transitions */
#volumeIcon {
  transition: transform 0.2s ease;
}

.volume-control:hover #volumeIcon {
  transform: scale(1.1);
}

.player-extras {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.player-progress {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 160px;
  min-width: 100px;
}

.time {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  font-variant-numeric: tabular-nums;
  min-width: 32px;
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
  border-radius: 2px;
  transition: width 0.3s linear;
}

/* Listener badge */
.listener-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.listener-icon {
  font-size: 13px;
}

.listener-badge strong {
  color: rgba(255,255,255,0.8);
}

@media (min-width: 600px) {
  .player-progress {
    display: flex;
  }
}

@media (min-width: 768px) {
  .player-extras {
    gap: 10px;
  }
  .player-progress {
    max-width: 200px;
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .player-status { display: none; }
  .player-extras { gap: 4px; }
  .player-progress { max-width: 80px; min-width: 60px; }
  .listener-badge { font-size: 10px; }
  .listener-icon { display: none; }
  .player-inner { gap: 8px; padding: 8px 10px; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* ---------- RECENTLY PLAYED PANEL ---------- */
.recently-played-panel {
  position: fixed;
  bottom: 72px;
  right: 16px;
  z-index: 49;
  width: 320px;
  max-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.recently-played-panel.open {
  max-height: 400px;
  opacity: 1;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-title {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold-light);
}

.panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  font-size: 14px;
}

.panel-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.panel-list {
  overflow-y: auto;
  max-height: 340px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.panel-list::-webkit-scrollbar {
  width: 4px;
}
.panel-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.panel-empty {
  padding: 24px 14px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.panel-item:last-child {
  border-bottom: none;
}

.panel-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.panel-item-index {
  flex-shrink: 0;
  width: 20px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.panel-item-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--primary-red-light);
}

.panel-item-info {
  flex: 1;
  min-width: 0;
}

.panel-item-title {
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.panel-item-time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1px;
}

/* History toggle button in player */
.history-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  font-size: 15px;
  margin-left: 2px;
}

.history-btn:hover {
  color: var(--primary-gold-light);
  background: rgba(255, 255, 255, 0.06);
}

.history-btn.active {
  color: var(--primary-gold-light);
}

@media (max-width: 600px) {
  .recently-played-panel {
    right: 8px;
    left: 8px;
    width: auto;
  }
}

/* ---------- NOW PLAYING TOAST ---------- */
.now-playing-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 49;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: calc(100vw - 32px);
  width: auto;
  min-width: 260px;
}

.now-playing-toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.toast-thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.toast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.toast-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.toast-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-red-light);
  line-height: 1;
}

.toast-track {
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.toast-artist {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.toast-close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  font-size: 14px;
  margin-left: 4px;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* On mobile, full-width toast */
@media (max-width: 480px) {
  .now-playing-toast {
    left: 8px;
    right: 8px;
    transform: translateY(20px);
    min-width: 0;
    width: auto;
    max-width: none;
    border-radius: var(--radius-sm);
  }
  .now-playing-toast.visible {
    transform: translateY(0);
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 400px) {
  .player-progress {
    display: none !important;
  }
  .player-inner {
    gap: 8px;
    padding: 8px 10px;
  }
}

/* ---------- NEWS LISTING PAGE ---------- */
.news-listing {
  background: var(--bg-body);
  transition: background 0.3s ease;
  padding-top: 40px;
}

.news-listing .page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.news-listing .page-title {
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-heading);
}

.news-listing .page-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}

.news-listing .news-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 640px) {
  .news-listing .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-listing .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- NEWS DETAIL PAGE ---------- */
.news-article-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}

.news-article-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.75) 100%);
}

.news-article-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 14px;
}

.news-article-title {
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 800px;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.news-article-meta strong {
  color: rgba(255,255,255,0.9);
}

/* Article body */
.article-body-section {
  background: var(--bg-body);
  transition: background 0.3s ease;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}

.article-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2 {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-heading);
  margin: 36px 0 14px;
}

.article-body blockquote {
  border-left: 4px solid var(--primary-gold);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--bg-section-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  font-size: 17px;
  color: var(--text-heading);
}

.article-body figure {
  margin: 28px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-body figure img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.article-body figure figcaption {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  text-align: center;
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

.sidebar-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-heading);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.sidebar-author-info strong {
  display: block;
  font-size: 14px;
  color: var(--text-heading);
}

.sidebar-author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-section-alt);
  color: var(--text-muted);
  transition: var(--transition);
}

.share-btn:hover {
  background: var(--primary-gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Related news */
.related-news-section {
  background: var(--bg-section-alt);
  transition: background 0.3s ease;
}

.related-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.related-news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: var(--transition);
}

.related-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold-light);
}

.related-news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.related-news-body {
  padding: 16px;
}

.related-news-body h4 {
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-heading);
  margin-bottom: 6px;
  line-height: 1.3;
}

.related-news-body span {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .article-sidebar {
    grid-template-columns: 1fr;
  }
}

/* ---------- PODCASTS LISTING PAGE ---------- */
.podcasts-listing {
  background: var(--bg-section-alt);
  transition: background 0.3s ease;
  padding-top: 40px;
}

.podcasts-listing .page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.podcasts-listing .page-title {
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-heading);
}

.podcasts-listing .page-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 4px;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.podcasts-grid .podcast-card {
  flex: none;
  width: 100%;
}

@media (min-width: 768px) {
  .podcasts-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 28px;
  }
}

/* ---------- PODCAST DETAIL PAGE ---------- */
.podcast-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-gold-dark) 0%, #2a1a00 100%);
  padding: 60px 0;
  margin-top: 0;
}

.podcast-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.podcast-cover-wrap {
  flex-shrink: 0;
  width: 260px;
  height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}

.podcast-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-hero-info {
  flex: 1;
  min-width: 0;
}

.podcast-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.podcast-hero-label i {
  font-size: 12px;
}

.podcast-hero-title {
  font-family: var(--font-montse);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.podcast-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.podcast-hero-meta span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.podcast-hero-meta strong {
  color: rgba(255,255,255,0.9);
}

.podcast-hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin-bottom: 24px;
}

.podcast-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.podcast-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--primary-red);
  color: var(--white);
  font-family: var(--font-montse);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.podcast-btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 40, 40, 0.4);
}

.podcast-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-montse);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.podcast-btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.related-section {
  background: var(--bg-section-alt);
  transition: background 0.3s ease;
}

@media (max-width: 768px) {
  .podcast-hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .podcast-cover-wrap {
    width: 180px;
    height: 180px;
  }
  .podcast-hero-desc {
    max-width: none;
  }
  .podcast-hero-actions {
    justify-content: center;
  }
  .podcast-hero-meta {
    justify-content: center;
  }
}
