/*
Theme Name: Kurdistan FM
Theme URI: https://kurdistan.fm
Author: Kurdistan FM
Description: Radio, news and culture. Custom theme with a persistent live player, show schedule, hosts and news.
Version: 2.5.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: kurdistanfm
*/

:root {
  --charcoal: #1c1c1e;
  --charcoal-2: #2a2a2d;
  --gold: #f5b400;
  --gold-deep: #d99f00;
  --gold-ink: #7a5a00;
  --red: #ed2024;
  --live: #ed2024;
  --paper: #ffffff;
  --paper-2: #f5f5f2;
  --ink: #1b1b1b;
  --ink-2: #5a5a57;
  --rule: #e4e3de;
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1160px;
  --player-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  padding-bottom: var(--player-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5em; font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: .8em 1.4em; border-radius: 999px; border: 2px solid transparent; text-decoration: none; cursor: pointer; line-height: 1; transition: background .15s, color .15s; }
.btn-gold { background: var(--gold); color: #1b1b1b; }
.btn-gold:hover { background: #ffc61a; }
.btn-dark { background: var(--ink); color: var(--gold); }
.btn-dark:hover { background: #333; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { background: transparent; color: var(--paper); border-color: rgba(255,255,255,.5); }
.btn-ghost-light:hover { border-color: var(--paper); }
.hero .btn-ghost-light { color: var(--ink); border-color: rgba(0,0,0,.4); }
.hero .btn-ghost-light:hover { border-color: var(--ink); background: var(--ink); color: var(--gold); }
.btn svg { width: 1em; height: 1em; }

/* Header */
.site-header { background: var(--paper); color: var(--ink); position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 var(--rule); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.site-logo img { height: 52px; width: auto; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.site-nav a { display: block; padding: .5em .8em; text-decoration: none; font-weight: 500; font-size: 1rem; color: var(--ink); border-radius: 6px; }
.site-nav a:hover, .site-nav .current-menu-item > a { background: var(--paper-2); }
/* Dropdown */
.site-nav li { position: relative; }
.site-nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 200px; background: var(--paper); border: 1px solid var(--rule); border-radius: 10px; padding: 6px; box-shadow: 0 10px 30px rgba(0,0,0,.12); list-style: none; margin: 0; flex-direction: column; gap: 0; z-index: 5; }
.site-nav li:hover > .sub-menu, .site-nav li:focus-within > .sub-menu { display: flex; }
.site-nav .menu-item-has-children > a::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin: 0 0 3px 8px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 0; color: var(--ink); padding: 8px; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; }

/* Hero */
.hero { background: var(--gold); color: var(--ink); padding: 56px 0 64px; }
.hero .wrap { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: start; }
.on-air-label { display: inline-flex; align-items: center; gap: .5em; color: var(--ink); font-weight: 600; margin-bottom: 14px; }
.hero .on-air-label { background: var(--ink); color: var(--gold); padding: 6px 14px; border-radius: 999px; }
.live-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--live); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .live-dot { animation: none; } }
.hero h1 { color: var(--ink); margin-bottom: .3em; }
.hero .hero-sub { color: rgba(0,0,0,.7); font-size: 1.1rem; max-width: 34em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn { font-size: 1.1rem; padding: 1em 1.8em; }
.up-next { background: var(--charcoal); color: var(--paper); border-radius: 16px; padding: 24px; }
.up-next h2 { font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 500; margin-bottom: 14px; }
.up-next ol { list-style: none; margin: 0; padding: 0; }
.up-next li { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.up-next li:first-child { border-top: 0; padding-top: 0; }
.up-next time { color: var(--gold); font-family: var(--font-display); font-weight: 600; }
.up-next a { text-decoration: none; font-weight: 600; }
.up-next a:hover { color: var(--gold); }
.up-next .host { display: block; color: rgba(255,255,255,.6); font-size: .9rem; font-weight: 400; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--paper-2); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 32px; }
.section-head h2 { margin: 0; }
.section-head a { font-weight: 600; text-decoration: none; color: var(--gold-ink); }
.section-head a:hover { text-decoration: underline; }

/* News grid */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.news-card { display: flex; flex-direction: column; gap: 12px; }
.news-card .thumb { aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; background: var(--paper-2); }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-card .thumb.placeholder { display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--rule); }
.news-card .thumb.placeholder img { width: 56px; height: 56px; opacity: .8; }
.news-card .cat { color: var(--gold-ink); font-weight: 600; font-size: .85rem; text-decoration: none; }
.news-card h3 { margin: 0; font-size: 1.3rem; }
.news-card h3 a { text-decoration: none; }
.news-card h3 a:hover { color: var(--gold-ink); }
.news-card .meta { color: var(--ink-2); font-size: .9rem; }
.news-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: center; }
.news-featured h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

/* Shows */
.show-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.show-card { background: var(--paper); border: 1px solid var(--rule); border-radius: 14px; padding: 22px; text-decoration: none; display: flex; flex-direction: column; gap: 8px; transition: border-color .15s, box-shadow .15s; }
.show-card:hover { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(245,180,0,.25); }
.show-card .when { color: var(--gold-ink); font-family: var(--font-display); font-weight: 600; font-size: .95rem; }
.show-card h3 { margin: 0; }
.show-card p { color: var(--ink-2); font-size: .95rem; margin: 0; }

/* Schedule grid */
.schedule { display: grid; gap: 28px; }
.schedule-day { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding-top: 24px; border-top: 2px solid var(--ink); }
.schedule-day.today { border-top-color: var(--gold); border-top-width: 4px; }
.schedule-day h2 { font-size: 1.4rem; margin: 0; }
.schedule-day .today-tag { display: block; color: var(--gold-ink); font-size: .9rem; font-weight: 500; font-family: var(--font-body); }
.slot { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.slot:last-child { border-bottom: 0; }
.slot time { font-family: var(--font-display); font-weight: 600; }
.slot a { text-decoration: none; font-weight: 600; }
.slot a:hover { color: var(--gold-ink); }
.slot .host { color: var(--ink-2); font-weight: 400; }
.empty-note { color: var(--ink-2); }

/* Hosts */
.host-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.host-card { text-decoration: none; }
.host-card .avatar { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--charcoal); margin-bottom: 14px; display: grid; place-items: center; }
.host-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.host-card .avatar .initials { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); }
.host-card h3 { margin: 0 0 4px; }
.host-card p { color: var(--ink-2); font-size: .95rem; margin: 0; }

