@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== 基础变量 ===== */
:root {
  --c-primary: #80ff00;
  --c-primary-alt: #00ff00;
  --c-dark: #1f2617;
  --c-dark-2: #2a3320;
  --c-dark-3: #323d28;
  --c-text: #e8f5d0;
  --c-text-muted: #a0b88a;
  --c-border: #3a4a2a;
  --c-card-bg: #252f1c;
  --c-card-hover: #2e3a22;
  --r-card: 28px;
  --r-pill: 999px;
  --nav-w: 220px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5), 0 0 0 1px rgba(128,255,0,0.08);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(128,255,0,0.2);
  --font-head: 'Raleway', system-ui, sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  background: var(--c-dark);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-primary-alt); }
ul { list-style: none; }

/* ===== 滚动条 ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-dark); }
::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }

/* ===== 布局骨架：左侧固定导航 ===== */
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-w);
  height: 100vh;
  background: var(--c-dark-2);
  border-right: 1px solid var(--c-border);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.site-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1rem;
  gap: 1.5rem;
  overflow-y: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}

.logo-text-mark {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--c-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  background: rgba(128,255,0,0.1);
  border: 2px solid var(--c-primary);
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  display: block;
}

.site-logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

/* nav-links：p > a 行内导航胶囊 */
.nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.nav-links a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--c-text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  padding: 0.6rem 1rem;
  min-height: 40px;
  line-height: 1.3;
  transition: all var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--c-primary);
  background: rgba(128,255,0,0.08);
  border-color: rgba(128,255,0,0.25);
}

.nav-cta {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  min-height: 44px;
  line-height: 44px;
  padding: 0 1rem;
}

/* ===== 主内容区 ===== */
.site-main {
  margin-left: var(--nav-w);
  flex: 1;
}

/* ===== 药丸胶囊标签 ===== */
.pill-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 0.3rem 0.9rem;
  border: 1px solid currentColor;
  line-height: 1.4;
  transition: all var(--transition);
}

.pill-tag--cta {
  background: var(--c-primary);
  color: var(--c-dark);
  border-color: var(--c-primary);
}
.pill-tag--cta:hover {
  background: var(--c-primary-alt);
  border-color: var(--c-primary-alt);
  color: var(--c-dark);
}

.pill-tag--cat {
  color: var(--c-primary);
  border-color: rgba(128,255,0,0.3);
  background: rgba(128,255,0,0.06);
}

.pill-tag--section {
  color: var(--c-primary);
  border-color: rgba(128,255,0,0.4);
  background: rgba(128,255,0,0.1);
}

.pill-tag--related {
  color: var(--c-text-muted);
  border-color: var(--c-border);
  background: transparent;
  font-size: 0.7rem;
}
.pill-tag--related:hover {
  color: var(--c-primary);
  border-color: rgba(128,255,0,0.4);
  background: rgba(128,255,0,0.06);
}

.pill-tag--go {
  color: var(--c-primary);
  border-color: rgba(128,255,0,0.35);
  background: transparent;
  font-size: 0.7rem;
}
.pill-tag--go:hover {
  background: rgba(128,255,0,0.1);
}

.pill-tag--tag {
  color: var(--c-primary-alt);
  border-color: rgba(0,255,0,0.3);
  background: rgba(0,255,0,0.06);
}

.pill-tag--about,
.pill-tag--legal {
  color: var(--c-text-muted);
  border-color: var(--c-border);
  background: transparent;
}

/* ===== 按钮 ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-radius: var(--r-pill);
  padding: 0.7rem 1.8rem;
  min-height: 44px;
  line-height: 1.4;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--c-primary);
  color: var(--c-dark);
  border-color: var(--c-primary);
}
.btn--primary:hover {
  background: var(--c-primary-alt);
  border-color: var(--c-primary-alt);
  color: var(--c-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128,255,0,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: rgba(128,255,0,0.4);
}
.btn--outline:hover {
  background: rgba(128,255,0,0.08);
  border-color: var(--c-primary);
  color: var(--c-primary);
  transform: translateY(-2px);
}

/* ===== Hero 区：首页 ===== */
.hero-section {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}

.hero-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.hero-number {
  font-family: var(--font-head);
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 700;
  color: rgba(128,255,0,0.06);
  line-height: 1;
  user-select: none;
  position: absolute;
  left: -1rem;
}

