/* ═══════════════════════════════════════════════════════════════
   COMMON.CSS — Estilos compartidos entre todas las páginas
   (header, footer, preloader, cursor, botones, base tipográfica)
   ═══════════════════════════════════════════════════════════════ */

/* ─── VARIABLES ──────────────────────────────────────────────── */
:root {
  --gold:    #b58e23;
  --gold-l:  #cda93a;
  --gold-ll: #e8cc80;
  --gold-d:  #8a6c18;
  --gold-bg: #fdf9ee;
  --white:   #ffffff;
  --off:     #faf8f3;
  --navy:    #1a2b4a;
  --navy-d:  #111e33;
  --gray:    #6b7280;
  --light:   #e8e1cc;
  --shadow:      0 4px 24px rgba(181,142,35,.12);
  --shadow-lg:   0 12px 48px rgba(181,142,35,.22);
  --shadow-card: 0 2px 16px rgba(26,43,74,.08);
  --radius: 4px;
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ─── RESET / BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; }

/* Ocultar el caret (cursor de texto) en TODO el sitio, excepto en
   campos editables (inputs/textareas/contenteditable) donde sí hace
   falta para escribir. */
* { caret-color: transparent; }
input, textarea, [contenteditable] { caret-color: auto; }

body {
  font-family: 'Glacial Indifference', 'GlacialIndifference', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.75;
}
h1, h2, h3, h4 {
  font-family: 'Glacial Indifference', 'GlacialIndifference', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
a { text-decoration: none; color: inherit; }
img { display: block; }

/* ─── HEADER ─────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.header--top      { background: transparent; }
.header--scrolled {
  background: var(--white);
  padding: .8rem 2.5rem;
  box-shadow: 0 2px 24px rgba(201,168,76,.15);
  border-bottom: 2px solid var(--gold-ll);
}

.logo { display: flex; align-items: center; gap: .85rem; }
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text .logo-main {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: color .3s;
}
.logo-text .logo-sub {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .3s;
}
.header--top .logo-main      { color: var(--white); }
.header--top .logo-sub       { color: rgba(255,255,255,.65); }
.header--scrolled .logo-main { color: var(--navy); }
.header--scrolled .logo-sub  { color: var(--gold-d); }

nav { display: flex; align-items: center; gap: .15rem; }
nav a {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.header--top nav a            { color: rgba(255,255,255,.85); }
.header--top nav a:hover      { color: var(--white); }
.header--scrolled nav a       { color: var(--navy); }
.header--scrolled nav a:hover { color: var(--gold-d); }

nav a::after {
  content: '';
  position: absolute;
  bottom: .25rem; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .28s ease;
  border-radius: 1px;
}
nav a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-d) !important;
  margin-left: .5rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-l) !important; }
.nav-cta::after { display: none !important; }

/* En escritorio, los elementos exclusivos del menú móvil se ocultan.
   El texto de cada enlace vive en .m-label, que sí se muestra inline. */
.m-top, .m-card { display: none; }
nav a .m-ico, nav a .m-chev, .nav-cta .m-cta-ico { display: none; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: .35rem;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease, background .3s ease;
  transform-origin: center;
}
.header--top .hamburger span      { background: var(--white); }
.header--scrolled .hamburger span { background: var(--navy); }

.hamburger.is-active span                  { background: var(--navy) !important; }
.hamburger.is-active span:nth-child(1)     { transform: translateY(7px)  rotate(45deg); }
.hamburger.is-active span:nth-child(2)     { opacity: 0; }
.hamburger.is-active span:nth-child(3)     { transform: translateY(-7px) rotate(-45deg); }

body.menu-open {
  overflow: hidden;
  touch-action: none;
  width: 100%;
}

@media (max-width: 860px) {
  nav { display: none; }
  .hamburger { display: flex; }

  /* ── PANEL DEL MENÚ MÓVIL (tarjeta destacada + lista con iconos) ── */
  nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--off);
    justify-content: flex-start; align-items: stretch;
    gap: .55rem; z-index: 999;
    padding: 1.1rem 1.15rem calc(1.4rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: mMenuIn .35s cubic-bezier(.4,0,.2,1);
  }
  @keyframes mMenuIn { from { opacity: 0; } to { opacity: 1; } }

  /* Al abrir, el propio panel muestra su barra con la X → ocultamos
     el botón hamburguesa para no duplicar el control de cierre. */
  body.menu-open .hamburger { display: none; }

  /* Barra superior: marca + botón X */
  nav.open .m-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: .35rem;
  }
  .m-brand { display: flex; align-items: center; gap: .6rem; }
  .m-brand img { width: 34px; height: 34px; object-fit: contain; }
  .m-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 600; color: var(--navy);
  }
  .m-close {
    display: grid; place-items: center;
    width: 42px; height: 42px; flex-shrink: 0;
    background: rgba(26,43,74,.06); border: none; border-radius: 50%;
    color: var(--navy); cursor: pointer; transition: var(--transition);
  }
  .m-close svg { width: 20px; height: 20px; }
  .m-close:hover, .m-close:focus-visible { background: rgba(26,43,74,.12); }

  /* Tarjeta "Próximo culto" */
  nav.open .m-card {
    display: block; position: relative; overflow: hidden;
    padding: 1.15rem 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
    margin-bottom: .55rem;
    text-align: left;
  }
  nav.open .m-card::after { display: none; }   /* anula el subrayado de nav a */
  .m-card-deco {
    position: absolute; top: -34px; right: -34px;
    width: 120px; height: 120px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(181,142,35,.55), rgba(181,142,35,.12) 70%, transparent 72%);
    pointer-events: none;
  }
  .m-card-label {
    display: block; position: relative;
    font-size: .66rem; font-weight: 700; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold-ll);
    margin-bottom: .35rem;
  }
  .m-card-title {
    display: block; position: relative;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 600; color: var(--white);
    line-height: 1.15;
  }
  .m-card-time {
    display: flex; align-items: center; gap: .45rem; position: relative;
    margin-top: .55rem;
    font-size: .9rem; color: rgba(255,255,255,.82);
  }
  .m-card-time svg { width: 17px; height: 17px; color: var(--gold-ll); flex-shrink: 0; }

  /* Cada enlace de la lista: icono + etiqueta + chevron */
  nav.open a {
    display: flex; align-items: center; gap: .85rem;
    padding: .7rem .8rem;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(26,43,74,.06);
    color: var(--navy) !important;
    font-size: .82rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase;
    transition: transform .28s cubic-bezier(.4,0,.2,1), background .28s, box-shadow .28s;
  }
  nav.open a::after { display: none; }   /* quita el subrayado dorado del desktop */

  nav.open a .m-ico {
    display: grid; place-items: center;
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 11px;
    background: rgba(181,142,35,.13);
    color: var(--gold-d);
    transition: var(--transition);
  }
  nav.open a .m-ico svg { width: 21px; height: 21px; }
  nav.open a .m-label { flex: 1; }
  nav.open a .m-chev {
    display: block; width: 18px; height: 18px; flex-shrink: 0;
    color: rgba(26,43,74,.28);
    transition: var(--transition);
  }

  /* Estado hover/activo del enlace */
  nav.open a:hover, nav.open a:focus-visible, nav.open a:active {
    transform: translateX(6px);
    background: var(--white);
    box-shadow: 0 6px 18px rgba(26,43,74,.10);
    color: var(--navy) !important;
  }
  nav.open a:hover .m-ico, nav.open a:focus-visible .m-ico, nav.open a:active .m-ico {
    background: var(--navy); color: var(--gold-l);
  }
  nav.open a:hover .m-chev, nav.open a:focus-visible .m-chev, nav.open a:active .m-chev {
    color: var(--gold); transform: translateX(2px);
  }

  /* Botón CONTACTO al final */
  nav.open a.nav-cta {
    justify-content: center; gap: .55rem;
    margin-top: .5rem; padding: .95rem 1rem;
    background: var(--gold) !important;
    color: var(--navy-d) !important;
    border: none; border-radius: 14px;
  }
  nav.open a.nav-cta .m-cta-ico { display: block; width: 20px; height: 20px; flex: 0 0 auto; }
  nav.open a.nav-cta .m-label { flex: 0 0 auto; }
  nav.open a.nav-cta:hover, nav.open a.nav-cta:focus-visible {
    transform: translateX(0); background: var(--gold-l) !important;
    box-shadow: 0 6px 20px rgba(181,142,35,.35);
  }
}

