/* Junkyard Love Podcast — quiet long-form archive */
:root,
html[data-theme="light"] {
  --bg: #f4f0e8;
  --fg: #1a1714;
  --muted: #5c564e;
  --accent: #9a5a4a;
  --accent-soft: #c48778;
  --card: #fffdf8;
  --border: #ddd4c6;
  --link: #7a3f32;
  --link-hover: #5c2e24;
  --quote: #2a2622;
  --chip-hover-bg: #fff;
  --btn-fg: #fffdf8;
  --toggle-bg: transparent;
  --toggle-fg: var(--fg);
  --toggle-border: var(--border);
  --thumb-fallback: #e8e0d4;
  --shadow: 0 1px 2px rgba(26, 23, 20, 0.06);
}

html[data-theme="dark"] {
  --bg: #12100e;
  --fg: #ece7de;
  --muted: #a59e92;
  --accent: #c48778;
  --accent-soft: #d4a99a;
  --card: #1a1714;
  --border: #3a342e;
  --link: #d4a99a;
  --link-hover: #e8c4b6;
  --quote: #d8d2c8;
  --chip-hover-bg: #26221e;
  --btn-fg: #1a1412;
  --toggle-bg: #26221e;
  --toggle-fg: #ece7de;
  --toggle-border: #4a433c;
  --thumb-fallback: #2a2622;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

html { color-scheme: light dark; font-size: 18px; scroll-behavior: smooth; }
html[data-theme="dark"] { color-scheme: dark; }
html[data-theme="light"] { color-scheme: light; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Iowan Old Style", serif;
  line-height: 1.7;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 0.15em; }
a:hover { color: var(--link-hover); }

.wrap {
  max-width: 58rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 4rem;
}

@media (min-width: 900px) {
  .wrap { padding-left: 2rem; padding-right: 2rem; }
}

/* —— Header / nav —— */
header.site {
  border-bottom: 1px solid var(--border);
  background: var(--card);
  margin: -1.75rem -1.5rem 2.25rem;
  padding: 1.1rem 1.5rem 1rem;
}

@media (min-width: 900px) {
  header.site { margin-left: -2rem; margin-right: -2rem; padding-left: 2rem; padding-right: 2rem; }
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.brand {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-decoration: none;
}
.brand:hover { color: var(--link); text-decoration: none; }

nav.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
}
nav.nav-main a {
  margin-right: 0.85rem;
  text-decoration: none;
  color: var(--muted);
  padding: 0.15rem 0;
}
nav.nav-main a:hover,
nav.nav-main a[aria-current="page"] {
  color: var(--link);
  text-decoration: underline;
}

.theme-toggle {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid var(--toggle-border);
  background: var(--toggle-bg);
  color: var(--toggle-fg);
  cursor: pointer;
  line-height: 1.2;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* —— Typography —— */
h1, h2, h3 {
  line-height: 1.22;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.65rem, 4vw, 2.15rem); margin: 0 0 0.75rem; }
h2 {
  font-size: 1.2rem;
  margin: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  font-weight: 650;
}
h3 { font-size: 1.05rem; margin: 1.5rem 0 0.6rem; }

.lede, .thesis {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 0 1.25rem;
}
.meta, .note {
  color: var(--muted);
  font-size: 0.92rem;
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}
.browse-subtitle {
  margin: -0.25rem 0 0.85rem;
  font-size: 1.2rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

/* —— Cards —— */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.ep-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease;
  min-height: 100%;
}
a.ep-card:hover {
  border-color: var(--accent);
  text-decoration: none;
  color: inherit;
}
.ep-card-thumb {
  aspect-ratio: 16 / 9;
  background: var(--thumb-fallback);
  overflow: hidden;
  position: relative;
}
.ep-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ep-card-fallback {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem 1rem;
  height: 100%;
  font-family: system-ui, sans-serif;
  background: linear-gradient(160deg, var(--thumb-fallback), var(--card));
}
.ep-card-fallback .num {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ep-card-fallback .ftitle {
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.3;
  margin-top: 0.25rem;
  color: var(--fg);
}
.ep-card-body {
  padding: 0.85rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.ep-card-title {
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--fg);
  margin: 0;
}
.ep-card-meta {
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.15rem 1.25rem;
  margin: 1rem 0;
  box-shadow: var(--shadow);
}

.topic-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}
a.topic-card:hover {
  border-color: var(--accent);
  text-decoration: none;
  color: inherit;
}
.topic-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--link);
}
.topic-card .count {
  font-family: system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}
