/* ==========================================================================
   Goats and Hoes — homestead-magazine stylesheet
   Palette + typography + components. Tailwind utilities still loaded via CDN
   for layout helpers; everything visual that matters lives here.
   ========================================================================== */

/* Fonts loaded via <link> in src/ui/layout.ts → Bunny Fonts CSS endpoint
   (privacy-friendly Google Fonts proxy). Doing it via @import here would
   create a render-blocking critical-path issue. */

:root {
  --gh-bg: #f7f3eb;
  --gh-surface: #ffffff;
  --gh-surface-2: #f1ead9;
  --gh-ink: #2b241c;
  --gh-ink-soft: #4a3f33;
  --gh-muted: #6b5e4f;
  --gh-accent: #5b7a3a;
  --gh-accent-deep: #3f5527;
  --gh-accent-2: #c9772a;
  --gh-accent-2-deep: #a25a18;
  --gh-rule: #e6dfd0;
  --gh-shadow: 0 1px 2px rgba(43, 36, 28, .06), 0 8px 24px rgba(43, 36, 28, .06);
  --gh-shadow-lift: 0 2px 4px rgba(43, 36, 28, .08), 0 18px 40px rgba(43, 36, 28, .1);
  --gh-radius: 14px;
  --gh-radius-sm: 8px;
  --gh-measure: 65ch;
}

[data-theme="dark"] {
  --gh-bg: #1a1815;
  --gh-surface: #25221e;
  --gh-surface-2: #2f2b25;
  --gh-ink: #f1ece2;
  --gh-ink-soft: #d6cfc1;
  --gh-muted: #a89c8a;
  --gh-accent: #8aab64;
  --gh-accent-deep: #6e8e4b;
  --gh-accent-2: #e69856;
  --gh-accent-2-deep: #c9772a;
  --gh-rule: #3a3530;
  --gh-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 8px 24px rgba(0, 0, 0, .35);
  --gh-shadow-lift: 0 2px 4px rgba(0, 0, 0, .3), 0 18px 40px rgba(0, 0, 0, .45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --gh-bg: #1a1815;
    --gh-surface: #25221e;
    --gh-surface-2: #2f2b25;
    --gh-ink: #f1ece2;
    --gh-ink-soft: #d6cfc1;
    --gh-muted: #a89c8a;
    --gh-accent: #8aab64;
    --gh-accent-deep: #6e8e4b;
    --gh-accent-2: #e69856;
    --gh-accent-2-deep: #c9772a;
    --gh-rule: #3a3530;
    --gh-shadow: 0 1px 2px rgba(0, 0, 0, .25), 0 8px 24px rgba(0, 0, 0, .35);
    --gh-shadow-lift: 0 2px 4px rgba(0, 0, 0, .3), 0 18px 40px rgba(0, 0, 0, .45);
  }
}

* { box-sizing: border-box; }

html { color-scheme: light dark; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  background: var(--gh-bg);
  color: var(--gh-ink);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .25s ease, color .25s ease;
}

.gh-serif {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-feature-settings: 'ss01', 'ss03', 'liga';
}

a { color: var(--gh-accent-deep); text-decoration: none; }
a:hover { color: var(--gh-accent-2-deep); text-decoration: underline; text-underline-offset: 3px; }

[data-theme="dark"] a { color: var(--gh-accent); }
[data-theme="dark"] a:hover { color: var(--gh-accent-2); }

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

.gh-header {
  background: var(--gh-surface);
  border-bottom: 1px solid var(--gh-rule);
  box-shadow: var(--gh-shadow);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
}

.gh-header-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gh-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.01em;
  color: var(--gh-ink);
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.gh-wordmark:hover { text-decoration: none; color: var(--gh-accent-deep); }
.gh-wordmark .gh-wordmark-amp { color: var(--gh-accent-2); font-style: italic; }
.gh-wordmark .gh-wordmark-sub {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gh-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-left: .25rem;
}

.gh-nav { display: flex; align-items: center; gap: 1.4rem; }
.gh-nav a { font-weight: 500; font-size: .95rem; color: var(--gh-ink-soft); }
.gh-nav a:hover { color: var(--gh-accent-deep); text-decoration: none; }
[data-theme="dark"] .gh-nav a:hover { color: var(--gh-accent); }

.gh-linktree-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-deep) 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: 0 4px 10px rgba(91, 122, 58, .3);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gh-linktree-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(91, 122, 58, .4);
  text-decoration: none;
}
.gh-linktree-chip svg { width: 14px; height: 14px; }

