:root {
  --forest: #6f1c16;
  --forest-deep: #35120f;
  --forest-soft: #983c2d;
  --cream: #f7f0df;
  --paper: #fffaf0;
  --ink: #2d211c;
  --muted: #75645a;
  --gold: #c89326;
  --gold-soft: #f1d58a;
  --sage: #ded2b9;
  --lilac: #e6d8cd;
  --rose: #ead1c3;
  --line: rgba(66, 39, 30, 0.14);
  --shadow: 0 22px 55px rgba(66, 31, 21, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { color-scheme: light; scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.55;
}

button, input, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(215, 168, 77, 0.56);
  outline-offset: 3px;
}

svg { display: block; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: var(--forest-deep);
}

.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.app-shell { min-height: 100vh; }

.side-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  display: flex;
  width: 246px;
  flex-direction: column;
  padding: 30px 20px 24px;
  color: white;
  background:
    radial-gradient(circle at 10% 10%, rgba(215, 168, 77, 0.18), transparent 32%),
    linear-gradient(165deg, var(--forest) 0%, var(--forest-deep) 100%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0 6px;
  border: 0;
  color: white;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark img { width: 42px; height: 42px; object-fit: contain; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font-family: var(--serif); font-size: 1.18rem; letter-spacing: 0.01em; }
.brand-copy small { margin-top: 2px; color: rgba(255, 255, 255, 0.58); font-size: 0.72rem; letter-spacing: 0.11em; text-transform: uppercase; }

.rail-nav { display: grid; gap: 8px; margin-top: 58px; }

.nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  cursor: pointer;
  transition: 160ms ease;
}

.nav-item:hover { color: white; background: rgba(255, 255, 255, 0.07); }
.nav-item.active { color: white; background: rgba(255, 255, 255, 0.12); box-shadow: inset 3px 0 var(--gold); }
.nav-item svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.nav-item span { font-size: 0.94rem; font-weight: 600; }

.rail-footer { display: grid; gap: 14px; margin-top: auto; }
.streak-pill { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 14px; color: rgba(255, 255, 255, 0.64); background: rgba(0, 0, 0, 0.12); font-size: 0.8rem; }
.streak-pill > span:first-child { color: var(--gold); }
.streak-pill strong { color: white; font-size: 1rem; }
.install-button { min-height: 42px; border: 1px solid rgba(255,255,255,.18); border-radius: 12px; color: white; background: rgba(255,255,255,.08); cursor: pointer; }
.site-link { color: rgba(255,255,255,.68); font-size: .75rem; text-align: center; text-decoration: none; }
.site-link:hover { color: var(--gold-soft); }

.main-content { min-height: 100vh; margin-left: 246px; padding: 0 clamp(28px, 4.6vw, 74px) 132px; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  gap: 20px;
}

.full-date { margin: 0; color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.time-greeting { margin: 3px 0 0; color: var(--ink); font-family: var(--serif); font-size: 1.22rem; }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.icon-button, .avatar { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: rgba(255, 255, 255, 0.6); cursor: pointer; }
.install-pill { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: white; background: var(--forest); font-size: .78rem; font-weight: 800; cursor: pointer; }
.icon-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.avatar { color: white; background: var(--forest); border-color: transparent; font-size: 0.75rem; font-weight: 700; }

.app-view { animation: view-in 300ms ease both; }
.app-view[hidden] { display: none !important; }
@keyframes view-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.today-grid { display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.75fr); gap: 20px; }
.prayer-hero { position: relative; min-height: 394px; overflow: hidden; border-radius: 28px; color: white; background: linear-gradient(125deg, var(--forest-deep), var(--forest-soft)); box-shadow: var(--shadow); isolation: isolate; }
.hero-glow { position: absolute; width: 340px; height: 340px; top: -180px; left: 32%; border-radius: 50%; background: rgba(247, 222, 169, 0.14); filter: blur(3px); }
.hero-content { position: relative; z-index: 3; width: min(58%, 620px); padding: clamp(38px, 4vw, 58px); }
.eyebrow { margin: 0 0 15px; color: var(--gold-soft); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow.dark { color: #987328; }
.prayer-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 600; line-height: 1.03; letter-spacing: -0.025em; }
.hero-prayer { max-width: 610px; margin: 18px 0 0; color: rgba(255, 255, 255, 0.76); font-size: clamp(0.96rem, 1.4vw, 1.08rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 999px; font-size: 0.86rem; font-weight: 700; cursor: pointer; transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease; }
.button:hover { transform: translateY(-1px); }
.button svg { width: 16px; fill: currentColor; }
.button-light { color: var(--forest-deep); background: var(--paper); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.button-ghost { color: white; border-color: rgba(255, 255, 255, 0.22); background: rgba(255, 255, 255, 0.06); }
.button-ghost.completed { color: var(--forest-deep); background: var(--gold-soft); border-color: transparent; }
.button-dark { color: white; background: var(--forest); }

.hero-art { position: absolute; z-index: 1; inset: 0 0 0 48%; overflow: hidden; background: linear-gradient(90deg, var(--forest-deep), transparent 28%), url("assets/dailyprayer-audio.png") center / cover no-repeat; opacity: .9; }
.sun { position: absolute; top: 56px; right: 82px; width: 138px; height: 138px; border-radius: 50%; background: linear-gradient(135deg, #f6e1ae, #d6a348); box-shadow: 0 0 80px rgba(241, 211, 145, .38); }
.hill { position: absolute; border-radius: 50% 50% 0 0; transform: rotate(-7deg); }
.hill-back { width: 520px; height: 245px; right: -172px; bottom: -45px; background: #496e62; }
.hill-front { width: 480px; height: 200px; right: 18px; bottom: -110px; background: #204b43; }
.cross { position: absolute; right: 142px; bottom: 83px; width: 5px; height: 72px; border-radius: 2px; background: rgba(255,255,255,.86); filter: drop-shadow(0 8px 12px rgba(0,0,0,.28)); }
.cross::after { content: ""; position: absolute; top: 20px; left: -17px; width: 39px; height: 5px; border-radius: 2px; background: inherit; }

.verse-card { display: flex; min-height: 394px; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255, 253, 248, 0.82); box-shadow: 0 16px 44px rgba(29, 52, 46, 0.07); }
.verse-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.save-button { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); background: transparent; cursor: pointer; }
.save-button.saved { color: white; background: var(--forest); }
.save-button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linejoin: round; }
.verse-card blockquote { margin: auto 0 24px; font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.15rem); font-style: italic; line-height: 1.32; }
.verse-card cite { color: #987328; font-size: .82rem; font-style: normal; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.section-block { margin-top: clamp(48px, 6vw, 76px); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 23px; }
.section-heading h2, .journal-title-row h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 2.8vw, 2.55rem); line-height: 1.1; }
.section-heading .eyebrow { margin-bottom: 8px; }
.text-button { border: 0; color: var(--forest); background: transparent; font-size: .82rem; font-weight: 700; cursor: pointer; }
.text-button span { padding-left: 6px; }

.rhythm-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 16px; }
.rhythm-card { position: relative; min-height: 220px; overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease; }
.rhythm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.rhythm-card:nth-child(2) { background: #f0ece2; }
.rhythm-card:nth-child(3) { color: white; background: var(--forest); }
.rhythm-time { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.rhythm-time span:first-child { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.rhythm-duration { color: var(--muted); font-size: .72rem; }
.rhythm-card:nth-child(3) .rhythm-duration { color: rgba(255,255,255,.62); }
.rhythm-card h3 { margin: 48px 0 8px; font-family: var(--serif); font-size: 1.45rem; }
.rhythm-card p { margin: 0; max-width: 34ch; color: var(--muted); font-size: .87rem; }
.rhythm-card:nth-child(3) p { color: rgba(255,255,255,.68); }
.rhythm-card:nth-child(4) { background: #f2e5d1; }
.rhythm-card:nth-child(5) { background: #ead1c3; }
.rhythm-card::after { content: ""; position: absolute; right: -34px; top: -34px; width: 112px; height: 112px; border-radius: 50%; background: var(--gold-soft); opacity: .48; }
.rhythm-card:nth-child(2)::after { background: var(--lilac); }
.rhythm-card:nth-child(3)::after { background: rgba(255,255,255,.12); }

.page-intro { max-width: 760px; padding: 28px 0 44px; }
.page-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6.4rem); font-weight: 600; line-height: .97; letter-spacing: -.035em; }
.page-intro > p:last-child, .radio-intro > div > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 1.02rem; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.filter-chip { min-height: 38px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.54); cursor: pointer; }
.filter-chip.active { color: white; background: var(--forest); border-color: var(--forest); }

.prayer-library { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.prayer-card { display: flex; min-height: 270px; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.prayer-card:nth-child(4n+2) { background: #eee9f1; }
.prayer-card:nth-child(4n+3) { background: #e3ece6; }
.prayer-card:nth-child(4n+4) { background: #f0e2dd; }
.prayer-card .prayer-meta { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.prayer-card h2 { margin: 34px 0 12px; font-family: var(--serif); font-size: 1.75rem; line-height: 1.1; }
.prayer-card p { margin: 0; color: var(--muted); }
.prayer-card button { align-self: flex-start; margin-top: auto; padding: 12px 0 0; border: 0; color: var(--forest); background: transparent; font-weight: 700; cursor: pointer; }

.home-media-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(280px,.75fr); gap: 16px; }
.official-station-card { display: grid; grid-template-columns: 76px minmax(0,1fr) 52px; gap: 20px; align-items: center; min-height: 150px; padding: 24px; border-radius: 24px; color: white; background: linear-gradient(135deg, var(--forest-deep), var(--forest)); box-shadow: var(--shadow); }
.official-station-card > img { width: 76px; height: 76px; object-fit: contain; border-radius: 18px; background: rgba(255,255,255,.08); }
.official-station-card h3, .podcast-preview h3 { margin: 7px 0 5px; font-family: var(--serif); font-size: 1.5rem; }
.official-station-card p, .podcast-preview p { margin: 0; color: rgba(255,255,255,.7); font-size: .86rem; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--gold-soft); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.live-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #e24737; box-shadow: 0 0 0 5px rgba(226,71,55,.15); }
.official-station-card .station-play { width: 52px; height: 52px; color: var(--forest-deep); background: var(--gold-soft); }
.podcast-preview { display: flex; min-height: 150px; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); }
.podcast-preview > div > span { color: #8b0000; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.podcast-preview p { color: var(--muted); }
.podcast-preview a { margin-top: 16px; color: var(--forest); font-size: .82rem; font-weight: 800; text-decoration: none; }

.site-cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; margin-top: 24px; padding: 34px; border-radius: 26px; color: white; background: linear-gradient(135deg, var(--forest-deep), var(--forest)); }
.site-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem,3vw,2.4rem); }
.site-cta > div:last-child { display: flex; flex-wrap: wrap; gap: 10px; }
.resource-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.resource-grid a { display: flex; min-height: 190px; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.resource-grid a:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.resource-grid a:nth-child(2), .resource-grid a:nth-child(5) { background: #f2e5d1; }
.resource-grid a:nth-child(3), .resource-grid a:nth-child(6) { background: #ead1c3; }
.resource-grid span { margin-bottom: auto; color: #8b0000; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.resource-grid strong { margin-top: 30px; font-family: var(--serif); font-size: 1.35rem; }
.resource-grid small { margin-top: 7px; color: var(--muted); font-size: .8rem; }

.radio-main-card { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(340px,.8fr); overflow: hidden; border-radius: 28px; color: white; background: var(--forest-deep); box-shadow: var(--shadow); }
.radio-main-art { min-height: 360px; overflow: hidden; }
.radio-main-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.radio-main-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px,4vw,54px); }
.radio-main-copy h2 { margin: 14px 0 12px; font-family: var(--serif); font-size: clamp(2rem,4vw,3.6rem); line-height: 1.04; }
.radio-main-copy p { color: rgba(255,255,255,.72); }
.radio-actions, .podcast-links, .dialog-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.global-blend-section { padding-top: 4px; }
.global-blend-card { display: grid; grid-template-columns: minmax(220px,.7fr) minmax(0,1.3fr); overflow: hidden; border: 1px solid rgba(139,0,0,.18); border-radius: 28px; color: var(--ink); background: linear-gradient(135deg,#fff8e8 0%,#f3e2c8 100%); box-shadow: var(--shadow); }
.global-blend-mark { display: flex; min-height: 310px; flex-direction: column; align-items: center; justify-content: center; padding: 36px; color: white; background: radial-gradient(circle at 70% 20%,rgba(215,168,77,.45),transparent 34%),linear-gradient(145deg,#1b090a,#5b171a 68%,#8b0000); text-align: center; text-transform: uppercase; }
.global-blend-mark span { color: var(--gold-soft); font-size: .8rem; font-style: normal; font-weight: 900; letter-spacing: .26em; }
.global-blend-mark strong { margin: 8px 0 2px; font-family: var(--serif); font-size: clamp(2.6rem,5vw,4.8rem); line-height: .9; letter-spacing: -.05em; }
.global-blend-mark em { color: white; font-size: 1rem; font-style: normal; font-weight: 800; letter-spacing: .32em; }
.global-blend-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px,4vw,54px); }
.global-blend-copy h3 { max-width: 650px; margin: 18px 0 12px; font-family: var(--serif); font-size: clamp(2rem,4vw,3.4rem); line-height: 1.02; }
.global-blend-copy p { max-width: 720px; margin: 0 0 24px; color: var(--muted); line-height: 1.65; }
.global-blend-live-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; color: var(--muted); font-size: .8rem; font-weight: 700; }
.schedule-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.schedule-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); }
.schedule-card > strong { display: block; margin-bottom: 28px; color: #8b0000; font-family: var(--serif); font-size: 1.5rem; }
.schedule-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.15rem; }
.schedule-card p { margin: 0; color: var(--muted); font-size: .8rem; }
.podcast-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,.8fr); overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--paper); }
.podcast-art img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.podcast-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px,4vw,54px); }
.podcast-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem,3.5vw,3.2rem); line-height: 1.08; }
.podcast-copy > p:not(.eyebrow) { color: var(--muted); }
.platform-button { color: var(--forest); border-color: var(--line); background: transparent; text-decoration: none; }