.topic-card .blurb {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.start-pack {
  display: block;
  padding: 1.15rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}
a.start-pack:hover {
  border-color: var(--accent);
  text-decoration: none;
  color: inherit;
}
.start-pack .pack-label {
  font-family: system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 0.35rem;
}
.start-pack h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--fg);
}
.start-pack p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* —— Buttons / actions —— */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.btn-row a, .btn, button.btn {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  background: var(--accent);
  color: var(--btn-fg);
  text-decoration: none;
  border-radius: 5px;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.3;
}
.btn-row a:hover, .btn:hover, button.btn:hover {
  filter: brightness(1.08);
  text-decoration: none;
  color: var(--btn-fg);
}
.btn-row a.secondary, .btn.secondary, button.btn.secondary {
  background: transparent;
  color: var(--link);
  border: 1px solid var(--border);
}
.btn-row a.secondary:hover, .btn.secondary:hover {
  border-color: var(--accent);
  color: var(--link-hover);
}

.listen a, .listen-links a {
  display: inline-block;
  margin: 0.25rem 0.85rem 0.25rem 0;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
}

/* —— Search —— */
.search-box {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
  max-width: 36rem;
}
.search-box input[type="search"] {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  color: var(--fg);
  font-family: system-ui, sans-serif;
}
.search-box input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.search-box button {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--accent);
  color: var(--btn-fg);
  cursor: pointer;
}
#search-results, #clip-results, #shuffle-result, #quote-spotlight {
  margin: 1rem 0 1.5rem;
}
.search-empty {
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

/* —— Pick a clip phrases —— */
.phrase-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem;
}
.phrase-cloud button {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--link);
  cursor: pointer;
  line-height: 1.3;
}
.phrase-cloud button:hover,
.phrase-cloud button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--chip-hover-bg);
}

.clip-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin: 0.75rem 0;
  box-shadow: var(--shadow);
}
.clip-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}
.clip-card .clip-ep {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.clip-card .clip-quote {
  margin: 0.5rem 0 0.75rem;
  font-style: italic;
  color: var(--quote);
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}

/* —— Quotes —— */
blockquote {
  margin: 1rem 0;
  padding: 0.65rem 0 0.65rem 1.15rem;
  border-left: 3px solid var(--accent);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--quote);
}
blockquote.pull-quote,
.quote-spotlight blockquote {
  font-size: 1.22rem;
  padding: 1rem 0 1rem 1.35rem;
  margin: 1.25rem 0;
}
.archive-picks .archive-quote {
  margin: 0.85rem 0;
  font-size: 1.05rem;
}
.archive-picks .archive-quote .speaker {
  font-style: normal;
  font-weight: 700;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  color: var(--accent);
}

/* —— Episode hero —— */
.ep-hero {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 720px) {
  .ep-hero {
    grid-template-columns: minmax(0, 280px) 1fr;
    align-items: start;
  }
}
.ep-hero-media {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--thumb-fallback);
  aspect-ratio: 16 / 9;
}
.ep-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ep-hero-media .ep-card-fallback { min-height: 100%; }
.badge-solo {
  display: inline-block;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.yt-embed {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  margin: 1rem 0 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.yt-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Topic chips —— */
.topic-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.5rem;
  margin: 0.85rem 0 1.1rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
}
.topic-chips-label {
  color: var(--muted);
  margin-right: 0.15rem;
  font-weight: 600;
}
.topic-chip {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--link);
  text-decoration: none;
  line-height: 1.4;
}
.topic-chip:hover {
  border-color: var(--accent);
  text-decoration: none;
  background: var(--chip-hover-bg);
}