/* ─── BOTONES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .95rem 2.25rem;
  font-family: 'Glacial Indifference', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-d);
}
.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-d);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-d);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-d); transform: translateY(-1px); }
.btn-sm { padding: .6rem 1.4rem; font-size: .76rem; }

/* ─── SECCIONES BASE ─────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.container { max-width: 1160px; margin: 0 auto; }

.section-label {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--gold-d); }
.section-subtitle {
  font-size: 1rem; color: var(--gray);
  max-width: 560px; line-height: 1.85;
}
.section-header { margin-bottom: 3.5rem; }

.divider {
  width: 44px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-l));
  border-radius: 2px; margin: 1rem 0;
}
.divider--center { margin: 1rem auto; }

/* Animación de entrada al hacer scroll: solo fade-in.
   Sin translateY para evitar tirones de scroll en bloques grandes. */
.reveal {
  opacity: 0;
  transition: opacity .6s ease;
}
.reveal.visible { opacity: 1; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--navy-d);
  padding: 4.5rem 2rem 2rem;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }

footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--gold-d), var(--gold), var(--gold-l), var(--gold));
  margin: -4.5rem -2rem 4.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .87rem; line-height: 1.85;
  margin-top: 1rem; max-width: 280px;
}

.footer-col h4 {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-l); }