.radio-intro { display: grid; max-width: none; grid-template-columns: 1fr 320px; gap: 40px; align-items: center; }
.radio-visual { display: flex; height: 180px; align-items: center; justify-content: center; gap: 11px; border-radius: 50%; background: radial-gradient(circle, var(--gold-soft), rgba(215,168,77,0) 68%); }
.radio-visual span { width: 8px; border-radius: 999px; background: var(--forest); animation: equalise 1.1s ease-in-out infinite alternate; }
.radio-visual span:nth-child(1), .radio-visual span:nth-child(6) { height: 36px; animation-delay: -.2s; }
.radio-visual span:nth-child(2), .radio-visual span:nth-child(5) { height: 74px; animation-delay: -.65s; }
.radio-visual span:nth-child(3), .radio-visual span:nth-child(4) { height: 118px; animation-delay: -.4s; }
@keyframes equalise { to { transform: scaleY(.45); } }
.radio-tools { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 18px; }
.search-box { display: flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 17px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.68); }
.search-box svg { width: 20px; fill: none; stroke: var(--muted); stroke-width: 1.8; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; }
.station-status { min-height: 24px; margin: -10px 0 18px; color: var(--muted); font-size: .82rem; }
.station-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.station-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.station-card { display: grid; grid-template-columns: 54px minmax(0,1fr) 42px; gap: 13px; align-items: center; min-height: 96px; padding: 17px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,253,248,.86); transition: transform 150ms ease, box-shadow 150ms ease; }
.station-card:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(29,52,46,.08); }
.station-logo { display: grid; width: 54px; height: 54px; place-items: center; overflow: hidden; border-radius: 15px; color: white; background: linear-gradient(135deg, var(--forest-soft), var(--forest-deep)); font-family: var(--serif); font-size: 1.2rem; }
.station-logo img { width: 100%; height: 100%; object-fit: cover; }
.station-copy { min-width: 0; }
.station-copy strong, .station-copy span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.station-copy strong { font-size: .9rem; }
.station-copy span { margin-top: 3px; color: var(--muted); font-size: .73rem; }
.station-play { display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; color: white; background: var(--forest); cursor: pointer; }
.station-play.active { color: var(--forest-deep); background: var(--gold-soft); }
.station-play svg { width: 15px; fill: currentColor; }
.station-skeleton { min-height: 96px; border-radius: 19px; background: linear-gradient(100deg, rgba(255,255,255,.45) 30%, rgba(255,255,255,.9) 48%, rgba(255,255,255,.45) 66%); background-size: 240% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -180% 0; } }
.empty-state { grid-column: 1 / -1; padding: 38px; border: 1px dashed var(--line); border-radius: 20px; color: var(--muted); text-align: center; }

