/* MyPickyFork — design system */

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #ebebeb;
  --gray-400: #999999;
  --gray-600: #555555;
  --gray-900: #1a1a1a;

  --bg: var(--white);
  --text: var(--gray-900);
  --text-muted: var(--gray-600);
  --text-faint: var(--gray-400);
  --border: var(--gray-200);

  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: clamp(1.625rem, 1.5vw + 1rem, 2rem);
  --text-3xl: clamp(2rem, 2.5vw + 1rem, 2.75rem);

  --leading-tight: 1.2;
  --leading-normal: 1.6;
  --leading-relaxed: 1.7;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  --content: 38rem;
  --content-wide: 48rem;
  --page-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 3.75rem;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: var(--page-gutter);
  top: -100%;
  padding: var(--space-2) var(--space-4);
  background: var(--black);
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-sm);
  z-index: 200;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ── Typography ── */

.t-display,
.hero-title,
.page-title,
.review-title {
  margin: 0 0 var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--black);
}

.t-lede,
.hero-lede,
.page-lede {
  margin: 0;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

.t-lede strong,
.hero-lede strong {
  color: var(--black);
  font-weight: 600;
}

.t-heading,
.subsection-title,
.home-latest-head h2,
.review-scores-heading {
  margin: 0 0 var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.t-body,
.page-copy {
  margin: 0 0 var(--space-4);
  color: var(--text);
  line-height: var(--leading-relaxed);
}

.page-copy:last-child {
  margin-bottom: 0;
}

.page-copy a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.t-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.text-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.text-link:hover {
  color: var(--text-muted);
}

/* ── Shell / layout ── */

#main {
  flex: 1;
  width: 100%;
}

.shell {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-8) var(--page-gutter);
}

.shell--narrow {
  max-width: var(--content);
}

.shell--home {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.page-main {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-7) var(--page-gutter) var(--space-8);
}

.page-main--prose {
  max-width: var(--content);
}

.page-section {
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}

.page-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.page-header {
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.page-header .page-title {
  margin-bottom: var(--space-3);
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 100%;
  max-width: calc(var(--content-wide) + var(--page-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--black);
  white-space: nowrap;
}

.logo:hover {
  opacity: 0.7;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: var(--space-1) 0;
}

.site-nav a:hover {
  color: var(--black);
}

.site-nav a[aria-current="page"] {
  color: var(--black);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 16px;
}

.nav-toggle-bars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
}

.site-header.is-nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-toggle-bars span {
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: calc(-1 * var(--page-gutter));
    right: calc(-1 * var(--page-gutter));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-2) var(--page-gutter) var(--space-4);
    background: var(--white);
    border-bottom: 1px solid var(--border);
  }

  .site-header.is-nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4) var(--space-6);
  max-width: calc(var(--content-wide) + var(--page-gutter) * 2);
  margin: 0 auto;
  padding: var(--space-5) var(--page-gutter);
}

.footer-brand {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-siblings {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer-siblings a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-siblings a:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-5);
}

.footer-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--black);
}

/* ── Home ── */

.hero {
  padding-bottom: var(--space-7);
  margin-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}

.hero--home {
  text-align: left;
}

.hero--home .hero-title {
  max-width: 22rem;
  margin-left: 0;
  margin-right: 0;
}

.hero--home .hero-lede {
  max-width: 40rem;
  margin: 0 0 var(--space-6);
}

.hero-title {
  max-width: 14em;
  margin-left: auto;
  margin-right: auto;
}

.hero-lede {
  max-width: 36rem;
  margin: 0 auto var(--space-6);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.hero-actions-left {
  justify-content: flex-start;
}

.home-block {
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
}

.home-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.home-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.home-block-head .subsection-title {
  margin-bottom: 0;
}

.home-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 720px) {
  .home-points {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.home-point-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--black);
}

.home-point-copy {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

.home-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
}

.home-categories li {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  line-height: var(--leading-normal);
}

.home-categories li:last-child {
  border-bottom: none;
}

.home-categories strong {
  color: var(--black);
  font-weight: 600;
}

.home-empty {
  margin: 0;
  padding: var(--space-5) var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
  border: 1px solid var(--border);
  line-height: var(--leading-relaxed);
}

.home-empty a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-quote {
  margin: 0 0 var(--space-4);
  padding: 0;
  border: none;
}

.home-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text);
}

.home-trust-note {
  margin: 0 0 var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.home-trust-link {
  margin: 0;
}

.home-cta .page-copy {
  max-width: 36rem;
}

.home-latest {
  margin-bottom: var(--space-7);
}

.home-latest-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}

.home-latest-head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s var(--ease);
}

.btn:hover {
  opacity: 0.8;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--black);
  opacity: 1;
}

/* ── Lists (reviews index) ── */

.review-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-row {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s var(--ease);
}

.review-row:first-child {
  border-top: 1px solid var(--border);
}