.gh-theme-toggle {
  background: transparent;
  border: 1px solid var(--gh-rule);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gh-ink-soft);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.gh-theme-toggle:hover { background: var(--gh-surface-2); color: var(--gh-accent-deep); border-color: var(--gh-accent); }
[data-theme="dark"] .gh-theme-toggle:hover { color: var(--gh-accent); }
.gh-theme-toggle .gh-icon-sun { display: none; }
.gh-theme-toggle .gh-icon-moon { display: inline; }
[data-theme="dark"] .gh-theme-toggle .gh-icon-sun { display: inline; }
[data-theme="dark"] .gh-theme-toggle .gh-icon-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .gh-theme-toggle .gh-icon-sun { display: inline; }
  :root:not([data-theme="light"]) .gh-theme-toggle .gh-icon-moon { display: none; }
}

.gh-mobile-toggle {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--gh-ink);
  cursor: pointer;
  display: none;
}

@media (max-width: 760px) {
  .gh-nav-desktop { display: none; }
  .gh-mobile-toggle { display: inline-flex; }
}

.gh-mobile-nav {
  display: none;
  flex-direction: column;
  padding: .75rem 1.25rem 1.25rem;
  gap: .9rem;
  border-top: 1px solid var(--gh-rule);
  background: var(--gh-surface);
}
.gh-mobile-nav.is-open { display: flex; }
.gh-mobile-nav a { color: var(--gh-ink-soft); font-weight: 500; }

/* ---------- Hero ---------- */

.gh-hero {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 119, 42, .15), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(91, 122, 58, .18), transparent 55%),
    var(--gh-bg);
  border-bottom: 1px solid var(--gh-rule);
  padding: 4.5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='%235b7a3a' fill-opacity='.04'><circle cx='10' cy='10' r='1.4'/><circle cx='40' cy='35' r='1'/><circle cx='75' cy='15' r='1.6'/><circle cx='100' cy='55' r='1.1'/><circle cx='25' cy='80' r='1.3'/><circle cx='60' cy='95' r='1'/><circle cx='95' cy='100' r='1.4'/></g></svg>");
  pointer-events: none;
}
.gh-hero-inner { max-width: 56rem; margin: 0 auto; position: relative; }
.gh-hero-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gh-accent-deep);
  background: rgba(91, 122, 58, .12);
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
[data-theme="dark"] .gh-hero-eyebrow { background: rgba(138, 171, 100, .15); color: var(--gh-accent); }
.gh-hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 1.1rem;
  color: var(--gh-ink);
}
.gh-hero-title em {
  font-style: italic;
  color: var(--gh-accent-2);
  font-weight: 600;
}
.gh-hero-sub {
  font-size: 1.2rem;
  color: var(--gh-ink-soft);
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
.gh-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  background: var(--gh-ink);
  color: var(--gh-bg);
  border-radius: var(--gh-radius);
  font-weight: 600;
  font-size: .98rem;
  box-shadow: var(--gh-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gh-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--gh-shadow-lift);
  text-decoration: none;
  color: var(--gh-bg);
}
[data-theme="dark"] .gh-hero-cta { background: var(--gh-accent); color: #1a1815; }
[data-theme="dark"] .gh-hero-cta:hover { background: var(--gh-accent-2); color: #1a1815; }

/* ---------- Section heading ---------- */

.gh-section-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gh-ink);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: baseline;
  gap: .75rem;
}
.gh-section-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gh-rule);
}

/* ---------- Posts grid + cards ---------- */

.gh-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 28rem), 1fr));
  gap: 1.5rem;
}

