@import url('https://fonts.googleapis.com/css2?family=Libre+Bodoni:wght@400;500;600;700&family=Public+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS 自定义属性
   ============================================================ */
:root {
  --c-bg: #1a0a0f;
  --c-gold: #c8a96e;
  --c-cream: #f5f0e8;
  --c-bg2: #26101a;
  --c-bg3: #3a1828;
  --c-gold-dim: rgba(200,169,110,0.18);
  --c-gold-border: rgba(200,169,110,0.35);
  --c-cream-dim: rgba(245,240,232,0.65);
  --c-cream-muted: rgba(245,240,232,0.45);
  --c-shadow: rgba(0,0,0,0.55);
  --font-serif: 'Libre Bodoni', Georgia, 'Times New Roman', serif;
  --font-sans: 'Public Sans', system-ui, -apple-system, sans-serif;
  --radius-card: 18px;
  --radius-pill: 999px;
  --nav-h: 72px;
  --max-prose: 720px;
  --max-site: 1280px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 17px;
  background: var(--c-bg);
  color: var(--c-cream);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  background: var(--c-bg);
  color: var(--c-cream);
  padding-bottom: var(--nav-h);
  overflow-x: hidden;
}

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

a { color: var(--c-gold); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--c-cream); text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }

ul, ol { list-style: none; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--c-cream);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 0.3em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 500; margin-bottom: 0.4em; }

p { margin-bottom: 1.1em; }

p.subtitle,
p.subhead,
p.desc,
p.lead {
  color: var(--c-cream-dim);
  font-size: 1rem;
  font-weight: 300;
  margin-top: -0.15em;
  margin-bottom: 1.2em;
  letter-spacing: 0.01em;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--c-cream-muted);
  margin-bottom: 1.1em;
  letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--c-gold); }
.breadcrumb a:hover { color: var(--c-cream); }

/* ============================================================
   Buttons & Pills
   ============================================================ */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 1.6em;
  border-radius: var(--radius-pill);
  background: var(--c-gold);
  color: var(--c-bg);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  min-height: 44px;
}
.btn-pill:hover, .btn-pill:focus { background: var(--c-cream); color: var(--c-bg); text-decoration: none; transform: translateY(-2px); }

.btn-pill--outline {
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
}
.btn-pill--outline:hover, .btn-pill--outline:focus { background: var(--c-gold); color: var(--c-bg); }

.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 1em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-gold-border);
  background: var(--c-gold-dim);
  color: var(--c-gold);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
  min-height: 40px;
}
.tag-pill:hover, .tag-pill:focus { background: var(--c-gold); color: var(--c-bg); text-decoration: none; }
.tag-pill--sm { font-size: 0.8rem; min-height: 36px; padding: 0.28em 0.85em; }

/* ============================================================
   Footer Nav (pill nav — bottom fixed)
   ============================================================ */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26,10,15,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--c-gold-border);
}

.footer-nav-wrap {
  padding: 0 1rem;
}

.pill-nav {
  max-width: var(--max-site);
  margin: 0 auto;
}

.pill-nav__dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  flex-wrap: nowrap;
  padding: 0.55rem 0;
  min-height: var(--nav-h);
}

.pill-nav__left,
.pill-nav__right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.pill-nav__right { justify-content: flex-end; }

.pill-nav__dl dt,
.pill-nav__dl dd {
  display: contents;
}

.pill-nav__dl dt a,
.pill-nav__dl dd a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4em 0.75em;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--c-cream-dim);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
  min-height: 40px;
  letter-spacing: 0.01em;
}
.pill-nav__dl dt a:hover,
.pill-nav__dl dd a:hover,
.pill-nav__dl dt a:focus,
.pill-nav__dl dd a:focus {
  background: var(--c-gold-dim);
  color: var(--c-gold);
  text-decoration: none;
}

.pill-nav__brand {
  display: contents;
}
.pill-nav__brand a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.2em;
  border-radius: var(--radius-pill);
  background: var(--c-gold);
  color: var(--c-bg) !important;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 44px;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.pill-nav__brand a:hover,
.pill-nav__brand a:focus {
  background: var(--c-cream);
  color: var(--c-bg) !important;
  text-decoration: none;
  transform: scale(1.04);
}

/* Footer columns — hidden in fixed bar, shown only when footer is expanded */
.footer-cols,
.footer-copy {
  display: none;
}

/* ============================================================
   Prose
   ============================================================ */