/* —— Lists (kept for compatibility) —— */
ul.plain, ul.list { padding-left: 1.2rem; }
ul.list li { margin: 0.65rem 0; }
.chapters li { margin: 0.35rem 0; }
.about { white-space: normal; }
.about p { margin: 0 0 1rem; line-height: 1.7; }
.about p:last-child { margin-bottom: 0; }

.transcript p, .transcript .turn { margin: 0.85rem 0; }
.transcript .speaker {
  font-weight: 700;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--accent);
}
.transcript time, .transcript .ts {
  font-family: ui-monospace, monospace;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.section-head h2 { margin-top: 0; flex: 1; }
.section-head .more {
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

/* —— Footer —— */
footer.site {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
  text-align: center;
}
footer.site .motto {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--fg);
  letter-spacing: 0.01em;
}
footer.site .footer-links {
  margin: 0;
  font-size: 0.82rem;
}
footer.site .footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin: 0 0.35rem;
}
footer.site .footer-links a:hover { color: var(--link); text-decoration: underline; }

/* —— Mobile —— */
@media (max-width: 520px) {
  html { font-size: 17px; }
  .wrap { padding: 1.25rem 1rem 3rem; }
  header.site { margin: -1.25rem -1rem 1.75rem; padding: 1rem; }
  nav.nav-main { font-size: 0.84rem; gap: 0.2rem; }
  nav.nav-main a { margin-right: 0.65rem; }
  .search-box { flex-direction: column; }
  .ep-card-title { font-size: 0.95rem; }
  blockquote.pull-quote, .quote-spotlight blockquote { font-size: 1.1rem; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

.archive-picks h3 {
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
  border: 0;
  padding: 0;
}
.archive-picks h3:first-child { margin-top: 0.25rem; }

/* —— Listen by mood / Chapter radio —— */
.mood-doors {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}
a.mood-chip,
button.mood-chip {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--link);
  cursor: pointer;
  line-height: 1.3;
  text-decoration: none;
  display: inline-block;
}
a.mood-chip:hover,
button.mood-chip:hover,
button.mood-chip[aria-pressed="true"],
a.mood-chip[aria-current="true"] {
  border-color: var(--accent);
  background: var(--chip-hover-bg);
}
.mood-results {
  margin: 0.5rem 0 1.5rem;
}
.radio-playlist {
  margin: 0.75rem 0 1.5rem;
}
.radio-row {
  margin: 0.65rem 0;
}


/* —— Chapter radio on-page player —— */
.radio-card-slot {
  margin: 1rem 0 1.5rem;
  min-height: 2rem;
}
.radio-now-playing .radio-embed,
.radio-card-slot .yt-embed {
  margin-top: 0.85rem;
}
.radio-subjects button.mood-chip[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--chip-hover-bg);
}

/* —— Ship 1: wider desktop + homepage hierarchy —— */
.wrap-wide {
  max-width: 72rem;
}
@media (min-width: 1100px) {
  .wrap-wide {
    max-width: 78rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .wrap-wide header.site {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .wrap-wide .card-grid.cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1.35rem;
  }
}

.header-row-home {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1.25rem;
}
.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.search-box-header {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  margin: 0;
}
.search-box-header input[type="search"] {
  min-width: min(18rem, 52vw);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
}
.search-box-header button {
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--accent);
  color: var(--btn-fg);
  cursor: pointer;
}
@media (max-width: 720px) {
  .header-tools {
    width: 100%;
    margin-left: 0;
  }
  .search-box-header {
    width: 100%;
  }
  .search-box-header input[type="search"] {
    flex: 1;
    min-width: 0;
  }
}