.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,.25); font-size: .76rem; }

.social-link {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold-d); transform: translateY(-3px); box-shadow: var(--shadow); }
.social-link svg { width: 17px; height: 17px; }

.footer-social { display: flex; gap: .5rem; }
.footer-social .social-link {
  width: 34px; height: 34px;
  background: rgba(201,168,76,.15);
}
.footer-social .social-link:hover { background: var(--gold); }

/* ─── PRELOADER ──────────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--off);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
  opacity: 0;
  animation: preloaderEnter 1s ease .15s forwards;
}
.preloader-icon {
  width: 56px; height: 56px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  animation: preloaderPulse 2.4s ease-in-out infinite;
}
.preloader-title {
  font-family: 'Glacial Indifference', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0;
  line-height: 1.1;
}
.preloader-title .white { color: var(--navy); }
.preloader-title .gold  { color: var(--gold); }
.preloader-sub {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(26,43,74,.55);
  margin: 1.1rem 0 0;
}
.preloader-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.6rem auto 0;
  transform: scaleX(0);
  transform-origin: center;
  animation: preloaderLine 1.4s ease .55s forwards;
}
@keyframes preloaderEnter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes preloaderLine {
  to { transform: scaleX(1); }
}
@keyframes preloaderPulse {
  0%, 100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); }
}

/* ─── CURSOR PERSONALIZADO ───────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button { cursor: none; }

  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    opacity: 0;
    transition: opacity .25s ease, width .25s ease, height .25s ease, background .2s ease;
    will-change: transform;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    margin-left: -3px; margin-top: -3px;
    background: var(--gold);
  }
  .cursor-ring {
    width: 34px; height: 34px;
    margin-left: -17px; margin-top: -17px;
    border: 1.5px solid var(--gold);
  }
  .cursor-dot.is-visible,
  .cursor-ring.is-visible { opacity: 1; }

  .cursor-ring.is-hover {
    width: 56px; height: 56px;
    margin-left: -28px; margin-top: -28px;
    background: rgba(181,142,35,.08);
  }

  .cursor-dot.is-out,
  .cursor-ring.is-out { opacity: 0; }
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ─── PÁGINA HERO COMPACTA (sermones list y detalle) ─────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  min-height: 55svh;
  padding: 8rem 2rem 4rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d1a2e 0%, #1a2b4a 50%, #0f1e38 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 75% 45%, rgba(181,142,35,.12) 0%, transparent 55%),
    radial-gradient(circle at 20% 65%, rgba(181,142,35,.07) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 800px;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── MÓVIL — ajustes globales ───────────────────────────────── */