.journal-layout { display: grid; grid-template-columns: minmax(320px,.85fr) minmax(0,1.15fr); gap: clamp(28px,5vw,68px); align-items: start; }
.journal-form { position: sticky; top: 26px; display: grid; padding: 28px; border-radius: 24px; color: white; background: var(--forest); box-shadow: var(--shadow); }
.journal-form label { margin-bottom: 14px; font-family: var(--serif); font-size: 1.55rem; }
.journal-form textarea { resize: vertical; width: 100%; min-height: 180px; padding: 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; outline: none; color: white; background: rgba(255,255,255,.08); }
.journal-form textarea::placeholder { color: rgba(255,255,255,.5); }
.journal-form textarea:focus { border-color: var(--gold); }
.journal-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 14px; }
.journal-form-footer span { color: rgba(255,255,255,.58); font-size: .75rem; }
.journal-form .button-dark { color: var(--forest-deep); background: var(--gold-soft); }
.journal-title-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.count-badge { display: grid; min-width: 28px; height: 28px; place-items: center; padding: 0 7px; border-radius: 999px; color: white; background: var(--forest); font-size: .75rem; }
.journal-list { display: grid; gap: 11px; }
.journal-item { display: grid; grid-template-columns: 1fr auto; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); }
.journal-item.answered { opacity: .7; }
.journal-item.answered p { text-decoration: line-through; }
.journal-item p { margin: 0 0 10px; }
.journal-item time { color: var(--muted); font-size: .72rem; }
.journal-actions { display: flex; gap: 6px; }
.journal-actions button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }

