[hidden] { display: none !important; }

/* ============================================================
   Ricardo Mendivil — Main Stylesheet
   Dark theme · Music storytelling brand
   ============================================================ */

/* ============================================================
   DECORATIVE LAYER — Grain + top accent line
   ============================================================ */

/* Thin gold accent line at the very top */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--accent) 70%, transparent 100%);
  z-index: 1001;
  pointer-events: none;
}

/* Film grain / noise texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
  z-index: 9998;
}

:root {
  --bg: #0a0a0a;
  --bg-surface: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --text: #e8e8e8;
  --text-secondary: #999999;
  --text-muted: #666666;
  --accent: #d4a853;
  --accent-dim: #b8923f;
  --border: #222222;
  --border-light: #2a2a2a;
  --radius: 8px;
  --radius-lg: 12px;
  --max-w: 1100px;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .85; }

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

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 400;
  padding: .4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
  opacity: 1;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform .3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: .5rem;
  }
  .site-nav.open .nav-links { display: flex; }
  .nav-links a { padding: .6rem 0; font-size: 1rem; }
}

/* ============================================================
   HERO — vinyl rings + radial glow
   ============================================================ */
.hero {
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

/* Vinyl concentric rings — right side, decorative */
.hero::before {
  content: '';
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.07);
  box-shadow:
    0 0 0 44px rgba(212,168,83,0.05),
    0 0 0 88px rgba(212,168,83,0.04),
    0 0 0 132px rgba(212,168,83,0.03),
    0 0 0 176px rgba(212,168,83,0.02),
    0 0 0 220px rgba(212,168,83,0.015),
    0 0 0 264px rgba(212,168,83,0.01);
  pointer-events: none;
}

/* Radial gold glow behind title */
.hero::after {
  content: '';
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 360px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero-kicker {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  transition: background .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dim); opacity: 1; color: #0a0a0a; }
.btn-video {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background .2s, color .2s;
}
.btn-video:hover { background: var(--accent); color: #0a0a0a; opacity: 1; }
.btn-danger {
  background: #c0392b;
  color: white;
  border: none;
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9rem;
}

/* SECTIONS */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-kicker {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.see-all { font-size: .9rem; color: var(--accent); }

/* ============================================================
   FEATURED — with decorative opening quote
   ============================================================ */
.featured { padding: 4rem 0; }
.featured-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  transition: border-color .3s, transform .2s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}

/* Large decorative quote mark */
.featured-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: rgba(212,168,83,0.07);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  pointer-events: none;
  user-select: none;
}

/* Subtle left accent border */
.featured-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  opacity: 0;
  transition: opacity .3s;
}
.featured-card:hover {
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,168,83,0.08);
  opacity: 1;
}
.featured-card:hover::after { opacity: 1; }
.featured-genre {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(212,168,83,.1);
  padding: .25rem .7rem;
  border-radius: 4px;
}
.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 1rem 0 .5rem;
  color: var(--text);
}
.featured-subtitle { color: var(--text-secondary); margin-bottom: .8rem; }
.featured-excerpt { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.2rem; }
.featured-cta { color: var(--accent); font-weight: 500; }

/* ============================================================
   STORIES GRID — with editorial numbering + gold hover glow
   ============================================================ */
.stories-grid-section { padding: 3rem 0 4rem; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  counter-reset: story-counter;
}
.story-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: border-color .3s, transform .2s, box-shadow .3s;
  position: relative;
  counter-increment: story-counter;
}

/* Editorial story number */
.story-card::before {
  content: counter(story-counter, decimal-leading-zero);
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-size: .85rem;
  letter-spacing: .12em;
  color: rgba(212,168,83,0.75);
  font-family: var(--font-body);
  font-weight: 500;
}

.story-card:hover {
  border-color: rgba(212,168,83,0.35);
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(212,168,83,0.07), 0 1px 0 rgba(212,168,83,0.3) inset;
  opacity: 1;
}
.story-genre {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(212,168,83,.08);
  padding: .2rem .6rem;
  border-radius: 4px;
  align-self: flex-start;
}
.story-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: .8rem 0 .5rem;
  color: var(--text);
  line-height: 1.3;
}
.story-card p {
  color: var(--text-secondary);
  font-size: .9rem;
  flex: 1;
  line-height: 1.6;
}
.story-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.story-date, .story-year {
  font-size: .8rem;
  color: var(--text-muted);
}

/* PAGE HEADER */
.page-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: .5rem;
}
.page-header p { color: var(--text-secondary); }