/* Single / page */
.page-head { padding: 56px 0 24px; }
.page-head .kicker { color: var(--gold-ink); font-weight: 600; }
.page-head h1 { margin-bottom: .2em; }
.page-head .lede { color: var(--ink-2); font-size: 1.2rem; max-width: 36em; }
.content { max-width: 720px; }
.content > *:first-child { margin-top: 0; }
.content h2 { margin-top: 1.5em; }
.content img { border-radius: 12px; }
.content blockquote { border-left: 4px solid var(--gold); margin: 1.5em 0; padding: .2em 0 .2em 1.2em; font-family: var(--font-display); font-size: 1.25rem; color: var(--ink-2); }
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding-bottom: 64px; }
.post-meta { color: var(--ink-2); font-size: .95rem; margin-bottom: 24px; }
.post-thumb { border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
.sidebar .widget { background: var(--paper-2); border-radius: 14px; padding: 22px; margin-bottom: 20px; }
.sidebar .widget h3 { font-size: 1rem; margin-bottom: 12px; }
.sidebar ul { list-style: none; margin: 0; padding: 0; }
.sidebar li { padding: 8px 0; border-top: 1px solid var(--rule); }
.sidebar li:first-child { border-top: 0; padding-top: 0; }
.sidebar a { text-decoration: none; font-weight: 500; }
.sidebar a:hover { color: var(--gold-ink); }
.show-detail { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.detail-box { background: var(--charcoal); color: var(--paper); border-radius: 16px; padding: 24px; }
.detail-box dt { color: rgba(255,255,255,.6); font-size: .85rem; margin-top: 14px; }
.detail-box dt:first-child { margin-top: 0; }
.detail-box dd { margin: 2px 0 0; font-weight: 600; }
.detail-box a { color: var(--gold); text-decoration: none; }
.pagination { display: flex; gap: 8px; margin: 32px 0; }
.pagination a, .pagination span { padding: .5em .9em; border-radius: 8px; border: 1px solid var(--rule); text-decoration: none; }
.pagination .current { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* Listen page */
.listen-hero { background: var(--gold); color: var(--ink); padding: 72px 0; text-align: center; }
.listen-hero h1 { color: var(--ink); }
.listen-hero .on-air-label { background: var(--ink); color: var(--gold); padding: 6px 14px; border-radius: 999px; }
.listen-hero .btn-ghost-light { color: var(--ink); border-color: rgba(0,0,0,.4); }
.listen-hero .btn-ghost-light:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }
.listen-hero p { color: rgba(0,0,0,.7) !important; }
.big-play { width: 120px; height: 120px; border-radius: 50%; background: var(--ink); border: 0; cursor: pointer; display: inline-grid; place-items: center; margin: 24px 0; }
.big-play svg { width: 48px; height: 48px; fill: var(--gold); }
.big-play:hover { background: #333; }
.app-links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.stream-missing { background: var(--ink); color: var(--gold); padding: 14px 18px; border-radius: 10px; display: inline-block; margin-top: 16px; font-size: .95rem; }

/* Advertise */
.ad-formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
.ad-format { border: 1px solid var(--rule); border-radius: 14px; padding: 24px; }
.ad-format h3 { margin-bottom: 8px; }
.ad-format p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.ad-band { background: var(--charcoal); color: var(--paper); padding: 56px 0; }
.ad-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ad-band h2 { margin: 0 0 .2em; }
.ad-band p { margin: 0; max-width: 34em; }

/* Forms */
.form { display: grid; gap: 16px; max-width: 560px; }
.form label { font-weight: 600; font-size: .95rem; display: grid; gap: 6px; }
.form input, .form textarea, .form select { font: inherit; padding: .7em .9em; border: 1px solid var(--rule); border-radius: 8px; background: var(--paper); width: 100%; }
.form input:focus, .form textarea:focus { border-color: var(--gold); outline: 0; box-shadow: 0 0 0 3px rgba(245,180,0,.3); }
.form textarea { min-height: 140px; resize: vertical; }
.notice { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; }
.notice-ok { background: #e6f4ea; color: #14532d; }
.notice-err { background: #fde8e8; color: #7f1d1d; }

/* Footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding: 56px 0 40px; margin-top: 64px; }
.site-footer .wrap { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.site-footer img { height: 44px; width: auto; margin-bottom: 14px; }
.site-footer h3 { color: var(--paper); font-size: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 6px 0; }
.site-footer a { color: rgba(255,255,255,.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; font-size: .9rem; }
.social { display: flex; gap: 10px; }
.social a { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); }
.social svg { width: 18px; height: 18px; fill: currentColor; }

/* Sticky player */
.player { position: fixed; left: 0; right: 0; bottom: 0; height: var(--player-h); background: var(--charcoal); color: var(--paper); border-top: 3px solid var(--gold); z-index: 60; box-shadow: 0 -6px 20px rgba(0,0,0,.15); }
.player .wrap { display: flex; align-items: center; gap: 16px; height: 100%; }
.player-btn { width: 46px; height: 46px; border-radius: 50%; background: var(--gold); border: 0; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; }
.player-btn svg { width: 20px; height: 20px; fill: var(--ink); }
.player-btn[disabled] { background: rgba(255,255,255,.15); cursor: not-allowed; }
.player-btn[disabled] svg { fill: rgba(255,255,255,.4); }
.player-info { min-width: 0; flex: 1; line-height: 1.25; }
.player-info .label { font-size: .75rem; color: var(--gold); font-weight: 600; display: flex; align-items: center; gap: .4em; }
.player-info .title { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-info .title small { color: rgba(255,255,255,.6); font-weight: 400; }
.player-vol { display: flex; align-items: center; gap: 8px; }
.player-vol input { width: 110px; accent-color: var(--gold); }
.player-vol svg { width: 18px; height: 18px; fill: rgba(255,255,255,.7); }
.player-status { font-size: .8rem; color: rgba(255,255,255,.6); white-space: nowrap; }
.player.is-playing .icon-play { display: none; }
.player:not(.is-playing) .icon-pause { display: none; }
.player .eq { display: none; gap: 2px; align-items: flex-end; height: 14px; }
.player.is-playing .eq { display: inline-flex; }
.eq span { width: 3px; background: var(--gold); animation: eq .8s infinite ease-in-out alternate; }
.eq span:nth-child(2) { animation-delay: .2s; } .eq span:nth-child(3) { animation-delay: .4s; }
@keyframes eq { from { height: 4px; } to { height: 14px; } }
@media (prefers-reduced-motion: reduce) { .eq span { animation: none; height: 8px; } }

/* Now playing */
.player-art { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--charcoal-2); display: none; }
.player-art.show { display: block; }
.np-track { display: block; }
.np-artist { color: rgba(255,255,255,.6); font-weight: 400; }

/* Language bar on articles */
.lang-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; background: var(--paper-2); border: 1px solid var(--rule); border-radius: 12px; padding: 12px 16px; margin: 0 0 28px; }
.lang-bar-label { font-weight: 600; font-size: .9rem; color: var(--ink-2); margin-right: 4px; }
.lang-bar a, .lang-bar .current { font-size: .95rem; font-weight: 600; padding: .35em .8em; border-radius: 999px; text-decoration: none; }
.lang-bar a { background: var(--paper); border: 1px solid var(--rule); color: var(--ink); }
.lang-bar a:hover { border-color: var(--gold); background: var(--gold); }
.lang-bar .current { background: var(--ink); color: var(--gold); }
.lang-bar a.pending { color: var(--ink-2); border-style: dashed; }
.lang-bar a.pending:hover { color: var(--ink); }

/* Language switcher */
.lang-switch { position: relative; }
.lang-switch .lang-toggle { font: inherit; font-size: .85rem; font-weight: 600; padding: .45em .8em; border-radius: 999px; border: 1px solid var(--rule); background: var(--paper); color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: .4em; }
.lang-switch .lang-toggle::after { content: ""; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-bottom: 2px; }
.lang-switch .lang-toggle:hover { border-color: var(--gold); }
.lang-switch .lang-menu { display: none; position: absolute; top: calc(100% + 6px); right: 0; min-width: 170px; background: var(--paper); border: 1px solid var(--rule); border-radius: 10px; padding: 6px; box-shadow: 0 10px 30px rgba(0,0,0,.14); z-index: 60; }
.lang-switch.open .lang-menu { display: block; }
.lang-switch .lang-menu a { display: block; padding: .55em .7em; border-radius: 7px; text-decoration: none; font-size: .95rem; color: var(--ink); }
.lang-switch .lang-menu a:hover { background: var(--paper-2); }
.lang-switch a, .lang-switch .current { font-size: .8rem; font-weight: 600; padding: .35em .6em; border-radius: 6px; text-decoration: none; }
.lang-switch > .current { background: var(--ink); color: var(--gold); }

/* Newsletter */
.newsletter { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter input { font: inherit; padding: .7em .9em; border: 1px solid var(--rule); border-radius: 999px; background: var(--paper); min-width: 220px; flex: 1; }
.site-footer .newsletter input { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: var(--paper); }
.site-footer .newsletter input::placeholder { color: rgba(255,255,255,.5); }

/* Episodes */
.episode-list { display: grid; gap: 16px; }
.episode { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; border: 1px solid var(--rule); border-radius: 14px; padding: 16px; }
.episode .cover { width: 90px; height: 90px; border-radius: 10px; object-fit: cover; background: var(--paper-2); }
.episode h3 { margin: 0 0 4px; font-size: 1.15rem; }
.episode h3 a { text-decoration: none; }
.episode .meta { color: var(--ink-2); font-size: .9rem; }
.episode .play-ep { width: 46px; height: 46px; border-radius: 50%; background: var(--ink); border: 0; cursor: pointer; display: grid; place-items: center; }
.episode .play-ep svg { width: 18px; height: 18px; fill: var(--gold); }

/* Arabic and Sorani script */
.kfm-lang-ar, .kfm-lang-ckb { --font-display: "Noto Kufi Arabic", "Segoe UI", Tahoma, sans-serif; --font-body: "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif; }
.kfm-lang-ar body, .kfm-lang-ckb body { font-size: 18px; line-height: 1.8; }

/* Right to left */
.kfm-rtl { direction: rtl; }
.kfm-rtl .site-nav ul, .kfm-rtl .player .wrap, .kfm-rtl .hero-actions, .kfm-rtl .social { flex-direction: row-reverse; }
.kfm-rtl .up-next li, .kfm-rtl .slot, .kfm-rtl .episode { direction: rtl; }
.kfm-rtl .content blockquote { border-left: 0; border-right: 4px solid var(--gold); padding: .2em 1.2em .2em 0; }
.kfm-rtl .site-nav .sub-menu { left: auto; right: 0; }
.kfm-rtl .lang-switch .lang-menu { right: auto; left: 0; }
.kfm-rtl .lang-bar { direction: rtl; }
.kfm-rtl .schedule-day, .kfm-rtl .article-layout, .kfm-rtl .show-detail { direction: rtl; }

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap, .news-featured, .article-layout, .show-detail { grid-template-columns: 1fr; }
  .news-grid, .ad-formats { grid-template-columns: 1fr 1fr; }
  .show-row, .host-grid { grid-template-columns: 1fr 1fr; }
  .site-footer .wrap { grid-template-columns: 1fr 1fr; }
  .schedule-day { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 720px) {
  .site-nav { display: none; position: absolute; top: 76px; left: 0; right: 0; background: var(--paper); padding: 12px 20px 20px; box-shadow: 0 8px 20px rgba(0,0,0,.12); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav a { font-size: 1.1rem; padding: .7em .4em; }
  .site-nav .sub-menu { display: flex; position: static; box-shadow: none; border: 0; padding: 0 0 0 16px; }
  .site-nav .sub-menu a { font-size: 1rem; padding: .5em .4em; }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .site-logo img { height: 44px; }
  .news-grid, .show-row, .host-grid, .ad-formats { grid-template-columns: 1fr; }
  .player-vol, .player-status { display: none; }
  .episode { grid-template-columns: 64px 1fr auto; }
  .episode .cover { width: 64px; height: 64px; }
  .newsletter input { min-width: 0; }
  .slot { grid-template-columns: 1fr; gap: 2px; }
  .section { padding: 44px 0; }
  .hero { padding: 40px 0 48px; }
}