.hero-sticker {
  font-size: 2.5rem;
  position: absolute;
  color: var(--c-primary);
  animation: jitter 3s ease-in-out infinite;
  user-select: none;
}
.hero-sticker--1 { top: 20%; left: 10%; animation-delay: 0s; transform: rotate(-15deg); }
.hero-sticker--2 { bottom: 25%; right: 5%; animation-delay: 1.5s; transform: rotate(10deg); }
.hero-sticker--about { top: 30%; left: 15%; animation-delay: 0.5s; transform: rotate(-8deg); font-size: 3rem; }

@keyframes jitter {
  0%, 100% { transform: rotate(-15deg) translateY(0); }
  25% { transform: rotate(-12deg) translateY(-4px); }
  75% { transform: rotate(-18deg) translateY(4px); }
}

.hero-figure {
  position: relative;
  z-index: 2;
}

.hero-content--right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-text);
  max-width: 600px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ===== 滚动公告 ===== */
.marquee-section {
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 2rem;
  background: rgba(128,255,0,0.04);
}

.marquee-wrap {
  flex: 1;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: ' ★ ';
  margin: 0 0.5rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.aside-dot {
  font-size: 1.2rem;
  color: var(--c-primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===== content-section：通用内容区 ===== */
.content-section {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 2rem;
  padding: 3.5rem 3rem;
  border-bottom: 1px solid var(--c-border);
}

.section-label-aside {
  display: flex;
  align-items: flex-start;
  padding-top: 0.4rem;
}

.vertical-label {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

/* ===== 侧边栏布局（内容 + 侧边）===== */
.section-body,
.article-body-section,
.tag-body,
.about-body,
.privacy-body,
.default-body {
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}

.section-sidebar,
.article-sidebar,
.about-sidebar,
.privacy-sidebar,
.default-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-inner {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-links li a {
  display: block;
  font-size: 0.8rem;
  min-height: 40px;
  line-height: 40px;
  padding: 0 0.9rem;
}

.sidebar-meta {
  padding-top: 0.5rem;
  border-top: 1px solid var(--c-border);
}

.sidebar-empty {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.sidebar-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-related {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.related-link {
  display: block;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--transition);
  min-height: 40px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.related-link:hover { color: var(--c-primary); }

/* ===== 大背景序号 ===== */
.big-num {
  font-family: var(--font-head);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 700;
  color: rgba(128,255,0,0.05);
  line-height: 1;
  user-select: none;
  position: absolute;
  pointer-events: none;
}

/* ===== div Hero（非首页）===== */
.section-hero,
.tag-hero,
.about-hero,
.privacy-hero,
.default-hero {
  min-height: 40vh;
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  padding: 4rem 3rem;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}

.section-hero-aside,
.about-hero-aside,
.privacy-hero-aside,
.default-hero-aside {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-hero-figure,
.about-hero-figure,
.privacy-hero-figure,
.default-hero-figure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.section-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ===== h1/h2/h3 ===== */
h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  color: var(--c-text);
}

h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  line-height: 1.3;
  color: var(--c-text);
  margin-bottom: 0.3rem;
}

h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--c-text);
}

h3 a {
  color: var(--c-text);
  transition: color var(--transition);
}
h3 a:hover { color: var(--c-primary); }

/* subtitle 跟随 h2 */
p.subtitle, .subtitle {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 0;
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.card-grid--sections {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card-grid--stories {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
  background: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 1.6rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(128,255,0,0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  background: var(--c-card-hover);
  border-color: rgba(128,255,0,0.2);
}

.card:hover::before { opacity: 1; }

.card-eyebrow,
.card-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(128,255,0,0.12);
  line-height: 1;
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  user-select: none;
}

.card-date {
  font-family: var(--font-head);
  font-size: 0.72rem;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

.card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* 空列表 */
.empty-note {
  grid-column: 1 / -1;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  padding: 2rem;
  text-align: center;
}

/* ===== 文章正文 ===== */
.prose {
  max-width: 760px;
  line-height: 1.8;
}

.article-prose {
  font-size: 1.02rem;
}

.prose h2 { margin: 2rem 0 0.8rem; }
.prose h3 { margin: 1.5rem 0 0.6rem; }
.prose p { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--c-primary-alt); }
.prose strong { color: var(--c-text); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--c-primary);
  padding-left: 1.2rem;
  color: var(--c-text-muted);
  font-style: italic;
  margin: 1.5rem 0;
}
.prose code {
  background: var(--c-dark-3);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  font-size: 0.88em;
  color: var(--c-primary);
}
.prose pre {
  background: var(--c-dark-3);
  border-radius: 12px;
  padding: 1.2rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.prose img { border-radius: 16px; margin: 1.5rem 0; }

/* ===== 面包屑 ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}
.breadcrumb a { color: var(--c-text-muted); }
.breadcrumb a:hover { color: var(--c-primary); }

/* ===== 文章元数据 ===== */
.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.article-date {
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: rgba(128,255,0,0.06);
  border: 1px solid rgba(128,255,0,0.15);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.8rem;
}

.article-modified {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.policy-date {
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.8rem;
  display: inline-block;
  margin-top: 0.5rem;
}

/* ===== 文章导航 ===== */
.article-nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ===== tag back ===== */
.tag-back {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== about/privacy CTA ===== */
.about-cta-group,
.privacy-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ===== footer ===== */
.site-footer {
  margin-left: var(--nav-w);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 3rem 2rem;
  background: var(--c-dark-2);
  border-top: 1px solid var(--c-border);
}

.site-footer div { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-primary);
}

.footer-brand-desc {
  font-size: 0.8rem;
  line-height: 1.6;
}

.site-footer h3 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  padding: 0.25rem 0;
  min-height: 32px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--c-border);
}

/* ===== Scroll Reveal ===== */
.reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== sections/stories figure wrappers ===== */
.sections-figure,
.stories-figure,
.children-figure,
.tag-list-figure,
.about-links-figure,
.privacy-footer-figure {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-content-figure,
.article-body-figure,
.tag-content-figure,
.about-content-figure,
.privacy-content-figure,
.default-content-figure {
  min-width: 0;
}

/* ===== 减少动效 ===== */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero-sticker { animation: none; }
  .aside-dot { animation: none; }
  .reveal-card { opacity: 1; transform: none; transition: none; }
  .card:hover { transform: none; }
  .btn:hover { transform: none; }
}

/* ===== 响应式：平板 ===== */
@media (max-width: 1024px) {
  :root { --nav-w: 180px; }

  .hero-section {
    grid-template-columns: 1fr 2fr;
    padding: 3rem 2rem;
  }

  .content-section {
    grid-template-columns: 40px 1fr;
    padding: 2.5rem 2rem;
  }

  .section-body,
  .article-body-section,
  .tag-body,
  .about-body,
  .privacy-body,
  .default-body {
    grid-template-columns: 160px 1fr;
    gap: 2rem;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 2.5rem 2rem;
  }

  .section-hero,
  .tag-hero,
  .about-hero,
  .privacy-hero,
  .default-hero {
    grid-template-columns: 120px 1fr;
    padding: 3rem 2rem;
  }
}

/* ===== 响应式：移动端 ===== */
@media (max-width: 768px) {
  :root { --nav-w: 0px; }

  html { font-size: 16px; }

  .site-header {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-right: none;
    border-top: 1px solid var(--c-border);
    z-index: 200;
  }

  .site-nav {
    flex-direction: row;
    align-items: center;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
    overflow-x: auto;
    height: auto;
    min-height: 60px;
  }

  .nav-brand {
    border-bottom: none;
    padding-bottom: 0;
    flex-shrink: 0;
  }

  .nav-links {
    flex-direction: row;
    flex: 1;
    gap: 0.3rem;
    overflow-x: auto;
  }

  .nav-links a {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 0.5rem 0.8rem;
    min-height: 40px;
  }

  .nav-cta {
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.4;
    padding: 0.5rem 1rem;
    min-height: 40px;
  }

  .site-main {
    margin-left: 0;
    padding-bottom: 70px;
  }

  .site-footer {
    margin-left: 0;
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem 1.2rem;
    padding-bottom: 80px;
  }

  .hero-section {
    min-height: 70vh;
    grid-template-columns: 1fr;
    padding: 2rem 1.4rem;
    gap: 1rem;
  }

  .hero-aside {
    display: none;
  }

  .hero-content--right {
    text-align: left;
    align-items: flex-start;
  }

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

  .content-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.4rem;
    gap: 1rem;
  }

  .section-label-aside {
    display: none;
  }

  .section-body,
  .article-body-section,
  .tag-body,
  .about-body,
  .privacy-body,
  .default-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-sidebar,
  .article-sidebar,
  .about-sidebar,
  .privacy-sidebar,
  .default-sidebar {
    position: static;
  }

  .section-hero,
  .tag-hero,
  .about-hero,
  .privacy-hero,
  .default-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 1.4rem;
  }

  .section-hero-aside,
  .about-hero-aside,
  .privacy-hero-aside,
  .default-hero-aside {
    display: none;
  }

  .card-grid--sections,
  .card-grid--stories {
    grid-template-columns: 1fr;
  }

  .marquee-section {
    padding: 0.6rem 1rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .article-nav-links,
  .about-cta-group,
  .privacy-cta-group,
  .tag-back {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}