/* GENRE FILTERS */
.genre-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.genre-pill {
  font-size: .8rem;
  padding: .35rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all .2s;
}
.genre-pill:hover, .genre-pill.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,168,83,.08);
  opacity: 1;
}

/* ============================================================
   ARTICLE — drop cap + decorative header
   ============================================================ */
.story-article { padding: 2rem 0 3rem; }
.article-inner { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }
.article-header { margin-bottom: 2.5rem; }
.back-link {
  display: inline-block;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--text); }
.article-genre {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(212,168,83,.1);
  padding: .25rem .7rem;
  border-radius: 4px;
}
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 1rem 0 .5rem;
}
.article-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
}
.article-header time {
  display: block;
  margin-top: .8rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.article-body { margin-bottom: 2.5rem; }
.article-body p {
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.article-body p:first-child {
  font-size: 1.15rem;
  color: var(--text);
}

/* Drop cap on first letter of first paragraph */
.article-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 700;
  float: left;
  line-height: 0.78;
  margin-right: 0.08em;
  margin-top: 0.12em;
  color: var(--accent);
}
.article-video { margin-bottom: 2rem; }
.article-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.tag {
  font-size: .75rem;
  padding: .25rem .7rem;
  border-radius: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.article-nav a {
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.article-nav a:hover { border-color: var(--accent); opacity: 1; }
.article-nav span { font-size: .8rem; color: var(--text-muted); display: block; margin-bottom: .3rem; }
.article-nav strong { color: var(--text); font-size: .95rem; }
.nav-next { text-align: right; }

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

/* ABOUT */
.about-hero { padding: 4rem 0 3rem; }
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}
.about-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-text h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.7; }

.about-numbers { padding: 2rem 0 4rem; }
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.number-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.number-card .number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}
.number-card .label {
  display: block;
  margin-top: .5rem;
  font-size: .85rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 220px; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

/* NEWSLETTER */
.newsletter-cta {
  padding: 4rem 0;
  background: var(--bg-surface);
  text-align: center;
  border-top: 1px solid var(--border);
}
.newsletter-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  line-height: 1.3;
}
.newsletter-form {
  display: flex;
  gap: .5rem;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: .95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.newsletter-form button {
  padding: .75rem 1.5rem;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9rem;
}
.newsletter-page {
  padding: 5rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.newsletter-page h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.newsletter-lead {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.newsletter-form-large {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.newsletter-form-large input {
  flex: 1;
  padding: .85rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1rem;
}
.newsletter-form-large input:focus { outline: none; border-color: var(--accent); }
.newsletter-form-large button {
  padding: .85rem 2rem;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
}
.newsletter-note { font-size: .8rem; color: var(--text-muted); }

/* CONTACT */
.contact-page {
  padding: 4rem 0;
  min-height: 60vh;
}
.contact-page h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin-bottom: .5rem;
}
.contact-lead { color: var(--text-secondary); margin-bottom: 2rem; }
.contact-info h3 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: .5rem;
  margin-top: 1.5rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info > a { font-size: 1.1rem; }
.contact-social { list-style: none; }
.contact-social li { margin-bottom: .4rem; }
.contact-social a { color: var(--text-secondary); font-size: .95rem; }
.contact-social a:hover { color: var(--accent); }

/* ERROR */
.error-page {
  padding: 6rem 0;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--accent);
}
.error-page p { color: var(--text-secondary); margin: 1rem 0 2rem; }

/* ============================================================
   FOOTER — dramatic signature
   ============================================================ */
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
.footer-links a { color: var(--text-muted); font-size: .85rem; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   ADMIN STYLES
   ============================================================ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-login h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 300px;
}
.admin-login-form input {
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1rem;
}
.admin-login-form button { width: 100%; }

.admin-nav {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
}
.admin-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-nav-links { display: flex; gap: 1.5rem; align-items: center; }
.admin-nav-links a { color: var(--text-secondary); font-size: .85rem; }
.admin-nav-links a:hover { color: var(--accent); }

.admin-section { padding: 2rem 0; }
.admin-section h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th, .admin-table td {
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.admin-table th {
  color: var(--text-muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.admin-table a { font-size: .85rem; }
.status-published { color: #27ae60; }
.status-draft { color: var(--text-muted); }

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 700px;
}
.admin-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.admin-form input, .admin-form textarea, .admin-form select {
  padding: .65rem .8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
}
.admin-form input:focus, .admin-form textarea:focus, .admin-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.admin-form textarea { resize: vertical; }
.form-actions { display: flex; gap: 1rem; align-items: center; margin-top: .5rem; }
.form-actions a { color: var(--text-muted); font-size: .9rem; }

@media (max-width: 600px) {
  .admin-nav-links { gap: .8rem; font-size: .75rem; }
  .admin-table { font-size: .8rem; }
  .admin-table th, .admin-table td { padding: .5rem; }
  .newsletter-form, .newsletter-form-large { flex-direction: column; }
}

/* ============================================================
   RADIOS PAGE
   ============================================================ */

.radios-section {
  padding: 3rem 0 6rem;
}

.radios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .radios-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* Card */
.radio-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s, box-shadow .35s;
}

.radio-card.is-playing {
  border-color: var(--gold);
  box-shadow: 0 0 40px rgba(212, 168, 83, 0.13);
}

/* Cover art */
.radio-cover-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.radio-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .4s;
}

.radio-card.is-playing .radio-cover {
  transform: scale(1.03);
  filter: brightness(0.82);
}

/* Subtle dark overlay */
.radio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.0) 55%);
  pointer-events: none;
}

