/* Soul & Heart — static site stylesheet */
:root {
  --bg: #FFFFFF;
  --surface: #F6F7FA;
  --tint: #F4F4FC;
  --tint-border: #E6E5F7;
  --text: #171B35;
  --text-2: #4A5264;
  --text-3: #60697A;
  --accent: #4940E8;
  --accent-hover: #3A32C4;
  --accent-soft: #C9C6F7;
  --divider: #E5E7EE;
  --logo: #1E1C5A;
  --gold: #B08D57;
  --gold-light: #C9A66B;
  --navy: #171B35;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --container: 1232px;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--text); margin: 0; letter-spacing: -0.015em; }
p { margin: 0; }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: calc(var(--container) + 48px); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 808px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--accent); color: #fff; padding: 8px 16px; border-radius: var(--radius); z-index: 10; }
.skip:focus { left: 16px; color: #fff; }

/* Logo */
.logo { display: inline-flex; align-items: flex-start; gap: 3px; color: var(--logo); }
.logo:hover { color: var(--logo); }
.logo-word { font-family: var(--serif); font-size: 28px; font-weight: 600; letter-spacing: -0.01em; line-height: 1; }
.logo-word em { font-style: italic; font-weight: 400; }
.logo svg { width: 11px; height: 11px; margin-top: -3px; flex-shrink: 0; }
.logo svg path { fill: var(--gold); }
.logo--light, .logo--light:hover { color: #fff; }
.logo--light svg path { fill: var(--gold-light); }

/* Header */
.site-header { border-bottom: 1px solid var(--divider); background: var(--bg); position: sticky; top: 0; z-index: 5; }
.site-header .container { height: 88px; display: flex; align-items: center; }
.main-nav { margin-left: auto; display: flex; gap: 40px; font-size: 16px; font-weight: 500; }
.main-nav a { color: var(--text); padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--accent); }
.main-nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }
.header-actions { margin-left: 48px; display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 44px; height: 44px; border: 0; background: transparent; display: inline-flex; align-items: center; justify-content: center; color: var(--text); cursor: pointer; border-radius: var(--radius); }
.icon-btn:hover { background: var(--surface); color: var(--text); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 46px; padding: 0 24px; border-radius: var(--radius); font-size: 15px; font-weight: 600; border: 1.5px solid var(--accent); cursor: pointer; white-space: nowrap; transition: background .15s, color .15s; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
.btn-outline { background: #fff; color: var(--accent); }
.btn-outline:hover { background: var(--tint); color: var(--accent); }
.btn-sm { height: 44px; padding: 0 20px; }
.btn-lg { height: 50px; padding: 0 26px; font-size: 16px; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; gap: 8px; font-size: 16px; font-weight: 600; color: var(--accent); }

/* Typography helpers */
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.eyebrow-line { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-line::before { content: ""; width: 28px; height: 2px; background: var(--accent); }
.muted { color: var(--text-3); }
.lead { font-size: 20px; line-height: 1.55; color: var(--text-3); }

/* Sections */
.section { padding: 96px 0; }
.section--band { background: var(--surface); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.section-head h2 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; }
.section-head p { margin-top: 10px; font-size: 18px; color: var(--text-3); }
.section-head .actions { display: flex; align-items: center; gap: 28px; }

/* Page hero (inner pages) */
.page-hero { padding: 80px 0 56px; border-bottom: 1px solid var(--divider); }
.page-hero h1 { font-size: 60px; line-height: 1.08; letter-spacing: -0.025em; }
.page-hero .lead { margin-top: 16px; max-width: 640px; }
.breadcrumb { font-size: 14px; color: var(--text-3); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-3); }
.breadcrumb a:hover { color: var(--accent); }

/* Home hero */
.home-hero { padding: 72px 0 96px; }
.home-hero h1 { font-size: 72px; line-height: 1.06; letter-spacing: -0.025em; }
.home-hero .lead { margin-top: 20px; font-size: 22px; }
.feature { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 720px); gap: 56px; align-items: center; }
.feature h2 { margin-top: 20px; font-size: 48px; line-height: 1.1; letter-spacing: -0.02em; }
.feature p.excerpt { margin-top: 20px; font-size: 18px; line-height: 1.65; color: var(--text-2); }
.feature .btn { margin-top: 32px; }
.feature-img { width: 100%; aspect-ratio: 720 / 440; object-fit: cover; border-radius: var(--radius-lg); }
.byline { margin-top: 28px; display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-3); flex-wrap: wrap; }
.byline strong { color: var(--text); font-weight: 500; }