.prose {
  max-width: var(--max-prose);
  line-height: 1.8;
}
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose p { margin-bottom: 1.1em; }
.prose ul, .prose ol { padding-left: 1.4em; margin-bottom: 1.1em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--c-gold); border-bottom: 1px solid var(--c-gold-border); }
.prose a:hover { color: var(--c-cream); border-color: var(--c-cream); }
.prose blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 0.6em 1.2em;
  background: var(--c-gold-dim);
  border-radius: 0 10px 10px 0;
  margin: 1.5em 0;
  color: var(--c-cream-dim);
  font-style: italic;
}
.prose strong { color: var(--c-gold); font-weight: 600; }
.prose time { color: var(--c-gold); font-size: 0.85em; }
.prose img { border-radius: 10px; margin: 1.5em 0; }

/* ============================================================
   Aside (left sidebar)
   ============================================================ */
.story-aside,
.section-aside,
.tag-aside,
.about-aside,
.privacy-aside,
.home-aside,
.default-aside {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 2rem;
  align-self: flex-start;
  padding: 1.4rem 1.2rem;
  background: var(--c-bg2);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--radius-card);
}

.story-aside h2,
.section-aside h2,
.tag-aside h2,
.about-aside h2,
.privacy-aside h2,
.home-aside h2,
.default-aside h2 {
  font-size: 1rem;
  margin-bottom: 0.2em;
  color: var(--c-gold);
  font-family: var(--font-serif);
}

.story-aside h3,
.section-aside h3,
.tag-aside h3,
.about-aside h3,
.privacy-aside h3,
.home-aside h3,
.default-aside h3 {
  font-size: 0.88rem;
  margin-top: 1.2em;
  margin-bottom: 0.4em;
  color: var(--c-gold);
}

.aside-linklist { display: flex; flex-direction: column; gap: 0.3rem; }
.aside-linklist li a {
  display: block;
  padding: 0.35em 0.5em;
  border-radius: 8px;
  color: var(--c-cream-dim);
  font-size: 0.85rem;
  line-height: 1.4;
  transition: background var(--transition), color var(--transition);
  min-height: 36px;
  display: flex;
  align-items: center;
}
.aside-linklist li a:hover,
.aside-linklist li a:focus {
  background: var(--c-gold-dim);
  color: var(--c-gold);
  text-decoration: none;
}

.aside-tags { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }

/* ============================================================
   Layout: shared two-col (aside left + content right)
   ============================================================ */
.story-layout-section,
.section-content-wrap,
.tag-layout-section,
.about-layout-section,
.privacy-layout-section,
.default-layout-section,
.home-content-section {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.story-figure,
.section-content-col,
.tag-content-col,
.about-figure,
.privacy-figure,
.default-figure,
.home-content-body {
  flex: 1;
  min-width: 0;
}

/* figure reset */
figure { margin: 0; }
figcaption { margin-top: 2rem; }

/* ============================================================
   HOME
   ============================================================ */
.page-home { }

/* Hero */
.hero.parallax-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  min-height: 70vh;
  padding: 4rem 2rem 4rem;
  max-width: var(--max-site);
  margin: 0 auto;
  position: relative;
}

.hero__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.hero__h1 {
  font-family: var(--font-serif);
  color: var(--c-cream);
  letter-spacing: -0.02em;
}

.hero__lead {
  font-size: 1.1rem;
  color: var(--c-cream-dim);
  max-width: 480px;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero__media {
  flex: 0 0 42%;
  max-width: 520px;
}

.hero__img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px var(--c-shadow);
}

.hero__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  background: var(--c-bg2);
  border-radius: var(--radius-card);
  border: 1px solid var(--c-gold-border);
}

.hero__glyph {
  font-size: 8rem;
  color: var(--c-gold);
  opacity: 0.3;
  font-family: var(--font-serif);
  line-height: 1;
}

/* Home main */
.home-main {
  max-width: var(--max-site);
  margin: 0 auto;
  padding: 0 0 4rem;
}

.home-content-section {
  padding-top: 2rem;
}

.home-prose {
  max-width: none;
}

/* Sections showcase */
.sections-showcase {
  padding: 3rem 2rem;
  border-top: 1px solid var(--c-gold-border);
}

.sections-showcase h2 { color: var(--c-gold); }

.sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.section-card {
  background: var(--c-bg2);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.section-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

.section-card__num {
  font-size: 1.4rem;
  color: var(--c-gold);
  opacity: 0.6;
  font-family: var(--font-serif);
  line-height: 1;
}

.section-card__title { font-size: 1.05rem; margin-bottom: 0; }
.section-card__title a { color: var(--c-cream); }
.section-card__title a:hover { color: var(--c-gold); text-decoration: none; }

.section-card__desc {
  font-size: 0.87rem;
  color: var(--c-cream-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.section-card__links {
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.section-card__links li a {
  font-size: 0.83rem;
  color: var(--c-cream-muted);
  display: block;
  padding: 0.15em 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.section-card__links li a:hover { color: var(--c-gold); border-color: var(--c-gold-border); text-decoration: none; }

.section-card__more {
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Latest div */
.latest-section {
  padding: 3rem 2rem;
  border-top: 1px solid var(--c-gold-border);
}
.latest-section h2 { color: var(--c-gold); }

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.latest-item {
  background: var(--c-bg2);
  border: 1px solid var(--c-gold-border);
  border-radius: var(--radius-card);
  padding: 1.3rem 1.2rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.latest-item:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.45); }

.latest-item__date { font-size: 0.78rem; color: var(--c-gold); }
.latest-item__title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--c-cream);
  line-height: 1.4;
  font-weight: 600;
}
.latest-item__title:hover { color: var(--c-gold); text-decoration: none; }
.latest-item__desc { font-size: 0.84rem; color: var(--c-cream-muted); line-height: 1.5; }

/* Tags div */
.tags-section {
  padding: 3rem 2rem;
  border-top: 1px solid var(--c-gold-border);
}
.tags-section h2 { color: var(--c-gold); }
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

/* ============================================================
   SECTION PAGE
   ============================================================ */
.section-hero,
.story-hero,
.tag-hero,
.about-hero,
.privacy-hero,
.default-hero {
  background: linear-gradient(160deg, var(--c-bg) 0%, var(--c-bg2) 60%, var(--c-bg3) 100%);
  border-bottom: 1px solid var(--c-gold-border);
  padding: 3.5rem 2rem 2.5rem;
}

.section-hero__inner,
.story-hero__inner,
.tag-hero__inner,
.about-hero__inner,
.privacy-hero__inner,
.default-hero__inner {
  max-width: var(--max-site);
  margin: 0 auto;
}

.section-hero__h1,
.story-hero__h1,
.tag-hero__h1,
.about-hero__h1,
.privacy-hero__h1,
.default-hero__h1 { margin-bottom: 0.4em; }

.section-hero__desc,
.story-hero__desc,
.tag-hero__desc,
.about-hero__desc,
.default-hero__desc {
  color: var(--c-cream-dim);
  font-size: 1.05rem;
  max-width: 600px;
}

/* Story hero with image */
.story-hero {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3rem 2rem;
  max-width: var(--max-site);
  margin: 0 auto;
  background: transparent;
  border-bottom: 1px solid var(--c-gold-border);
}

.story-hero--has-img { justify-content: space-between; }

.story-hero__img-wrap { flex: 0 0 38%; max-width: 440px; }
.story-hero__img { width: 100%; height: 300px; object-fit: cover; border-radius: var(--radius-card); box-shadow: 0 16px 48px var(--c-shadow); }

.story-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 0.7em; }
.story-meta__date { font-size: 0.82rem; color: var(--c-gold); }

/* Section main */
.section-main,
.tag-main,
.about-main,
.privacy-main,
.story-main,
.default-main { }

/* Section children */
.section-children,
.tag-items-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-gold-border);
}

/* Child list (dl > dt > a + dd) */
.child-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.child-list dt {
  margin-top: 1rem;
}

.child-list dt a {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-cream);
  padding: 0.3em 0;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.child-list dt a:hover { color: var(--c-gold); border-color: var(--c-gold-border); text-decoration: none; }

.child-list dd {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  padding: 0.3em 0 0.8em;
  border-bottom: 1px solid rgba(200,169,110,0.1);
}

