@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.18s;
  animation-timing-function: ease;
}

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

:root {
  /* UI green (botones, badges, footer): verde medio-oscuro saturado */
  --green: #1ea03e;
  --green-dark: #167f30;
  --green-darker: #0f5e23;
  /* Accent green: brillante, sólo para resaltar palabras tipo "TRANSFORMA VIDAS" */
  --green-bright: #5cdd5c;
  --green-soft: #e8f7ea;
  --green-glow: rgba(30,160,62,0.35);
  --bg: #ffffff;
  --bg-soft: #f5f8f5;
  --bg-ticker: #f0f1ef;
  --text: #1a1a1a;
  --text-soft: #444;
  --muted: #888;
  --border: #e3e6e3;
}

html, body {
  color: var(--text);
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(30,160,62,0.04) 0%, transparent 70%),
    linear-gradient(180deg, #ecefec 0%, #f4f7f5 35%, #f4f7f5 65%, #d9e8dc 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

/* =================== HEADER =================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 60px;
}

.logo-link {
  position: static;
  display: block;
  height: 50px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 6px;
}

.logo-link img {
  height: 90px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
  transition: transform 0.25s;
}

.logo-link:hover img { transform: scale(1.05); }

.nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

.nav a:hover, .nav a.active { color: var(--green); }

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.25s;
}

.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px 7px 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(30,160,62,0.2);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.back-home:hover {
  background: var(--green);
  color: white;
  transform: translateX(-2px);
}

.back-home svg { width: 14px; height: 14px; }

.play-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px 8px 10px;
  background: var(--green);
  color: white;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(30,160,62,0.3);
}

.play-pill:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(30,160,62,0.45);
}

.play-pill:active { transform: translateY(0); }

.play-pill .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.play-pill .icon-circle svg { width: 12px; height: 12px; }

.play-pill .pill-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.play-pill .pill-title { font-size: 13px; font-weight: 700; }
.play-pill .pill-sub { font-size: 9.5px; font-weight: 400; opacity: 0.95; }

.play-pill.playing .icon-circle {
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.volume-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.volume-btn:hover { background: var(--green-soft); }
.volume-btn.muted { color: var(--muted); }
.volume-btn svg { width: 16px; height: 16px; }

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 72px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-size: 80% 100%;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.header .socials { display: none; }

.socials { display: flex; gap: 8px; }

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.social-icon:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

.social-icon svg { width: 16px; height: 16px; }

/* =================== HERO =================== */
.hero {
  position: relative;
  max-width: 1380px;
  margin: 18px auto;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  gap: 24px;
  align-items: center;
  background:
    radial-gradient(ellipse 55% 70% at 72% 55%, rgba(30,160,62,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 28% 50%, rgba(30,160,62,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #f5faf6 0%, #e8f3eb 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 30px -10px rgba(30,160,62,0.15);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 180%;
  background:
    radial-gradient(circle at 50% 50%, transparent 36%, rgba(92,221,92,0.07) 37%, rgba(92,221,92,0.07) 39%, transparent 40%),
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(92,221,92,0.05) 29%, rgba(92,221,92,0.05) 31%, transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 20%, rgba(92,221,92,0.04) 21%, rgba(92,221,92,0.04) 23%, transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50%;
  height: 130%;
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(92,221,92,0.05) 39%, rgba(92,221,92,0.05) 41%, transparent 42%),
    radial-gradient(circle at 50% 50%, transparent 28%, rgba(92,221,92,0.04) 29%, rgba(92,221,92,0.04) 31%, transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-text h1 .accent {
  color: var(--green-bright);
  display: block;
}

.hero-tagline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 340px;
}

.hero-tagline .heart {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-tagline p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.4;
}

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px 14px 14px;
  background: var(--green);
  color: white;
  border-radius: 999px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(30,160,62,0.35);
}

.btn-listen:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(30,160,62,0.5);
}

.btn-listen:active { transform: translateY(0); }

.btn-listen .icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.btn-listen .icon-circle svg { width: 14px; height: 14px; }

.btn-listen.playing .icon-circle {
  animation: pulse 1.4s infinite;
}

.hero-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at center, black 55%, transparent 92%);
  mask-image: radial-gradient(ellipse 80% 90% at center, black 55%, transparent 92%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  gap: 10px;
  text-align: center;
  padding: 20px;
}

.photo-placeholder svg { width: 64px; height: 64px; opacity: 0.6; }
.photo-placeholder .ph-text {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  opacity: 0.7;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}

.hero-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
}

.hero-dots span.active { background: var(--green); }

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  padding-right: 50px;
}

.hero-right .hint {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-right h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.1;
  color: var(--text);
  text-transform: uppercase;
}

.hero-right h2 .accent {
  color: var(--green-bright);
  font-weight: 700;
  display: block;
}

.hero-right .sub {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
  margin-top: 2px;
}