/* Avatars (initials placeholders) */
.avatar { flex-shrink: 0; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 500; }
.avatar-32 { width: 32px; height: 32px; font-size: 12px; }
.avatar-44 { width: 44px; height: 44px; font-size: 16px; }
.avatar-104 { width: 104px; height: 104px; font-size: 37px; }
.avatar-160 { width: 160px; height: 160px; font-size: 56px; }
.tone-indigo { background: #ECEAF7; color: #4A45A8; }
.tone-green { background: #E6EEEB; color: #3E6A5C; }
.tone-blue { background: #E7ECF4; color: #3F5A86; }
.tone-sand { background: #F3ECE3; color: #8A6538; }

/* Podcast strip */
.podcast-strip { margin-top: 56px; background: var(--tint); border: 1px solid var(--tint-border); border-radius: var(--radius-xl); padding: 24px 32px 24px 24px; display: flex; align-items: center; gap: 28px; }
.pod-cover { width: 112px; height: 112px; flex-shrink: 0; border-radius: 10px; background: var(--logo); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #fff; }
.pod-cover svg path { fill: var(--gold-light); }
.pod-cover .t { font-family: var(--serif); font-size: 17px; font-weight: 500; line-height: 1; }
.pod-cover .t em { font-style: italic; font-weight: 400; }
.pod-cover .s { font-size: 8px; letter-spacing: 0.26em; font-weight: 600; color: var(--gold-light); }
.pod-cover--lg { width: 280px; height: 280px; border-radius: var(--radius-xl); gap: 16px; }
.pod-cover--lg svg { width: 36px; height: 36px; }
.pod-cover--lg .t { font-size: 38px; }
.pod-cover--lg .s { font-size: 14px; }
.pod-info { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.pod-info .title { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1.15; }
.pod-info .meta { font-size: 15px; color: var(--text-3); }
.play-btn { width: 64px; height: 64px; flex-shrink: 0; border: 0; border-radius: 50%; background: var(--accent); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; }
.play-btn:hover { background: var(--accent-hover); color: #fff; }
.play-btn svg { margin-left: 3px; }
.play-btn--sm { width: 48px; height: 48px; }
.wave { flex-shrink: 1; min-width: 0; }
.pod-divider { margin-left: auto; height: 64px; width: 1px; background: #DCDBF0; flex-shrink: 0; }

/* Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.card { background: #fff; border: 1px solid var(--divider); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.event-media { position: relative; }
.event-media img { width: 100%; height: 240px; object-fit: cover; }
.date-badge { position: absolute; top: 20px; left: 20px; width: 68px; height: 72px; border-radius: 10px; background: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; box-shadow: 0 2px 8px rgba(23, 27, 53, 0.12); }
.date-badge .d { font-family: var(--serif); font-size: 30px; font-weight: 500; line-height: 1; color: var(--text); }
.date-badge .m { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.card-body { padding: 28px; display: flex; flex-direction: column; flex-grow: 1; }
.card-body h3 { font-size: 26px; line-height: 1.2; }
.card-body h3 a { color: var(--text); }
.card-body h3 a:hover { color: var(--accent); }
.meta-list { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 16px; color: var(--text-2); }
.meta-list li { display: flex; align-items: center; gap: 12px; }
.meta-list svg { color: var(--text-3); flex-shrink: 0; }
.card-body .btn { margin-top: 28px; align-self: flex-start; }
.card-body .push { margin-top: auto; }

.post { display: flex; flex-direction: column; color: var(--text); }
.post:hover { color: var(--text); }
.post:hover .post-title { color: var(--accent); }
.post img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-lg); }
.post .eyebrow { margin-top: 24px; font-size: 12px; }
.post-title { margin-top: 10px; font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1.25; transition: color .15s; }
.post-excerpt { margin-top: 10px; font-size: 16px; color: var(--text-2); }
.post .byline { margin-top: 16px; }

.author-card { background: #fff; border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 36px 28px 32px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.author-card h3 { margin-top: 20px; font-size: 23px; }
.author-card p { margin-top: 8px; font-size: 15px; line-height: 1.5; color: var(--text-3); min-height: 45px; }
.author-card .link-arrow { margin-top: 20px; font-size: 15px; }

/* Tabs */
.tabs { border-bottom: 1px solid var(--divider); display: flex; gap: 36px; font-size: 15px; font-weight: 500; overflow-x: auto; margin-bottom: 40px; }
.tabs a { padding: 14px 0; color: var(--text-2); white-space: nowrap; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tabs a:hover { color: var(--accent); }
.tabs a[aria-current="true"] { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }

/* Originals / Stories */
.originals { min-height: 300px; border-radius: var(--radius-xl); background: #EFEEFB; overflow: hidden; display: flex; align-items: stretch; }
.originals .text { padding: 48px 56px; flex: 1 1 560px; display: flex; flex-direction: column; justify-content: center; }
.originals h2 { margin-top: 16px; font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; }
.originals p { margin-top: 16px; font-size: 17px; color: var(--text-2); }
.originals .btn { margin-top: 24px; align-self: flex-start; }
.originals .art { flex: 0 1 592px; align-self: flex-end; }
.stories { margin-top: 24px; border: 1px solid var(--divider); border-radius: var(--radius-xl); padding: 36px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.stories h3 { margin-top: 10px; font-size: 34px; line-height: 1.15; }
.stories p { margin-top: 10px; font-size: 17px; color: var(--text-2); }

/* Article page */
.article-head { padding: 72px 0 48px; }
.article-head h1 { margin-top: 16px; font-size: 60px; line-height: 1.08; letter-spacing: -0.025em; }
.article-head .lead { margin-top: 20px; }
.article-cover { width: 100%; aspect-ratio: 1232 / 560; object-fit: cover; border-radius: var(--radius-lg); }
.prose { font-size: 19px; line-height: 1.75; color: #2A2F48; }
.prose p + p { margin-top: 24px; }
.prose h2 { font-size: 32px; margin: 48px 0 16px; }
.prose blockquote { margin: 40px 0; padding: 8px 0 8px 28px; border-left: 2px solid var(--gold); font-family: var(--serif); font-size: 28px; font-style: italic; line-height: 1.4; color: var(--text); }
.prose ul { padding-left: 22px; margin: 20px 0; }
.prose li + li { margin-top: 8px; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
.tag { font-size: 14px; padding: 6px 14px; border: 1px solid var(--divider); border-radius: 999px; color: var(--text-2); }
.tag:hover { border-color: var(--accent); color: var(--accent); }
.author-box { margin-top: 56px; padding: 32px; border: 1px solid var(--divider); border-radius: var(--radius-lg); display: flex; gap: 24px; align-items: center; }
.author-box h3 { font-size: 22px; }
.author-box p { margin-top: 6px; font-size: 16px; color: var(--text-3); }

/* Detail layout with sidebar */
.with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: start; }
.aside-box { border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 28px; background: #fff; position: sticky; top: 120px; }
.aside-box h3 { font-size: 24px; }
.aside-box .meta-list { margin-top: 20px; }
.aside-box .btn { margin-top: 28px; }
.aside-note { margin-top: 16px; font-size: 14px; color: var(--text-3); }

/* Forms */
.form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 15px; font-weight: 600; color: var(--text); }
.field .hint { font-size: 14px; color: var(--text-3); }
.input { width: 100%; height: 50px; padding: 0 16px; border: 1.5px solid #D5D9E3; border-radius: var(--radius); background: #fff; font-size: 16px; color: var(--text); }
textarea.input { height: auto; min-height: 160px; padding: 14px 16px; resize: vertical; line-height: 1.6; }
select.input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2360697A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(73, 64, 232, 0.15); }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-2); }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--accent); flex-shrink: 0; }
.form-card { border: 1px solid var(--divider); border-radius: var(--radius-lg); padding: 40px; background: #fff; }
.auth-wrap { min-height: calc(100vh - 88px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.auth-side { background: var(--surface) center / cover no-repeat; position: relative; }
.auth-side img { width: 100%; height: 100%; object-fit: cover; }
.auth-main { display: flex; align-items: center; justify-content: center; padding: 64px 24px; }
.auth-box { width: 100%; max-width: 420px; }
.auth-box h1 { font-size: 44px; line-height: 1.1; }
.auth-box .lead { margin-top: 12px; font-size: 18px; }
.auth-box .form { margin-top: 36px; }
.form-foot { font-size: 15px; color: var(--text-3); text-align: center; }

/* Info lists / steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; counter-reset: s; }
.steps li { counter-increment: s; border-top: 2px solid var(--text); padding-top: 24px; }
.steps li::before { content: counter(s, decimal-leading-zero); display: block; font-family: var(--serif); font-size: 20px; color: var(--accent); margin-bottom: 12px; }
.steps h3 { font-size: 24px; }
.steps p { margin-top: 8px; font-size: 16px; color: var(--text-2); }

.episode { display: grid; grid-template-columns: auto 88px minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 24px 0; border-bottom: 1px solid var(--divider); }
.episode:first-child { border-top: 1px solid var(--divider); }
.episode .num { font-family: var(--serif); font-size: 22px; color: var(--text-3); width: 36px; }
.episode .pod-cover { width: 88px; height: 88px; gap: 6px; }
.episode .pod-cover .t { font-size: 13px; }
.episode .pod-cover .s { font-size: 7px; }
.episode h3 { font-size: 24px; }
.episode p { margin-top: 6px; font-size: 16px; color: var(--text-2); }
.episode .meta { margin-top: 8px; font-size: 14px; color: var(--text-3); }

.list-rows { display: flex; flex-direction: column; }
.row-item { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 32px; align-items: center; padding: 32px 0; border-bottom: 1px solid var(--divider); color: var(--text); }
.row-item:first-child { padding-top: 0; }
.row-item:hover { color: var(--text); }
.row-item:hover h3 { color: var(--accent); }
.row-item img { width: 100%; height: 184px; object-fit: cover; border-radius: var(--radius-lg); }
.row-item h3 { margin-top: 10px; font-size: 28px; line-height: 1.2; transition: color .15s; }
.row-item p { margin-top: 10px; font-size: 16px; color: var(--text-2); }

.pagination { margin-top: 56px; display: flex; gap: 8px; justify-content: center; }
.pagination a, .pagination span { min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--divider); border-radius: var(--radius); font-size: 15px; font-weight: 500; color: var(--text); }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination [aria-current="page"] { background: var(--accent); border-color: var(--accent); color: #fff; }

.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 24px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--tint); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-list strong { display: block; font-size: 15px; }
.contact-list span { color: var(--text-3); font-size: 16px; }

.values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.value { padding: 32px; border: 1px solid var(--divider); border-radius: var(--radius-lg); background: #fff; }
.value h3 { font-size: 24px; }
.value p { margin-top: 10px; font-size: 16px; color: var(--text-2); }

.legal { font-size: 17px; line-height: 1.75; color: #2A2F48; }
.legal h2 { font-size: 28px; margin: 48px 0 12px; }
.legal p + p { margin-top: 16px; }
.placeholder-note { padding: 16px 20px; border-radius: var(--radius); background: #FFF8EC; border: 1px solid #F1E0BF; color: #6B5220; font-size: 15px; }

.notice { padding: 20px 24px; border-radius: var(--radius-lg); background: var(--tint); border: 1px solid var(--tint-border); font-size: 16px; color: var(--text-2); }

/* Footer */
.site-footer { background: var(--navy); color: #B4B9CC; }
.footer-grid { padding: 80px 0 56px; display: grid; grid-template-columns: 380px repeat(4, minmax(0, 1fr)); gap: 32px; }
.footer-brand p { margin-top: 20px; max-width: 320px; font-size: 16px; line-height: 1.65; }
.footer-col h2 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; font-size: 15px; }
.footer-col a { color: #B4B9CC; }
.footer-col a:hover { color: #fff; }
.footer-col li { display: flex; align-items: center; gap: 10px; }
.footer-col li a { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom { padding: 28px 0 40px; border-top: 1px solid #2E3352; display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: #8D93AB; flex-wrap: wrap; }
.footer-bottom nav { display: flex; gap: 28px; }
.footer-bottom a { color: #8D93AB; }
.footer-bottom a:hover { color: #fff; }

/* Responsive */
@media (max-width: 1180px) {
  .main-nav { gap: 28px; }
  .header-actions { margin-left: 28px; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .wave, .pod-divider { display: none; }
  .podcast-strip .btn { margin-left: auto; }
}
@media (max-width: 960px) {
  .main-nav { display: none; }
  .header-actions { margin-left: auto; }
  .home-hero h1 { font-size: 52px; }
  .page-hero h1, .article-head h1 { font-size: 44px; }
  .feature, .with-aside, .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .aside-box { position: static; }
  .grid-3, .values, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .originals { flex-direction: column; }
  .originals .art { align-self: stretch; }
  .originals .art svg { width: 100%; height: auto; }
  .row-item { grid-template-columns: 200px minmax(0, 1fr); }
  .section-head h2 { font-size: 36px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }
  .site-header .container { height: 72px; }
  .logo-word { font-size: 23px; }
  .header-actions .btn-outline, .header-actions .icon-btn { display: none; }
  .home-hero { padding: 48px 0 64px; }
  .home-hero h1 { font-size: 40px; }
  .feature h2 { font-size: 34px; }
  .grid-3, .grid-4, .grid-2, .values, .steps, .form-row { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .podcast-strip { flex-wrap: wrap; padding: 20px; }
  .pod-info .title { font-size: 24px; }
  .originals .text { padding: 36px 24px; }
  .originals h2 { font-size: 34px; }
  .stories { flex-direction: column; align-items: flex-start; padding: 28px 24px; }
  .row-item { grid-template-columns: 1fr; }
  .episode { grid-template-columns: 88px minmax(0, 1fr); }
  .episode .num, .episode .play-btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 24px; }
  .page-hero { padding: 56px 0 40px; }
  .page-hero h1, .article-head h1 { font-size: 36px; }
  .prose { font-size: 18px; }
}