@media (max-width: 768px) {
  .header, .header--scrolled { padding: .85rem 1.25rem; }
  .logo-icon { width: 32px; height: 32px; }
  .logo-text .logo-main { font-size: 1rem; }
  .logo-text .logo-sub  { font-size: .54rem; }

  .section { padding: 4rem 1.25rem; }
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: .92rem; }
  .section-header { margin-bottom: 2.5rem; }

  footer { padding: 3rem 1.25rem 1.5rem; }
  footer::before { margin: -3rem -1.25rem 3rem; }
  .footer-bottom { font-size: .72rem; flex-direction: column; align-items: flex-start; }

  .page-hero { min-height: 40vh; min-height: 40svh; padding: 7rem 1.25rem 3rem; }
}

/* ─── PLACEHOLDER DE ÁLBUM (cuando no hay cover.jpg) ─────────────
   Se renderiza dentro de .album-card en lugar del <img>. Mantiene
   la estética sobria de la web: navy con cruz dorada centrada. */
.album-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 50% 35%, #243a63 0%, var(--navy) 45%, var(--navy-d) 100%);
  color: var(--gold);
  position: relative;
  transition: transform .6s ease;
}
.album-cover-placeholder::before {
  /* Sutil patrón de puntos para que no se vea plano */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(181,142,35,.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .55;
  pointer-events: none;
}
.album-cover-placeholder svg,
.album-cover-placeholder img {
  width: 34%; max-width: 84px;
  object-fit: contain;
  opacity: .55;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
  position: relative;
  transform: translateY(-8%);
}
.album-card:hover .album-cover-placeholder { transform: scale(1.07); }

/* ─── REPRODUCTOR DE AUDIO (home + página /audios) ──────────────
   Tarjeta oscura con portada (o placeholder de marca) al fondo,
   título dorado, pastor, botón de play dorado, barra de progreso y
   tiempo. Se usa idéntica en la home y en /audios. */
.audio-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-d);
  min-height: 190px;
  display: flex;
  box-shadow: var(--shadow-card);
  isolation: isolate;
  transition: var(--transition);
}
.audio-card:hover { box-shadow: var(--shadow-lg); }

.audio-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.audio-card-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 50% 35%, #243a63 0%, var(--navy) 45%, var(--navy-d) 100%);
  color: var(--gold);
}
.audio-card-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(181,142,35,.12) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .5;
  pointer-events: none;
}
.audio-card-placeholder svg {
  width: 28%; max-width: 92px;
  opacity: .5;
  position: relative;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
}
.audio-card-shade {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, rgba(13,26,46,.94) 0%, rgba(13,26,46,.8) 45%, rgba(13,26,46,.55) 100%);
}

.audio-card-body {
  position: relative;
  width: 100%;
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
}
.audio-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1.22;
}
.audio-preacher {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  margin-top: .2rem;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.audio-play {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: var(--navy-d);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(181,142,35,.45);
}
.audio-play:hover { background: var(--gold-l); transform: scale(1.06); }
.audio-play svg { width: 24px; height: 24px; margin-left: 2px; }
.audio-card.is-playing .audio-play svg { margin-left: 0; }

.audio-progress {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  position: relative;
  touch-action: none;
}
.audio-progress-fill {
  height: 100%; width: 0%;
  border-radius: 999px;
  background: var(--gold);
  pointer-events: none;
}
.audio-time {
  flex-shrink: 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .audio-card { min-height: 170px; }
  .audio-card-body { padding: 1.3rem 1.25rem; gap: 1.2rem; }
  .audio-title { font-size: 1.12rem; }
  .audio-preacher { font-size: .88rem; }
  .audio-play { width: 48px; height: 48px; }
  .audio-play svg { width: 21px; height: 21px; }
  .audio-time { font-size: .74rem; }
}