.audio-player { position: fixed; z-index: 50; right: 26px; bottom: 24px; left: 272px; display: grid; grid-template-columns: 52px minmax(0,1fr) 48px minmax(110px,170px) 30px; gap: 14px; align-items: center; min-height: 78px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; color: white; background: rgba(53,18,15,.97); box-shadow: 0 18px 50px rgba(53,18,15,.32); backdrop-filter: blur(18px); }
.audio-player[hidden] { display: none; }
.player-art { display: grid; width: 52px; height: 52px; place-items: center; overflow: hidden; border-radius: 14px; color: var(--forest-deep); background: var(--gold-soft); font-weight: 700; }
.player-art img { width: 100%; height: 100%; object-fit: cover; }
.player-copy { min-width: 0; }
.player-copy span, .player-copy strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.player-copy span { color: rgba(255,255,255,.55); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.player-copy strong { margin-top: 2px; font-size: .9rem; }
.player-toggle { display: grid; width: 46px; height: 46px; place-items: center; border: 0; border-radius: 50%; color: var(--forest-deep); background: var(--gold-soft); cursor: pointer; }
.player-toggle svg { width: 19px; fill: currentColor; }
.player-toggle .play-icon { display: none; }
.player-toggle.paused .pause-icon { display: none; }
.player-toggle.paused .play-icon { display: block; }
.volume-control { display: flex; align-items: center; gap: 9px; }
.volume-control svg { width: 19px; flex: 0 0 auto; fill: none; stroke: rgba(255,255,255,.7); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.volume-control input { width: 100%; accent-color: var(--gold); }
.close-player { border: 0; color: rgba(255,255,255,.6); background: transparent; font-size: 1.6rem; cursor: pointer; }

dialog { width: min(560px, calc(100vw - 30px)); border: 0; border-radius: 28px; padding: 38px; color: var(--ink); background: var(--paper); box-shadow: 0 28px 90px rgba(53,18,15,.32); }
dialog::backdrop { background: rgba(53,18,15,.62); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; top: 16px; right: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.4rem; cursor: pointer; }
.dialog-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 24px; border-radius: 18px; color: var(--forest); background: var(--gold-soft); font-weight: 700; }
.dialog-icon img { width: 48px; height: 48px; object-fit: contain; }
.dialog-scripture { padding: 14px 16px; border-left: 3px solid var(--gold); background: rgba(200,147,38,.08); font-family: var(--serif); }
.install-steps { display: grid; gap: 10px; margin: 22px 0 8px; }
.install-steps > div { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: rgba(200,147,38,.06); }
.install-steps strong { color: var(--forest); }
.install-steps p { margin: 6px 0 0; font-size: .9rem !important; line-height: 1.5 !important; }
dialog h2 { margin: 0; font-family: var(--serif); font-size: 2.25rem; line-height: 1.08; }
dialog p:not(.eyebrow) { color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
dialog .button { margin-top: 12px; }

.toast { position: fixed; z-index: 100; left: 50%; bottom: 28px; transform: translate(-50%, 18px); padding: 11px 17px; border-radius: 999px; color: white; background: var(--forest-deep); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: 180ms ease; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.mobile-nav { display: none; }

@media (max-width: 1120px) {
  .side-rail { width: 92px; align-items: center; padding-right: 12px; padding-left: 12px; }
  .brand { justify-content: center; padding: 0; }
  .brand-copy, .nav-item span, .rail-footer { display: none; }
  .rail-nav { width: 100%; }
  .nav-item { justify-content: center; padding: 0; }
  .nav-item.active { box-shadow: inset 0 -3px var(--gold); }
  .main-content { margin-left: 92px; }
  .audio-player { left: 118px; }
  .today-grid { grid-template-columns: 1fr; }
  .verse-card { min-height: 280px; }
  .verse-card blockquote { margin-top: 40px; }
  .station-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-media-grid, .radio-main-card, .podcast-section, .global-blend-card { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .resource-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .site-cta { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .side-rail { display: none; }
  .main-content { margin-left: 0; padding: 0 17px 174px; }
  .topbar { min-height: 86px; }
  .today-grid { gap: 14px; }
  .prayer-hero { min-height: 510px; border-radius: 24px; }
  .hero-content { width: 100%; padding: 32px 26px; }
  .hero-prayer { max-width: 90%; }
  .hero-art { inset: 52% 0 0 20%; }
  .sun { top: 18px; right: 47px; width: 105px; height: 105px; }
  .hill-back { right: -210px; bottom: -72px; }
  .hill-front { right: -60px; bottom: -136px; }
  .cross { right: 95px; bottom: 42px; }
  .verse-card { min-height: 310px; border-radius: 24px; }
  .rhythm-grid, .prayer-library, .station-grid, .station-grid.compact { grid-template-columns: 1fr; }
  .rhythm-card { min-height: 200px; }
  .section-heading { align-items: start; flex-direction: column; gap: 9px; }
  .radio-intro { grid-template-columns: 1fr; }
  .radio-visual { display: none; }
  .radio-tools { grid-template-columns: 1fr; }
  .journal-layout { grid-template-columns: 1fr; }
  .journal-form { position: static; }
  .mobile-nav { position: fixed; z-index: 45; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; display: grid; grid-template-columns: repeat(4,1fr); min-height: 66px; padding: 7px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; color: white; background: rgba(53,18,15,.96); box-shadow: 0 15px 48px rgba(53,18,15,.3); backdrop-filter: blur(18px); }
  .mobile-nav .nav-item { min-height: 52px; flex-direction: column; justify-content: center; gap: 3px; padding: 0; border-radius: 15px; }
  .mobile-nav .nav-item.active { color: var(--forest-deep); background: var(--gold-soft); box-shadow: none; }
  .mobile-nav .nav-item svg { width: 19px; height: 19px; }
  .mobile-nav .nav-item span { display: block; font-size: .64rem; }
  .audio-player { right: 10px; bottom: 88px; left: 10px; grid-template-columns: 46px minmax(0,1fr) 44px 24px; min-height: 70px; padding: 10px; border-radius: 18px; }
  .player-art { width: 46px; height: 46px; }
  .volume-control { display: none; }
  .toast { bottom: 94px; }
  .page-intro { padding-top: 12px; }
  .home-media-grid, .radio-main-card, .podcast-section, .global-blend-card { grid-template-columns: 1fr; }
  .radio-main-art { min-height: 230px; }
  .global-blend-mark { min-height: 220px; }
  .global-blend-copy { padding: 28px 22px; }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .site-cta { padding: 26px; }
  .site-cta > div:last-child { align-items: stretch; flex-direction: column; }
  .site-cta .button { width: 100%; }
  .resource-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .topbar-actions { gap: 7px; }
  .icon-button, .avatar { width: 40px; height: 40px; }
  .install-pill { min-height: 36px; padding: 0 11px; font-size: .7rem; }
  .prayer-hero h1 { font-size: 2.55rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .verse-card { padding: 24px; }
  .station-card { grid-template-columns: 48px minmax(0,1fr) 40px; padding: 14px; }
  .station-logo { width: 48px; height: 48px; }
  .official-station-card { grid-template-columns: 58px minmax(0,1fr) 46px; gap: 12px; padding: 18px; }
  .official-station-card > img { width: 58px; height: 58px; }
  .official-station-card .station-play { width: 46px; height: 46px; }
  .schedule-grid { grid-template-columns: 1fr; }
  dialog { padding: 32px 24px; }
}

/* Live DailyPrayer.uk Today experience */
.refresh-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  background: rgba(255, 255, 255, .6);
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}
.refresh-button.is-refreshing { animation: refresh-spin .85s linear infinite; }
@keyframes refresh-spin { to { transform: rotate(360deg); } }

.button[disabled],
.save-text-button[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.text-button { display: inline-flex; align-items: center; padding: 0; text-decoration: none; }

.live-welcome {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(241, 213, 138, .48), transparent 26%),
    linear-gradient(135deg, rgba(255, 250, 240, .96), rgba(234, 209, 195, .68));
  box-shadow: 0 16px 44px rgba(53, 18, 15, .07);
}
.live-welcome h1 { margin: 0; font-family: var(--serif); font-size: clamp(2.25rem, 4.6vw, 4.7rem); font-weight: 600; line-height: 1; letter-spacing: -.035em; }
.live-welcome > div:first-child > p:last-child { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 1rem; }
.live-content-status { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.65); font-size: .75rem; font-weight: 700; }
.live-content-status span { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(200,147,38,.12); }
.live-content-status.is-live span { background: #2d9154; box-shadow: 0 0 0 5px rgba(45,145,84,.12); }
.live-content-status.is-cached span { background: #c89326; }
.live-section { scroll-margin-top: 18px; }

.latest-podcast-card {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  color: white;
  background: linear-gradient(145deg, var(--forest-deep), var(--forest));
  box-shadow: var(--shadow);
}
.latest-podcast-art { min-height: 360px; overflow: hidden; background: var(--forest-deep); }
.latest-podcast-art img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.latest-podcast-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 64px); }
.live-source-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.65); font-size: .74rem; }
.source-badge { color: var(--gold-soft); font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.latest-podcast-copy h3 { margin: 18px 0 14px; font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.7rem); font-weight: 600; line-height: 1.04; letter-spacing: -.025em; }
.latest-podcast-copy > p { display: -webkit-box; overflow: hidden; margin: 0; color: rgba(255,255,255,.74); font-size: 1rem; -webkit-box-orient: vertical; -webkit-line-clamp: 5; }
.podcast-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.latest-podcast-card .button-dark { color: var(--forest-deep); background: var(--gold-soft); }
.latest-podcast-card .platform-button { color: white; border-color: rgba(255,255,255,.23); }

.is-loading { position: relative; }
.is-loading::after { content: ""; position: absolute; inset: 0; z-index: 5; pointer-events: none; background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.13) 48%, transparent 74%); background-size: 240% 100%; animation: shimmer 1.45s infinite; }