.hero-right .arrow-next {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-right .arrow-next:hover {
  transform: translateY(-50%) translateX(4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.hero-right .arrow-next svg { width: 18px; height: 18px; }

/* =================== TICKER =================== */
.ticker {
  background: var(--bg-ticker);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ticker-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
}

.ticker-badge {
  background: var(--green);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.ticker-intro {
  color: var(--text-soft);
  font-weight: 600;
  flex-shrink: 0;
}

.ticker-items {
  flex: 1;
  display: flex;
  gap: 32px;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 4%, black 96%, transparent 100%);
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

.ticker-item .ti-time {
  color: var(--green);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.ticker-more {
  color: var(--green);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.ticker-more:hover { color: var(--green-dark); }

/* =================== CARDS =================== */
.cards-section {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  height: 280px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -10px rgba(0,0,0,0.18);
}

.card-image {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--green-dark);
  min-height: 0;
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.card-1 .card-image {
  background-image: url('https://images.unsplash.com/photo-1505740420928-5e560c06d30e?auto=format&fit=crop&w=800&q=80'),
    linear-gradient(135deg, #1a3d1a, #2d5a2d);
}
.card-2 .card-image {
  background-image: url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=800&q=80'),
    linear-gradient(135deg, #1ea03e, #167f30);
}
.card-3 .card-image {
  background-image: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?auto=format&fit=crop&w=800&q=80'),
    linear-gradient(135deg, #f5b343, #e89020);
}
.card-4 .card-image {
  background-image: url('https://images.unsplash.com/photo-1518352262430-7a01a9e6e2cf?auto=format&fit=crop&w=800&q=80'),
    linear-gradient(135deg, #4a6f4a, #2d4a2d);
}

.card-content {
  padding: 14px 18px 16px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}

.card-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
}

.card-label svg { width: 12px; height: 12px; }

.card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 2px 0 2px;
}

.card p {
  font-size: 12px;
  color: var(--text-soft);
  line-height: 1.3;
  margin-bottom: 10px;
}

.card-btn {
  align-self: flex-start;
  padding: 7px 14px;
  background: white;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.card-btn:hover { background: var(--green); color: white; }

/* =================== INTERNAL PAGES =================== */
.page-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 32px 32px;
  text-align: center;
  position: relative;
}

.page-eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  padding: 5px 12px;
  background: var(--green-soft);
  border-radius: 999px;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.page-hero h1 .accent { color: var(--green-bright); }

.page-lead {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 32px;
}

.placeholder-card {
  background: var(--bg-soft);
  border: 1px dashed rgba(30,160,62,0.4);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.placeholder-icon {
  width: 56px;
  height: 56px;
  color: var(--green);
  opacity: 0.7;
  margin-bottom: 4px;
}

.placeholder-card h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.placeholder-card p {
  color: var(--text-soft);
  font-size: 14px;
  max-width: 460px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  padding: 11px 22px;
  border: 1.5px solid var(--green);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.back-link:hover { background: var(--green); color: white; }

/* =================== FOOTER =================== */
.footer {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 18px 32px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-inner.footer-compact {
  grid-template-columns: 1fr auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.footer-brand p {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.95;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0.95;
}

.footer-icon svg { width: 20px; height: 20px; }

.footer-text { line-height: 1.2; }
.footer-text .ft-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-text .ft-sub {
  font-size: 11px;
  opacity: 0.85;
  margin-top: 1px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-socials .lbl {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.95;
}
.footer-socials .icons { display: flex; gap: 10px; }
.footer-socials .icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background 0.2s, transform 0.15s;
}
.footer-socials .icons a:hover {
  background: rgba(255,255,255,0.34);
  transform: translateY(-2px);
}
.footer-socials .icons svg { width: 22px; height: 22px; }

.copyright {
  text-align: center;
  padding-top: 0;
  font-size: 11px;
  opacity: 0.75;
  margin-top: 6px;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1200px) {
  .nav { gap: 16px; }
  .nav a { font-size: 12px; }
  .hero { grid-template-columns: 1fr 1.4fr; padding: 24px 24px 20px; }
  .hero-right { display: none; }
  .cards-section { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card { height: 260px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-inner.footer-compact { grid-template-columns: 1fr; }
  .footer-socials { grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 768px) {
  .header-inner { padding: 10px 16px; gap: 10px; flex-wrap: wrap; }
  .logo-link {
    height: 38px;
  }
  .logo-link img {
    height: 70px;
  }
  .nav { display: none; }
  .play-pill { padding: 7px 14px 7px 8px; }
  .play-pill .pill-sub { display: none; }
  .volume-control { display: none; }
  .socials { display: none; }
  .hero { grid-template-columns: 1fr; padding: 24px 16px; gap: 18px; }
  .hero-text { text-align: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .btn-listen { margin: 0 auto; }
  .ticker-inner { padding: 8px 16px; font-size: 12px; gap: 10px; }
  .ticker-intro { display: none; }
  .cards-section { grid-template-columns: 1fr; padding: 0 16px; margin: 20px auto; }
  .card { height: 220px; }
  .footer { padding: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; }
  .footer-socials { justify-content: center; }
  .page-hero { padding: 36px 16px 24px; }
  .page-content { padding: 0 16px; }
  .placeholder-card { padding: 36px 22px; }
}