/* LIVE badge */
.radio-live-badge {
  position: absolute;
  top: .9rem;
  right: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(220, 38, 38, 0.85);
  padding: .28rem .7rem;
  border-radius: 2rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}

.radio-live-badge.visible {
  opacity: 1;
  transform: translateY(0);
}

.radio-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: live-blink 1.1s infinite;
  flex-shrink: 0;
}

@keyframes live-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* Play / Pause button */
.radio-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .6);
  border: 2px solid rgba(212, 168, 83, .85);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
}

.radio-play-btn:hover {
  background: rgba(212, 168, 83, .28);
  border-color: var(--gold);
  transform: translate(-50%, -50%) scale(1.07);
}

.radio-card.is-playing .radio-play-btn {
  background: rgba(212, 168, 83, .22);
  border-color: var(--gold);
}

.radio-play-btn svg {
  width: 22px;
  height: 22px;
}

.icon-play { margin-left: 3px; }

/* Info block */
.radio-info {
  padding: 1.5rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}

.radio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
}

.radio-tagline {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Now playing row */
.radio-np {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-secondary);
  min-height: 2.2em;
  margin-top: .25rem;
}

.radio-np-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  margin-top: .38em;
  flex-shrink: 0;
  transition: background .3s;
}

.radio-np-dot.active {
  background: #e74c3c;
  animation: np-pulse 1.3s infinite;
}

@keyframes np-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}

.radio-np-text {
  line-height: 1.45;
}

.radio-np-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Listener count */
.radio-listeners {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--text-muted);
}

/* Genre tags */
.radio-genres {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .2rem;
}

.radio-genre-tag {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .62rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* External link */
.radio-ext-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--gold);
  text-decoration: none;
  margin-top: auto;
  padding-top: .6rem;
  transition: opacity .2s;
}

.radio-ext-link:hover { opacity: .72; }

/* Radios — historia section */
.radios-history {
  padding: 0 0 5rem;
}

.radios-history-inner {
  max-width: 680px;
  margin: 0 auto;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.radios-history-inner p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin: 0;
}

.radios-history-inner strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================================
   HERO WITH PHOTO BACKGROUND
   ============================================================ */
.hero-photo {
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  position: relative;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 10, 0.82) 0%,
    rgba(8, 8, 10, 0.74) 45%,
    rgba(8, 8, 10, 0.92) 100%
  );
  z-index: 0;
}
.hero-photo .hero-inner {
  position: relative;
  z-index: 1;
}

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  overflow: hidden;
  line-height: 0;
}
.photo-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  height: 380px;
}
.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}
.photo-strip-item:hover img {
  transform: scale(1.06);
}
@media (max-width: 640px) {
  .photo-strip-inner {
    grid-template-columns: 1fr 1fr;
    height: 240px;
  }
  .photo-strip-item:last-child {
    display: none;
  }
}

/* ============================================================
   ABOUT PAGE — LOCATION + TRACK SECTION
   ============================================================ */