.live-rhythm-grid { grid-template-columns: repeat(5, minmax(190px, 1fr)); overflow-x: auto; padding: 2px 2px 12px; scroll-snap-type: x proximity; }
.live-rhythm-grid .rhythm-card { display: flex; min-width: 190px; min-height: 300px; flex-direction: column; scroll-snap-align: start; cursor: default; }
.live-rhythm-grid .rhythm-card h3 { margin-top: 36px; }
.rhythm-episode { display: -webkit-box; overflow: hidden; margin-top: 10px !important; font-size: .8rem !important; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.rhythm-card .button { align-self: flex-start; min-height: 40px; margin-top: auto; padding: 0 14px; font-size: .75rem; }
.rhythm-card:nth-child(3) .button { color: var(--forest-deep); background: var(--gold-soft); }
.rhythm-card:not(:nth-child(3)) .button { color: white; background: var(--forest); }

.live-radio-card {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  min-height: 380px;
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background: var(--forest-deep);
  box-shadow: var(--shadow);
}
.live-radio-art { min-height: 360px; overflow: hidden; }
.live-radio-art img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.live-radio-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 5vw, 62px); }
.radio-live-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.55); font-size: .75rem; }
.live-radio-copy h3 { margin: 20px 0 12px; font-family: var(--serif); font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1; }
.live-radio-copy > p { margin: 0; color: rgba(255,255,255,.72); }
.radio-inline-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 28px; }
.radio-inline-controls label { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: .75rem; }
.radio-inline-controls input { width: 130px; accent-color: var(--gold-soft); }
.schedule-strip { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 10px; margin-top: 12px; }
.schedule-strip > div { padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,250,240,.78); }
.schedule-strip strong, .schedule-strip span { display: block; }
.schedule-strip strong { color: var(--forest); font-family: var(--serif); font-size: 1.1rem; }
.schedule-strip span { margin-top: 2px; color: var(--muted); font-size: .68rem; }