.child-list__date { font-size: 0.78rem; color: var(--c-gold); }
.child-list__desc { font-size: 0.9rem; color: var(--c-cream-muted); line-height: 1.5; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.about-section-link {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  padding: 1rem 1rem;
  background: var(--c-bg2);
  border: 1px solid var(--c-gold-border);
  border-radius: 12px;
  transition: background var(--transition), transform var(--transition);
}
.about-section-link:hover { background: var(--c-bg3); transform: translateY(-2px); text-decoration: none; }

.about-section-link__title { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; color: var(--c-cream); line-height: 1.4; }
.about-section-link__desc { font-size: 0.8rem; color: var(--c-cream-muted); line-height: 1.4; }

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-meta { font-size: 0.85rem; color: var(--c-gold); margin-top: 0.5em; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Parallax hero subtle depth layer
   ============================================================ */
.parallax-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.parallax-hero > * { position: relative; z-index: 1; }

/* ============================================================
   Section dividers
   ============================================================ */
.sections-showcase,
.latest-section,
.tags-section {
  position: relative;
}

/* ============================================================
   Mobile — 375px
   ============================================================ */
@media (max-width: 767px) {
  body { padding-bottom: 64px; }

  :root { --nav-h: 60px; }

  /* pill nav collapse */
  .pill-nav__dl {
    flex-wrap: wrap;
    gap: 0.2rem;
    padding: 0.4rem 0;
    min-height: var(--nav-h);
    justify-content: center;
  }

  .pill-nav__left,
  .pill-nav__right {
    flex: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2rem;
  }

  .pill-nav__dl dt a,
  .pill-nav__dl dd a {
    font-size: 0.68rem;
    padding: 0.32em 0.55em;
    min-height: 36px;
  }

  .pill-nav__brand a {
    font-size: 0.8rem;
    padding: 0.4em 1em;
    min-height: 40px;
  }

  /* Hero */
  .hero.parallax-hero {
    flex-direction: column;
    min-height: auto;
    padding: 2.5rem 1.2rem 2rem;
    gap: 2rem;
  }

  .hero__media { flex: none; width: 100%; max-width: none; order: -1; }
  .hero__img { height: 240px; }
  .hero__media--placeholder { height: 200px; }
  .hero__glyph { font-size: 5rem; }

  .hero__text { align-items: flex-start; text-align: left; }
  .hero__cta { justify-content: flex-start; }

  /* Story hero */
  .story-hero {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.2rem;
  }
  .story-hero__img-wrap { flex: none; width: 100%; max-width: none; }
  .story-hero__img { height: 200px; }

  /* Two-col layouts → stack */
  .story-layout-section,
  .section-content-wrap,
  .tag-layout-section,
  .about-layout-section,
  .privacy-layout-section,
  .default-layout-section,
  .home-content-section {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1.2rem;
  }

  .story-aside,
  .section-aside,
  .tag-aside,
  .about-aside,
  .privacy-aside,
  .home-aside,
  .default-aside {
    width: 100%;
    position: static;
    order: 2;
  }

  .story-figure,
  .section-content-col,
  .tag-content-col,
  .about-figure,
  .privacy-figure,
  .default-figure,
  .home-content-body { order: 1; }

  /* Sections grid */
  .sections-grid { grid-template-columns: 1fr; gap: 1rem; }
  .latest-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-sections-grid { grid-template-columns: 1fr 1fr; }

  .sections-showcase,
  .latest-section,
  .tags-section,
  .section-children,
  .tag-items-section { padding: 2rem 1.2rem; }

  .section-hero,
  .tag-hero,
  .about-hero,
  .privacy-hero,
  .default-hero {
    padding: 2.5rem 1.2rem 1.8rem;
  }
}

/* ============================================================
   Tablet
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero.parallax-hero {
    gap: 2rem;
    padding: 3rem 2rem;
  }
  .hero__media { flex: 0 0 44%; }
  .hero__img { height: 360px; }

  .sections-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-grid { grid-template-columns: repeat(2, 1fr); }

  .story-aside,
  .section-aside,
  .tag-aside,
  .about-aside,
  .privacy-aside,
  .home-aside,
  .default-aside { width: 180px; }
}

/* ============================================================
   Desktop enhancements
   ============================================================ */
@media (min-width: 1024px) {
  .story-layout-section,
  .section-content-wrap,
  .tag-layout-section,
  .about-layout-section,
  .privacy-layout-section,
  .default-layout-section,
  .home-content-section {
    padding: 3rem 2.5rem;
  }

  .sections-showcase,
  .latest-section,
  .tags-section {
    padding: 4rem 2.5rem;
  }
}

/* ============================================================
   Section prose wrap (inner div within layout)
   ============================================================ */
.section-prose-wrap,
.tag-prose-wrap {
  margin-bottom: 0;
}

.section-prose-fig,
.tag-prose-fig {
  margin: 0;
}

/* ============================================================
   About figcaption
   ============================================================ */
.about-figcaption {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-gold-border);
}

/* ============================================================
   Aside sub sections
   ============================================================ */
.aside-nav-quick { margin-top: 1.2rem; }
.about-aside-info { margin-top: 1.2rem; }

/* ============================================================
   Section badge (ornament within div card)
   ============================================================ */
.section-prose-wrap + .section-children,
.section-prose-wrap + .section-children { }