.about-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted, #666);
  margin-top: 0.5rem;
}
.about-location svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.about-track {
  padding: 4rem 0 3rem;
  border-top: 1px solid var(--border);
}
.about-track-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted, #555);
  margin-bottom: 0;
}
.about-track-list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}
.track-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: baseline;
}
.track-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 1.5rem;
}
.track-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #c8a96e);
  line-height: 1.5;
  flex-shrink: 0;
}
.track-row p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}
.track-row strong {
  color: var(--text-primary);
  font-weight: 600;
}
@media (max-width: 540px) {
  .track-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

/* ============================================================
   ABOUT — INLINE LINKS & CLOSING LINE
   ============================================================ */
.about-link {
  color: var(--accent, #c8a96e);
  text-decoration: underline;
  text-decoration-color: rgba(200, 169, 110, 0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s, color 0.2s;
}
.about-link:hover {
  color: #e0c080;
  text-decoration-color: rgba(224, 192, 128, 0.7);
}
.about-closing {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

/* --- number-platform label --- */
.number-card { flex-direction: column; align-items: center; }
.number-platform {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent, #c8a96e);
  opacity: 0.75;
  margin-bottom: 0.2rem;
  display: block;
}

/* ============================================================
   HERO PHOTO — stronger overlay + text-shadow fix (v20260308)
   ============================================================ */
.hero-photo::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  border: none !important;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 8, 0.88) 0%,
    rgba(6, 6, 8, 0.76) 50%,
    rgba(6, 6, 8, 0.94) 100%
  ) !important;
  z-index: 0 !important;
}

.hero-photo .hero-kicker,
.hero-photo .hero-title,
.hero-photo .hero-subtitle {
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

/* ============================================================
   LANGUAGE SWITCHER — floating right widget
   ============================================================ */
.lang-float {
  position: fixed;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.lang-btn {
  width: 34px;
  height: 34px;
  background: rgba(16, 16, 18, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}

.lang-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(16,16,18,.95);
}

.lang-btn.lang-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0a0a;
}

@media (max-width: 500px) {
  .lang-float {
    right: .6rem;
    top: auto;
    bottom: 1.2rem;
    transform: none;
    flex-direction: row;
    gap: .3rem;
  }
  .lang-btn {
    width: 32px;
    height: 32px;
    font-size: .6rem;
  }
}

/* ============================================================
   ALBUM REFERENCE — vinyl sleeve in story pages
   ============================================================ */
.album-ref {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.album-sleeve-wrap {
  position: relative;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
}

/* Vinyl disc peeking from behind the cover */
.vinyl-disc {
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #222 0%,
    #111 22%,
    #1a1a1a 22%,
    #0d0d0d 35%,
    #1c1c1c 35%,
    #0a0a0a 48%,
    #181818 48%,
    #0c0c0c 62%,
    #171717 62%,
    #0a0a0a 75%,
    #141414 75%
  );
  box-shadow:
    0 3px 16px rgba(0,0,0,.7),
    inset 0 0 0 1px rgba(255,255,255,.04);
  z-index: 0;
}

.vinyl-disc::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, #d4a853 0%, #b8923f 60%, #0a0a0a 60%);
  z-index: 1;
}

.album-art {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  display: block;
}

.album-ref-info {
  flex: 1;
  min-width: 0;
}

.album-ref-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: .5rem;
  font-weight: 600;
}

.album-ref-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
  line-height: 1.25;
}

.album-ref-artist {
  font-size: .85rem;
  color: var(--text-secondary);
  margin-bottom: .8rem;
  line-height: 1.5;
}

.album-ref-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  color: var(--accent);
  border: 1px solid rgba(212,168,83,.3);
  padding: .3rem .75rem;
  border-radius: 4px;
  transition: background .2s, border-color .2s;
}

.album-ref-link:hover {
  background: rgba(212,168,83,.1);
  border-color: var(--accent);
  opacity: 1;
}

@media (max-width: 540px) {
  .album-ref {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
  }
  .album-sleeve-wrap {
    width: 120px;
    height: 120px;
  }
  .album-art {
    width: 120px;
    height: 120px;
  }
  .vinyl-disc {
    width: 100px;
    height: 100px;
    right: -18px;
  }
}

/* ============================================================
   MOBILE OPTIMIZATION — comprehensive responsive styles
   ============================================================ */