.journey-feature-card {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(53,18,15,.07);
}
.journey-feature-image { min-height: 390px; overflow: hidden; background: #e6d8cd; }
.journey-feature-image img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.journey-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 5vw, 60px); }
.journey-progress-row { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.progress-track { height: 8px; overflow: hidden; margin: 12px 0 24px; border-radius: 999px; background: rgba(53,18,15,.09); }
.progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--gold), var(--forest)); transition: width 300ms ease; }
.journey-feature-copy h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 3.6vw, 3.6rem); line-height: 1.04; }
.journey-scripture { margin: 14px 0 0 !important; color: #987328 !important; font-family: var(--serif); font-size: 1.05rem; font-style: italic; }
.journey-feature-copy > p:not(.journey-scripture) { margin: 14px 0 0; color: var(--muted); }
.journey-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 25px; }
.save-text-button { min-height: 42px; padding: 0 8px; border: 0; color: var(--forest); background: transparent; font-size: .78rem; font-weight: 800; cursor: pointer; }
.save-text-button.saved { color: #987328; }
.journey-page-progress { max-width: 760px; margin: -24px 0 32px; color: var(--muted); font-size: .78rem; font-weight: 800; }
.journey-page-progress .progress-track { margin-bottom: 0; }
.prayer-card.is-complete { border-color: rgba(45,145,84,.4); box-shadow: inset 0 0 0 2px rgba(45,145,84,.08); }
.prayer-card .prayer-scripture { margin-top: 12px; color: #987328; font-family: var(--serif); font-style: italic; }
.prayer-card .prayer-card-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: auto; padding-top: 18px; }
.prayer-card .prayer-card-actions button, .prayer-card .prayer-card-actions a { margin: 0; padding: 0; border: 0; color: var(--forest); background: transparent; font-size: .78rem; font-weight: 800; text-decoration: none; }

.resource-button-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.resource-button-grid a { display: flex; min-height: 92px; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; border-radius: 18px; color: white; background: linear-gradient(135deg, var(--forest-deep), var(--forest)); text-decoration: none; }
.resource-button-grid a strong { font-family: var(--serif); font-size: 1.13rem; }
.resource-button-grid a span { color: var(--gold-soft); font-size: 1.2rem; }
.live-resource-grid a { min-height: 210px; }
.resource-grid .resource-modified { margin-top: 12px; color: #987328; font-size: .67rem; font-weight: 700; }

.content-message { grid-column: 1 / -1; padding: 28px; border: 1px dashed var(--line); border-radius: 20px; color: var(--muted); text-align: center; background: rgba(255,255,255,.35); }

@media (max-width: 1250px) {
  .live-rhythm-grid { grid-template-columns: repeat(5, 210px); }
  .resource-button-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 920px) {
  .latest-podcast-card, .live-radio-card, .journey-feature-card { grid-template-columns: 1fr; }
  .latest-podcast-art, .latest-podcast-art img, .live-radio-art, .live-radio-art img, .journey-feature-image, .journey-feature-image img { min-height: 280px; max-height: 420px; }
  .schedule-strip { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .live-welcome { align-items: flex-start; flex-direction: column; padding: 28px 24px; border-radius: 24px; }
  .live-welcome h1 { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .live-content-status { white-space: normal; }
  .latest-podcast-card, .live-radio-card, .journey-feature-card { border-radius: 24px; }
  .latest-podcast-art, .latest-podcast-art img { min-height: 270px; max-height: 330px; }
  .latest-podcast-copy, .live-radio-copy, .journey-feature-copy { padding: 27px 23px 30px; }
  .latest-podcast-copy h3 { font-size: 2.2rem; }
  .live-source-row, .radio-live-row, .journey-progress-row { align-items: flex-start; flex-direction: column; gap: 6px; }
  .podcast-actions, .journey-actions { align-items: stretch; flex-direction: column; }
  .podcast-actions .button, .journey-actions .button { width: 100%; }
  .live-rhythm-grid { grid-template-columns: repeat(5, minmax(82vw, 330px)); margin-right: -17px; }
  .live-rhythm-grid .rhythm-card { min-width: 0; min-height: 270px; }
  .live-radio-art, .live-radio-art img { min-height: 260px; max-height: 330px; }
  .radio-inline-controls { align-items: stretch; flex-direction: column; }
  .radio-inline-controls .button { width: 100%; }
  .radio-inline-controls label { justify-content: space-between; }
  .radio-inline-controls input { width: min(190px, 48vw); }
  .schedule-strip { grid-template-columns: 1fr 1fr; }
  .journey-feature-image, .journey-feature-image img { min-height: 250px; max-height: 330px; }
  .resource-button-grid { grid-template-columns: 1fr; }
  .resource-button-grid a { min-height: 78px; }
  .live-resource-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .live-resource-grid a { min-height: 142px; padding: 17px; }
  .live-resource-grid strong { margin-top: 18px; font-size: 1.05rem; line-height: 1.08; }
  .live-resource-grid small { display: none; }
  .refresh-button { width: 36px; height: 36px; }
}

@media (max-width: 430px) {
  .topbar-actions .refresh-button { display: none; }
  .live-welcome { padding: 25px 20px; }
  .latest-podcast-copy h3, .live-radio-copy h3, .journey-feature-copy h3 { font-size: 2rem; }
  .schedule-strip { grid-template-columns: 1fr; }
}

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