/* Leave A Good One — static site
   Pure HTML + CSS. No frameworks, no trackers, no external requests. */

:root {
  --bg: #000000;
  --surface: #0c0c0d;
  --surface-2: #141416;
  --line: #232326;
  --text: #f2f2f0;
  --muted: #8f8f95;
  --accent: #d8ff4a;
  --radius: 14px;
  --maxw: 1080px;
  --font: "Helvetica Neue", Helvetica, "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; height: auto; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #000; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a:hover { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--text); }

.menu {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

/* ---------- Type ---------- */

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 7vw, 4.2rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.lead, .hero-intro {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
  margin-top: 22px;
}

.prose { color: #cfcfd2; max-width: 65ch; }

/* ---------- Sections ---------- */

.hero { padding: clamp(28px, 5vw, 52px) 0 clamp(32px, 6vw, 60px); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.page-intro { padding: clamp(28px, 5vw, 48px) 0 4px; }

.section { padding: clamp(32px, 5vw, 56px) 0; }

.section-head { margin-bottom: 34px; }
.section-head p { color: var(--muted); max-width: 58ch; margin-top: 12px; }

/* ---------- Releases ---------- */

.releases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.release-cover {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.release:hover .release-cover { border-color: var(--accent); }
.release-title { font-weight: 500; }
.release-meta { color: var(--muted); font-size: 14px; }

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-image img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

/* ---------- Table ---------- */

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 15px;
}

th, td {
  text-align: left;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  background: var(--surface-2);
}

tbody tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 500; white-space: nowrap; }
td.desc { color: var(--muted); min-width: 320px; }

.status {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  white-space: nowrap;
}
.status.active { color: var(--accent); border-color: rgba(216, 255, 74, 0.35); }

/* ---------- Posts ---------- */

.posts { display: grid; gap: 8px; }

.post {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.post:last-child { border-bottom: 1px solid var(--line); }

.post-date {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-top: 6px;
}
.post p { color: var(--muted); margin: 10px 0 0; max-width: 62ch; }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  min-height: 220px;
}
.card:hover { border-color: var(--accent); background: var(--surface-2); }
.card p { color: var(--muted); margin: 12px 0 0; font-size: 15px; }
.card-link { font-size: 14px; color: var(--accent); }

/* ---------- Sub nav + file list ---------- */

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.subnav a {
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}
.subnav a:hover { color: var(--text); border-color: #3a3a3f; }
.subnav a[aria-current="page"] { color: #000; background: var(--accent); border-color: var(--accent); }

.file-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.file-item:last-child { border-bottom: 0; }
.file-item small { color: var(--muted); font-size: 14px; }

/* ---------- Contact ---------- */

.contact { padding: clamp(28px, 5vw, 48px) 0 clamp(48px, 8vw, 80px); }

.contact-form {
  margin-top: 40px;
  max-width: 620px;
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font: inherit;
  font-size: 16px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder { color: #5a5a60; }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-2);
}

.btn-submit {
  display: inline-block;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 12px 26px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-submit:hover {
  background: transparent;
  color: var(--accent);
}

.form-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.contact-email-inline {
  color: var(--accent);
  border-bottom: 1px solid rgba(216, 255, 74, 0.4);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 32px 0 48px;
  font-size: 14px;
  color: var(--muted);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.socials { display: flex; gap: 20px; }
.socials a:hover { color: var(--text); }

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  .hero-grid,
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .releases,
  .cards { grid-template-columns: 1fr 1fr; }
  .post { grid-template-columns: 1fr; gap: 6px; }
  .post-date { padding-top: 0; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .menu { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0 6px;
    font-size: 16px;
  }
  .nav-links.open { display: flex; }
  .releases,
  .cards { grid-template-columns: 1fr; }
  .file-item { flex-direction: column; gap: 6px; }
}

/* ---------- Work grid (home) ---------- */

.works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.work { display: flex; flex-direction: column; }

.work-cover {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-2);
  overflow: hidden;
  margin-bottom: 14px;
}
.work-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-cover--empty {
  background:
    repeating-linear-gradient(135deg, var(--surface) 0 10px, var(--surface-2) 10px 20px);
}
.work:hover .work-cover { border-color: var(--accent); }

.work-title { font-size: 17px; font-weight: 500; margin: 0 0 4px; line-height: 1.3; }
.work-kind {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.work-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}
.work-links a:hover { color: #000; background: var(--accent); border-color: var(--accent); }

/* ---------- Progress bar ---------- */

.bar {
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  overflow: hidden;
  margin-bottom: 6px;
}
.bar span { display: block; height: 100%; background: var(--accent); }
td small { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ---------- Tags & post links ---------- */

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
}

.post h2 { font-size: 20px; margin: 0; font-weight: 500; line-height: 1.3; }
.post-link { color: var(--text); }
.post-link:hover { color: var(--accent); }

.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 14px; }
.back { margin-top: 40px; }
.back a { color: var(--muted); font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; }
.back a:hover { color: var(--accent); }

.highlight-link {
  color: var(--accent);
  border-bottom: 1px solid rgba(216, 255, 74, 0.4);
}
.highlight-link:hover { color: var(--text); border-bottom-color: var(--text); }

@media (max-width: 900px) {
  .works { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .works { grid-template-columns: 1fr; gap: 26px; }
}

/* tighter rhythm under page intros */
.page-intro + .section { padding-top: clamp(18px, 2.5vw, 26px); }
.hero + .section { padding-top: clamp(10px, 2vw, 20px); }
td.desc { min-width: 260px; }

/* ---------- Video cards ---------- */

.work-cover--video { position: relative; background: #000; }
.work-cover--video iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-play {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  position: relative;
}
.video-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}
.video-play:hover img { opacity: 1; }

.play-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--accent);
}
.play-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 15px solid var(--accent);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translateX(2px);
}
.video-play:hover .play-icon { background: rgba(216, 255, 74, 0.18); }

/* ---------- Tightened rhythm + full-width intro text ---------- */

.lead, .hero-intro { max-width: none; margin-top: 14px; }
.prose { max-width: none; }
.section-head p { max-width: none; }

.hero { padding: 18px 0 8px; }
.page-intro { padding: 18px 0 0; }
.section { padding: 26px 0 30px; }
.section-head { margin-bottom: 22px; }
.page-intro + .section { padding-top: 22px; }
.hero + .section { padding-top: 18px; }
.contact { padding: 18px 0 40px; }
.contact-form { margin-top: 26px; }
.site-footer { margin-top: 24px; }

table { min-width: 560px; }

/* Keep post text aligned with the contact form width; images/media stay narrower and left-aligned */
@media (min-width: 900px) {
  .prose > .article-cover,
  .prose > .article-video,
  .prose > .ann-figure,
  .prose > .gallery,
  .prose > .link-blocks,
  .prose > figure {
    max-width: 620px;
    margin-left: 0;
    margin-right: 0;
  }
}


/* ---------- Article extras ---------- */

.article-cover {
  margin: 0 0 22px;
}
.article-cover img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.link-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.link-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px;
}

.link-block h2 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.link-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-block li + li { margin-top: 8px; }

.link-block a {
  color: var(--accent);
  border-bottom: 1px solid rgba(216, 255, 74, 0.35);
}
.link-block a:hover { color: var(--text); border-bottom-color: var(--text); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: block;
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

@media (max-width: 640px) {
  .link-blocks,
  .gallery { grid-template-columns: 1fr; }
}


/* ---------- Article video embed ---------- */

.article-video { margin: 0 0 22px; }
.article-video .work-cover--video {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

/* ---------- Annihilation Reimagined long-form post ---------- */

.ann-post { /* inherits .prose max-width */ }


.ann-toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 22px;
  margin: 0 0 28px;
}
.ann-toc h2 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.ann-toc .toc-list { display: grid; gap: 2px; }
.ann-toc a {
  color: #cfcfd2;
  text-decoration: none;
  font-size: 15px;
  padding: 3px 0;
}
.ann-toc a:hover { color: var(--accent); }
.ann-toc .toc-l1 { padding-left: 16px; }
.ann-toc .toc-l2 { padding-left: 32px; font-size: 14px; color: var(--muted); }

.ann-post h2.ann-h1 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 48px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.ann-post h2.ann-h2 {
  font-size: clamp(22px, 3.2vw, 27px);
  margin: 40px 0 12px;
  color: var(--accent);
  scroll-margin-top: 90px;
}
.ann-post h3.ann-h3 {
  font-size: 18px;
  margin: 28px 0 10px;
  scroll-margin-top: 90px;
}

.ann-figure { margin: 20px 0 24px; }
.ann-media {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.ann-figure figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.ann-post .table-wrap { margin: 18px 0 26px; }
.ann-table { min-width: 520px; font-size: 14px; }
.ann-table th, .ann-table td { padding: 10px 14px; }

.ann-post .callout {
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 14px 16px;
  margin: 20px 0;
  color: #cfcfd2;
}

.ann-post ul, .ann-post ol { margin: 12px 0 18px; padding-left: 22px; }
.ann-post li { margin: 6px 0; }

.ann-toc summary {
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* ---------- Freebies ---------- */

.stamp { color: var(--muted); font-size: 13px; margin-top: 10px; text-transform: uppercase; letter-spacing: .06em; }

.filter {
  width: 100%;
  margin: 0 0 28px;
  padding: 12px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.filter:focus { outline: none; border-color: var(--accent); }

.fb-section { margin: 0 0 44px; }
.fb-heading {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.fb-note { color: var(--muted); margin: 0 0 18px; max-width: 74ch; }

.fb-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 22px;
  margin-bottom: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.fb-item[data-cover] { grid-template-columns: 160px 1fr; align-items: start; }
.item-cover img { width: 100%; border-radius: 10px; display: block; }
.item-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-bottom: 8px; }
.item-head h3 { margin: 0; font-size: 19px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}
.fb-item p { color: var(--muted); margin: 8px 0 0; max-width: 74ch; }
.fb-item ul { color: var(--muted); margin: 8px 0 0; padding-left: 18px; }
.fb-item li { margin: 4px 0; }
.install {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.6;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 14px !important;
  word-break: break-word;
}
.install span { color: var(--accent); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; margin-right: 8px; }
.item-shot { margin: 16px 0 0; }
.item-shot img { width: 100%; max-width: 620px; border-radius: 10px; border: 1px solid var(--line); display: block; }
.listen { font-size: 15px; }

.dl-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.dl {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.dl small { color: rgba(0,0,0,.6); font-weight: 500; }
.dl:hover { background: var(--text); }
.dl.is-missing { background: transparent; border: 1px dashed var(--line); color: var(--muted); font-weight: 500; }
.dl.is-missing small { color: var(--muted); }

.audio-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 12px; }
.audio-label { font-size: 14px; color: var(--muted); min-width: 190px; }
.audio-row audio { flex: 1; min-width: 240px; height: 36px; }

.notes-link { display: inline-block; margin-top: 16px; font-size: 14px; color: var(--accent); }
.notes-link:hover { color: var(--text); }

.link-group { margin: 0 0 22px; }
.link-group h3 { font-size: 15px; margin: 0 0 10px; }
.link-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.link-list li { border-bottom: 1px solid var(--line); }
.link-list a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 4px;
  color: var(--text);
  font-size: 15px;
}
.link-list a:hover { color: var(--accent); }
.link-list small { color: var(--muted); font-size: 12px; white-space: nowrap; }
.is-hidden { display: none !important; }

.fb-article { max-width: 74ch; }
.fb-article h2 { font-size: 20px; margin: 28px 0 8px; }
.fb-article h3 { font-size: 16px; margin: 22px 0 6px; color: var(--accent); }
.fb-article p { color: var(--muted); margin: 10px 0 0; }
.fb-article .fig img { width: 100%; border-radius: 10px; display: block; margin: 18px 0 0; }
.fb-article .sub { margin-top: 8px; }

@media (max-width: 680px) {
  .fb-item, .fb-item[data-cover] { grid-template-columns: 1fr; padding: 18px; }
  .item-cover img { max-width: 200px; }
  .audio-label { min-width: 0; }
  .dl { width: 100%; justify-content: space-between; }
}

/* ---------- Freebies: full-width text like Updates ---------- */
.fb-note,
.fb-item p,
.fb-item ul,
.fb-article,
.fb-article p { max-width: none; }

/* Contact: highlighted Linktree link, same size as lead text */
.contact-link {
  display: inline-block;
  margin-top: 22px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