.hero-tagline {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 0.35rem;
  color: var(--fg);
}
.show-name-sub {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--muted);
  margin: 0 0 1.15rem;
  letter-spacing: 0.01em;
}
.home-intro {
  max-width: 44rem;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.home-intro p { margin: 0 0 0.85rem; }

.quote-spotlight {
  position: relative;
  margin: 0 0 1.75rem;
  padding: 1.1rem 1.2rem 1.2rem;
}
.quote-spotlight .quote-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.65rem;
}
.btn-small,
button.btn-small {
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.about-show {
  margin-top: 2.5rem;
  max-width: 44rem;
}
.about-show h2 { margin-top: 0; }

.search-hint {
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.88rem;
  margin: 0.35rem 0 0;
}

/* Guest / about link lists — normal spacing */
ul.links li {
  margin: 0.35rem 0;
  line-height: 1.5;
}
ul.links a {
  margin-right: 0.15rem;
}

@media (max-width: 639px) {
  .wrap-wide .card-grid,
  .wrap-wide .card-grid.cols-3 {
    grid-template-columns: 1fr;
  }
}


/* Donate + homepage about cleanup */
.donate-page { max-width: 36rem; margin: 0 auto; }
.donate-lede {
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0.75rem 0 1.5rem;
  font-style: normal;
}
.donate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.donate-btn {
  display: block;
  text-align: center;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  min-height: 3rem;
}
.donate-qr {
  text-align: center;
  margin-bottom: 1.25rem;
}
.donate-qr img {
  display: block;
  margin: 0 auto 0.75rem;
  width: min(280px, 85vw);
  height: auto;
  border-radius: 12px;
  background: #fff;
}
.donate-apple h2 { font-size: 1.1rem; margin-top: 0; }
.about-top {
  max-width: 42rem;
  margin: 0.75rem 0 1.5rem;
  font-style: normal;
}
.about-top p {
  margin: 0 0 0.85rem;
  line-height: 1.55;
  font-style: normal;
}
.about-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.9rem !important;
}
.home-donate-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
}
.donate-strip-copy { margin: 0; }
.donate-strip-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.donate-qr-thumb img {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
}
@media (min-width: 900px) {
  .wrap-wide {
    max-width: 64rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 639px) {
  .donate-actions { gap: 0.65rem; }
  .donate-btn { width: 100%; }
  .home-donate-strip { flex-direction: column; align-items: stretch; }
  .donate-strip-row { justify-content: space-between; }
  .nav-main { flex-wrap: wrap; row-gap: 0.35rem; }
}


/* Quiet tip page */
.donate-quiet .donate-lede {
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0.5rem 0 1.25rem;
}
.donate-links {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 28rem;
}
.donate-links li {
  margin: 0 0 1rem;
  line-height: 1.5;
}
.donate-links a {
  font-size: 1.05rem;
}
.donate-qr-small {
  margin-top: 0.5rem;
}
.donate-qr-small img {
  display: block;
  width: 140px;
  height: auto;
  border-radius: 8px;
  background: #fff;
}
.nav-tip { opacity: 0.9; }
.home-donate-strip { display: none; }

.radio-auto-label { cursor: pointer; user-select: none; }
.radio-auto-label input { margin-right: 0.4rem; vertical-align: middle; }
#radio-yt-player, #radio-yt-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 200px;
  border: 0;
  border-radius: 8px;
  background: #000;
}


/* Good Room guest portraits */
.guest-portrait-wrap { margin: 0.75rem 0 1rem; }
img.guest-portrait {
  display: block;
  width: min(100%, 320px);
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border, #444);
}
.guest-alias { margin-top: -0.35rem; }
.also-made-item { margin: 0.35rem 0 0.75rem; }
.clip-permission { margin-top: 2rem; opacity: 0.85; }