/* Hero */
@media (max-width: 768px) {
  .hero { padding: 4rem 1rem 3.5rem; }
  .hero-inner { max-width: 100%; }
  .hero-kicker { font-size: .78rem; margin-bottom: 1rem; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
  .btn-primary { padding: .7rem 1.6rem; font-size: .9rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 1rem 3rem; }
}

/* Featured card */
@media (max-width: 768px) {
  .featured { padding: 2.5rem 0; }
  .featured-card { padding: 1.8rem 1.5rem; }
  .featured-title { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .featured-card { padding: 1.4rem 1.2rem; }
}

/* Stories grid */
@media (max-width: 680px) {
  .stories-grid { grid-template-columns: 1fr; }
  .stories-grid-section { padding: 2rem 0 3rem; }
}

/* Section header */
@media (max-width: 480px) {
  .section-header { flex-direction: column; gap: .5rem; }
  .section-header h2 { font-size: 1.3rem; }
}

/* Story article */
@media (max-width: 768px) {
  .story-article { padding: 1.5rem 0 2rem; }
  .article-inner { padding: 0 1rem; }
  .article-header h1 { font-size: 1.7rem; }
  .article-body p { font-size: 1rem; line-height: 1.75; }
  .article-body p:first-child { font-size: 1.08rem; }
  .article-body p:first-child::first-letter { font-size: 3.2rem; }
}

@media (max-width: 480px) {
  .article-header h1 { font-size: 1.45rem; }
  .article-nav { gap: .8rem; }
  .article-nav a { padding: .9rem; }
  .article-nav strong { font-size: .85rem; }
}

/* About page */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 240px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-photo {
    max-width: 200px;
    margin: 0 auto;
  }
  .about-text h1 { font-size: 1.6rem; text-align: center; }
  .about-hero { padding: 2.5rem 0 2rem; }
}

@media (max-width: 480px) {
  .about-photo { max-width: 160px; }
  .about-lead { font-size: 1rem; }
  .about-text p { font-size: .9rem; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .number-card { padding: 1.4rem .8rem; }
  .number-card .number { font-size: 1.6rem; }
  .about-numbers { padding: 1.5rem 0 3rem; }
  .track-row { gap: .3rem; }
}

/* Page header */
@media (max-width: 480px) {
  .page-header { padding: 2.5rem 0 1.5rem; }
  .page-header h1 { font-size: 1.8rem; }
}

/* Newsletter */
@media (max-width: 480px) {
  .newsletter-cta { padding: 3rem 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .newsletter-form-large { flex-direction: column; }
  .newsletter-form-large button { width: 100%; }
  .newsletter-page { padding: 3rem 0; }
  .newsletter-page h1 { font-size: 2rem; }
}

/* Contact */
@media (max-width: 480px) {
  .contact-page { padding: 2.5rem 0; }
  .contact-page h1 { font-size: 1.8rem; }
}

/* Footer */
@media (max-width: 480px) {
  .footer-brand { font-size: 1.3rem; }
  .footer-links { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .site-footer { padding: 2rem 0; }
}

/* Section inner padding on small screens */
@media (max-width: 480px) {
  .section-inner { padding: 0 1rem; }
  .article-inner { padding: 0 1rem; }
}

/* Nav on mobile — better spacing */
@media (max-width: 768px) {
  .nav-inner { padding: 0 1rem; }
  .nav-links a { padding: .7rem 0; }
}

/* Radios on mobile */
@media (max-width: 480px) {
  .radio-info { padding: 1.2rem 1.2rem 1.5rem; }
  .radio-name { font-size: 1.2rem; }
  .radios-history-inner { padding: 0 1rem; padding-top: 2rem; }
}

/* Genre filters */
@media (max-width: 480px) {
  .genre-filters { gap: .4rem; }
  .genre-pill { font-size: .75rem; padding: .28rem .8rem; }
}

/* ============================================================
   ALBUM COVERS — HOME PAGE (cards + featured)
   ============================================================ */

/* Story grid card with album cover */
.story-card.has-cover::before { display: none; } /* hide editorial number counter */

.card-cover {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid rgba(212,168,83,0.25);
  box-shadow: -3px 3px 14px rgba(0,0,0,0.55);
  transition: transform .3s, box-shadow .3s;
}
.story-card.has-cover:hover .card-cover {
  transform: rotate(-2deg) scale(1.04);
  box-shadow: -4px 5px 20px rgba(0,0,0,0.65);
}
.story-card.has-cover h3 {
  padding-right: 5.2rem; /* don't overlap the cover */
}

/* Featured card with album cover — flex layout */
.featured-card.has-cover {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.featured-content {
  flex: 1;
  min-width: 0;
}
.featured-cover-wrap {
  flex-shrink: 0;
  position: relative;
  width: 150px;
  height: 150px;
  align-self: center;
}
.featured-cover-wrap .vinyl-disc {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  width: 140px;
  height: 140px;
  z-index: 0;
}
.featured-cover-img {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: -6px 6px 24px rgba(0,0,0,0.6);
  transition: transform .3s;
}
.featured-card.has-cover:hover .featured-cover-img {
  transform: scale(1.03);
}

@media (max-width: 640px) {
  .featured-card.has-cover {
    flex-direction: column;
    gap: 1.5rem;
  }
  .featured-cover-wrap {
    align-self: flex-start;
  }
}

/* ============================================================
   FOOTER — Virtua credit
   ============================================================ */
.footer-virtua {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(212,168,83,0.3);
  transition: border-color .2s;
}
.footer-virtua:hover {
  border-color: var(--accent);
}

/* Photo strip — individual face positioning */
.photo-strip-item:nth-child(1) img { object-position: 38% 32%; }
.photo-strip-item:nth-child(2) img { object-position: center 38%; }
.photo-strip-item:nth-child(3) img { object-position: 72% 20%; }

/* ── Story continue / next chapter ─────────────────────── */
.story-continue {
  margin: 3rem 0 1.5rem;
  border-top: 1px solid rgba(212,168,83,0.2);
  padding-top: 2rem;
}
.continue-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.continue-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s, border-color 0.25s;
}
.continue-card:hover {
  background: rgba(212,168,83,0.07);
  border-color: rgba(212,168,83,0.4);
}
.continue-cover {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  border: 1px solid rgba(212,168,83,0.2);
}
.continue-body {
  flex: 1;
  min-width: 0;
}
.continue-genre {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}
.continue-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.continue-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.continue-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.continue-card:hover .continue-arrow {
  transform: translateX(4px);
}
.story-back-nav {
  margin-top: 1rem;
}
.nav-prev-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.nav-prev-link:hover { color: var(--accent); }
.nav-prev-label { color: var(--accent); }
.nav-prev-title { color: var(--text-secondary); }

/* ============================================================
   ARTICLE VIDEO EMBED
   ============================================================ */
.article-video {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(212,168,83,0.15);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.article-video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* TikTok embeds use blockquote, not 16:9 */
.article-video:has(blockquote) {
  padding-bottom: 0;
  height: auto;
}
.article-video blockquote {
  margin: 0;
}

/* ============================================================
   ADMIN FORM SECTIONS
   ============================================================ */
.form-section {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,83,0.1);
  border-radius: 8px;
}
.form-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.2rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,168,83,0.15);
}

/* ============================================================
   DIGITAL BLOCK — Streaming + Sources
   ============================================================ */
.digital-block {
  margin: 3rem 0 1rem;
  padding: 2rem;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 12px;
  text-align: center;
}
.digital-block-cover {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.digital-block h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.8rem;
}
.digital-block h3:not(:first-of-type) {
  margin-top: 1.5rem;
}
.digital-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.digital-block ul li a {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212,168,83,0.35);
  border-radius: 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.digital-block ul li a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,168,83,0.08);

/* ============================================================
   LATEST STORIES SLIDER
   ============================================================ */
.latest-slider-section {
  padding: 4rem 0 3rem;
}
.slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.slider-controls {
  display: flex;
  gap: 0.5rem;
}
.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.35);
  background: transparent;
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
}
.slider-btn:hover {
  background: rgba(212,168,83,0.12);
  border-color: var(--accent);
}