.gh-card {
  background: var(--gh-surface);
  border: 1px solid var(--gh-rule);
  border-radius: var(--gh-radius);
  padding: 1.6rem 1.6rem 1.4rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  box-shadow: var(--gh-shadow);
  position: relative;
  overflow: hidden;
}
.gh-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gh-accent);
  opacity: 0;
  transition: opacity .2s ease;
}
.gh-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--gh-shadow-lift);
  border-color: var(--gh-accent);
}
.gh-card:hover::before { opacity: 1; }
.gh-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}
.gh-card-title a { color: var(--gh-ink); }
.gh-card-title a:hover { color: var(--gh-accent-deep); text-decoration: none; }
[data-theme="dark"] .gh-card-title a:hover { color: var(--gh-accent); }
.gh-card-excerpt {
  color: var(--gh-muted);
  font-size: .95rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gh-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--gh-rule);
  font-size: .82rem;
  color: var(--gh-muted);
}
.gh-card-readmore {
  font-weight: 600;
  color: var(--gh-accent-deep);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
[data-theme="dark"] .gh-card-readmore { color: var(--gh-accent); }
.gh-card-readmore:hover { color: var(--gh-accent-2-deep); text-decoration: none; }

/* Topic badges — color coded by category */
.gh-badge {
  display: inline-block;
  padding: .25rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--gh-surface-2);
  color: var(--gh-ink-soft);
  border: 1px solid var(--gh-rule);
}
.gh-badge[data-category="livestock"]      { background: #fbe8d8; color: #8a4815; border-color: #f0d4b8; }
.gh-badge[data-category="garden"]         { background: #e2ecd6; color: #3f5527; border-color: #c9d8b6; }
.gh-badge[data-category="preservation"]   { background: #fdf1c6; color: #8a6614; border-color: #f3e29a; }
.gh-badge[data-category="off-grid"]       { background: #d9dfe6; color: #2c3a4a; border-color: #b8c2cf; }
.gh-badge[data-category="skills"]         { background: #d8d9f0; color: #353570; border-color: #b6b8e0; }
.gh-badge[data-category="resilience"]     { background: #f3d4cc; color: #7a2818; border-color: #e3b6ab; }

[data-theme="dark"] .gh-badge[data-category="livestock"]    { background: #4a2e15; color: #f0c997; border-color: #5e3c1f; }
[data-theme="dark"] .gh-badge[data-category="garden"]       { background: #2e3e1f; color: #c4d8a8; border-color: #3e5429; }
[data-theme="dark"] .gh-badge[data-category="preservation"] { background: #4a3a14; color: #f0db97; border-color: #5e4a1c; }
[data-theme="dark"] .gh-badge[data-category="off-grid"]     { background: #2c3441; color: #c4cdda; border-color: #3a4452; }
[data-theme="dark"] .gh-badge[data-category="skills"]       { background: #2d2d52; color: #c4c5e8; border-color: #3a3a66; }
[data-theme="dark"] .gh-badge[data-category="resilience"]   { background: #4a1f15; color: #f0b3a5; border-color: #5e2e22; }

/* ---------- Pagination ---------- */

.gh-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 2rem;
}
.gh-pagination button {
  background: var(--gh-surface);
  border: 1px solid var(--gh-rule);
  color: var(--gh-ink-soft);
  border-radius: var(--gh-radius-sm);
  padding: .5rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s ease;
}
.gh-pagination button:hover { border-color: var(--gh-accent); color: var(--gh-accent-deep); }
.gh-pagination button[aria-current="page"] {
  background: var(--gh-ink);
  color: var(--gh-bg);
  border-color: var(--gh-ink);
}
[data-theme="dark"] .gh-pagination button[aria-current="page"] {
  background: var(--gh-accent);
  color: #1a1815;
  border-color: var(--gh-accent);
}

/* ---------- Article (post page) ---------- */

.gh-article {
  background: var(--gh-surface);
  border: 1px solid var(--gh-rule);
  border-radius: var(--gh-radius);
  padding: clamp(1.5rem, 3vw, 3rem);
  box-shadow: var(--gh-shadow);
}
.gh-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  font-size: .85rem;
  color: var(--gh-muted);
  margin-bottom: 1.25rem;
}
.gh-article-meta-divider { color: var(--gh-rule); }
.gh-article-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--gh-ink);
  margin: 0 0 1rem;
}
.gh-article-lede {
  font-size: 1.2rem;
  color: var(--gh-ink-soft);
  font-style: italic;
  border-left: 3px solid var(--gh-accent-2);
  padding-left: 1.1rem;
  margin: 0 0 2rem;
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.5;
}
.gh-prose {
  max-width: var(--gh-measure);
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--gh-ink-soft);
}
.gh-prose > p:first-of-type::first-letter {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: .85;
  float: left;
  padding: .25rem .6rem 0 0;
  color: var(--gh-accent-deep);
}
[data-theme="dark"] .gh-prose > p:first-of-type::first-letter { color: var(--gh-accent); }
.gh-prose h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--gh-ink);
  margin: 2.4rem 0 1rem;
  letter-spacing: -0.01em;
}
.gh-prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--gh-ink);
  margin: 2rem 0 .75rem;
}
.gh-prose p { margin: 1rem 0; }
.gh-prose ul, .gh-prose ol { margin: 1.1rem 0; padding-left: 1.6rem; }
.gh-prose ul { list-style: disc; }
.gh-prose ol { list-style: decimal; }
.gh-prose li { margin: .45rem 0; }
.gh-prose strong { color: var(--gh-ink); font-weight: 600; }
.gh-prose blockquote {
  border-left: 3px solid var(--gh-accent);
  background: var(--gh-surface-2);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gh-ink);
  border-radius: 0 var(--gh-radius-sm) var(--gh-radius-sm) 0;
}
.gh-prose hr { border: 0; border-top: 1px solid var(--gh-rule); margin: 2rem 0; }
.gh-prose code {
  background: var(--gh-surface-2);
  padding: .15rem .4rem;
  border-radius: 4px;
  font-size: .92em;
  font-family: 'JetBrains Mono', 'Fira Mono', monospace;
}

/* ---------- Linktree call-out card ---------- */

.gh-linktree-card {
  background: linear-gradient(135deg, var(--gh-accent) 0%, var(--gh-accent-deep) 100%);
  border-radius: var(--gh-radius);
  padding: 2rem 1.75rem;
  margin: 3rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--gh-shadow-lift);
  position: relative;
  overflow: hidden;
}
.gh-linktree-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 70%);
  pointer-events: none;
}
.gh-linktree-card-text { flex: 1 1 18rem; }
.gh-linktree-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.55rem;
  margin: 0 0 .35rem;
}
.gh-linktree-card-sub { color: rgba(255, 255, 255, .85); margin: 0; font-size: .98rem; line-height: 1.5; }
.gh-linktree-card-cta {
  background: #fff;
  color: var(--gh-accent-deep) !important;
  padding: .85rem 1.5rem;
  border-radius: var(--gh-radius);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .15s ease, background .15s ease;
}
.gh-linktree-card-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: var(--gh-bg);
}