.review-row:hover {
  background: var(--gray-100);
  margin-left: calc(-1 * var(--space-4));
  margin-right: calc(-1 * var(--space-4));
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.review-row-top {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}

.review-row-score {
  flex-shrink: 0;
  width: 2.75rem;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.review-row-name {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--black);
  line-height: var(--leading-tight);
}

.review-row-meta {
  margin: 0 0 var(--space-2);
  padding-left: calc(2.75rem + var(--space-4));
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.review-row-verdict {
  margin: 0;
  padding-left: calc(2.75rem + var(--space-4));
  font-size: var(--text-base);
  color: var(--text);
  line-height: var(--leading-relaxed);
}

.review-row-flag {
  display: inline;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
}

.review-row-flag::after {
  content: " · ";
}

/* ── Browse toolbar ── */

.browse-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.browse-header .page-title {
  margin-bottom: var(--space-2);
}

.browse-controls {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.browse-count {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.browse-sort-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.browse-sort {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: var(--space-1) var(--space-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
}

.browse-status {
  margin: 0 0 var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.browse-status.is-empty {
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.browse-note {
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .review-row-meta,
  .review-row-verdict {
    padding-left: 0;
  }

  .review-row-top {
    flex-direction: column;
    gap: var(--space-1);
  }
}

/* ── Single review ── */

.review-article-shell {
  max-width: var(--content);
}

.review-loading,
.review-empty {
  color: var(--text-muted);
}

.review-header {
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.review-header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.review-title {
  margin: 0;
  flex: 1;
  min-width: min(100%, 16rem);
}

.review-score-block {
  text-align: right;
  flex-shrink: 0;
}

.review-score-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

.review-score-label {
  margin: var(--space-1) 0 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.review-meta-line {
  margin: 0 0 var(--space-1);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.review-meta-line:last-of-type {
  margin-bottom: 0;
}

.review-verdict {
  margin: var(--space-5) 0 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-relaxed);
  color: var(--text);
}

.review-return {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--black);
}

.review-disclosure {
  margin-bottom: var(--space-6);
}

.disclosure {
  margin: 0;
  padding: var(--space-4) var(--space-5);
  border-left: 2px solid var(--black);
  background: var(--gray-100);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text);
}

.disclosure p {
  margin: 0;
}

.disclosure p + p {
  margin-top: var(--space-3);
}

.review-scores {
  margin-bottom: var(--space-7);
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.score-table th,
.score-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.score-table th {
  font-weight: 600;
  color: var(--text-muted);
  width: 70%;
}

.score-table td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--black);
  text-align: right;
  width: 30%;
}

.score-table tr:last-child th,
.score-table tr:last-child td {
  border-bottom: none;
}

.review-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.review-section h2 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-section p {
  margin: 0;
  line-height: var(--leading-relaxed);
  color: var(--text);
}

.review-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

/* ── Scale / rubric ── */

.bullet-list {
  margin: 0;
  padding-left: 1.125rem;
  color: var(--text);
  line-height: var(--leading-relaxed);
}

.bullet-list li {
  margin-bottom: var(--space-3);
}

.bullet-list li:last-child {
  margin-bottom: 0;
}

.bullet-list strong {
  font-weight: 600;
  color: var(--black);
}

.score-rubric {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
}

.score-rubric-item {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border);
}

.score-rubric-item:last-child {
  border-bottom: none;
}

.score-rubric-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-2);
}

.score-rubric-title {
  margin: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.score-rubric-weight {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

.score-rubric-copy {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.legend-wrap {
  border: 1px solid var(--border);
  overflow: hidden;
}

.legend {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.legend th,
.legend td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
}

.legend th {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--gray-100);
}

.legend td:first-child {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  width: 7rem;
}

.legend tr:last-child td,
.legend tr:last-child th {
  border-bottom: none;
}

/* ── Tiers (scale page static + submit) ── */

.tiers {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--border);
}

@media (min-width: 640px) {
  .tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .tiers {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tier {
  padding: var(--space-5);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

@media (min-width: 640px) {
  .tier {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .tier:nth-child(2n) {
    border-right: none;
  }

  .tier:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (min-width: 960px) {
  .tier {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }

  .tier:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .tier:nth-child(4n) {
    border-right: none;
  }

  .tier:nth-last-child(-n + 4) {
    border-bottom: none;
  }
}

.tier-name {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.tier-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--black);
}

.tier-sla {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text);
}

.tier-note {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ── Legal ── */

.legal-effective {
  margin: var(--space-3) 0 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.legal-h3 {
  margin: var(--space-5) 0 var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--black);
}

.legal-h3:first-child {
  margin-top: 0;
}

.legal-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-style: italic;
}

/* ── Scroll margin ── */

.page-main [id],
#main [id] {
  scroll-margin-top: calc(var(--header-h) + var(--space-4));
}

.t-meta a {
  color: var(--black);
  font-weight: 500;
}

@media (max-width: 540px) {
  .hero-actions-left {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-left .btn {
    width: 100%;
  }
}