/* ID selector = highest specificity, beats any class conflict */
#slider-track {
  display: grid !important;
  grid-auto-flow: column !important;
  grid-auto-columns: 300px !important;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
  cursor: grab;
}
#slider-track::-webkit-scrollbar { display: none; }
#slider-track:active { cursor: grabbing; }

.slider-card {
  scroll-snap-align: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s;
  display: flex !important;
  flex-direction: column !important;
  width: 300px;
  min-width: 0;
}
.slider-card:hover {
  border-color: rgba(212,168,83,0.45);
  transform: translateY(-4px);
}
.slider-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  flex-shrink: 0;
}
.slider-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.slider-card:hover .slider-card-img img { transform: scale(1.05); }
.slider-card-img--empty {
  background: linear-gradient(135deg, rgba(212,168,83,0.08), rgba(0,0,0,0.3));
}
.slider-card-body {
  padding: 1.1rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.slider-card-genre {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
  display: block;
}
.slider-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 0.5rem;
}
.slider-card-excerpt {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 0.9rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.slider-card-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: auto;
}
@media (max-width: 700px) {
  #slider-track { grid-auto-columns: 75vw !important; }
}

/* Article byline */
.article-byline { font-size: 0.85rem; color: var(--text-muted); margin: 0.25rem 0 0; }
.byline-link { color: var(--accent); text-decoration: none; }
.byline-link:hover { text-decoration: underline; }