/* ---------- Related posts ---------- */

.gh-related {
  margin-top: 3rem;
}
.gh-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}
.gh-related .gh-card { padding: 1.2rem 1.2rem 1rem; }
.gh-related .gh-card-title { font-size: 1.1rem; }

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

.gh-footer {
  background: var(--gh-surface);
  border-top: 1px solid var(--gh-rule);
  padding: 2.75rem 1.25rem 1.5rem;
  margin-top: 4rem;
  color: var(--gh-ink-soft);
}
.gh-footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--gh-rule);
}
.gh-footer-col h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gh-ink);
  margin: 0 0 .6rem;
}
.gh-footer-col p { font-size: .92rem; color: var(--gh-muted); margin: .25rem 0; line-height: 1.55; }
.gh-footer-col a { color: var(--gh-ink-soft); }
.gh-footer-col a:hover { color: var(--gh-accent-deep); }
[data-theme="dark"] .gh-footer-col a:hover { color: var(--gh-accent); }
.gh-footer-bottom {
  max-width: 72rem;
  margin: 1.25rem auto 0;
  font-size: .82rem;
  color: var(--gh-muted);
  text-align: center;
}

/* ---------- Pages: 404 + error + admin ---------- */

.gh-page-center {
  max-width: 36rem;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1.25rem;
}
.gh-page-center h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--gh-ink);
  margin: 1rem 0 .75rem;
}
.gh-page-center p { color: var(--gh-muted); margin: 0 0 1.5rem; }
.gh-button-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.5rem;
  background: var(--gh-ink);
  color: var(--gh-bg);
  border-radius: var(--gh-radius);
  font-weight: 600;
  box-shadow: var(--gh-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.gh-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--gh-shadow-lift);
  text-decoration: none;
  color: var(--gh-bg);
}
[data-theme="dark"] .gh-button-primary { background: var(--gh-accent); color: #1a1815; }

/* ---------- Loading + empty states ---------- */

.gh-loading {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gh-muted);
  grid-column: 1 / -1;
}
.gh-loading .gh-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--gh-rule);
  border-top-color: var(--gh-accent);
  border-radius: 50%;
  margin: 0 auto 1rem;
  animation: gh-spin 1s linear infinite;
}
@keyframes gh-spin { to { transform: rotate(360deg); } }

.gh-empty {
  background: var(--gh-surface);
  border: 1px dashed var(--gh-rule);
  border-radius: var(--gh-radius);
  padding: 3rem 1.5rem;
  text-align: center;
  grid-column: 1 / -1;
}
.gh-empty h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--gh-ink);
  margin: .5rem 0;
}
.gh-empty p { color: var(--gh-muted); margin: 0; }

.gh-fade-in { animation: gh-fade .4s ease-out both; }
@keyframes gh-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
