@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=Syncopate:wght@400;700&display=swap');

/* ============================================================
   CSS 自定义属性
   ============================================================ */
:root {
  --c-paper: #fdfbf7;
  --c-light: #f5f5f5;
  --c-ink: #1a1a1a;
  --c-border: #d0cdc8;
  --c-mid: #6b6864;
  --c-accent: #1a1a1a;
  --c-overlay: rgba(253, 251, 247, 0.97);

  --ff-display: 'Syncopate', 'Arial Narrow', sans-serif;
  --ff-mono: 'Space Mono', 'Courier New', monospace;
  --ff-body: 'Space Mono', Georgia, serif;

  --radius: 10px;
  --border: 1px solid var(--c-border);
  --max-w: 1100px;
  --prose-w: 720px;
  --gap: 1.5rem;
  --section-gap: 3rem;
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  /* Paper texture via CSS noise */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

a {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: none;
}

a:hover {
  opacity: 0.65;
}

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

ul, ol {
  list-style: none;
}

/* ============================================================
   页面骨架
   ============================================================ */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================================
   Header / 品牌栏
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-paper);
  border-bottom: var(--border);
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.brand-link {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--c-ink);
  line-height: 1.2;
}

/* 锚点面包屑 */
.anchor-bar {
  background: var(--c-light);
  border-top: var(--border);
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-family: var(--ff-mono);
  color: var(--c-mid);
  letter-spacing: 0.05em;
}

.anchor-bar a {
  color: var(--c-mid);
  text-decoration: none;
}

.anchor-bar a:hover {
  color: var(--c-ink);
  opacity: 1;
}

/* ============================================================
   汉堡按钮
   ============================================================ */
.nav-toggle {
  background: none;
  border: var(--border);
  border-radius: 4px;
  padding: 0.6rem 0.75rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-ink);
}

/* ============================================================
   全屏遮罩菜单
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: var(--border);
  border-radius: 4px;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  min-height: 44px;
  min-width: 44px;
  font-family: var(--ff-mono);
  color: var(--c-ink);
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  max-width: 600px;
  width: 90%;
}

.nav-overlay-link {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem;
  border: var(--border);
  border-radius: var(--radius);
  color: var(--c-ink);
  min-height: 44px;
}

.nav-overlay-link:hover {
  background: var(--c-light);
  opacity: 1;
}

/* ============================================================
   Hero Section（首页）
   ============================================================ */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 45vh;
  position: relative;
  border-bottom: var(--border);
  overflow: hidden;
  max-width: var(--max-w);
  margin: var(--gap) auto;
  border: var(--border);
  border-radius: var(--radius);
}

.hero-media {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: var(--c-light);
  border-right: var(--border);
}

.hero-text {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  background: var(--c-paper);
  position: relative;
}

.hero-text h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--c-mid);
  max-width: 320px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* 斜切色带 */
.hero-slash {
  position: absolute;
  left: -24px;
  top: 0;
  width: 48px;
  height: 100%;
  background: var(--c-paper);
  transform: skewX(-4deg);
  pointer-events: none;
  border-left: 2px solid var(--c-border);
}

/* ============================================================
   按钮
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-paper);
  background: var(--c-ink);
  border: 2px solid var(--c-ink);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--c-ink);
  opacity: 1;
}

/* ============================================================
   Eyebrow / 眉题
   ============================================================ */
small.eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin-bottom: 0.4rem;
}

/* ============================================================
   首页布局
   ============================================================ */
.home-main {
  flex: 1;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* 内容 + 侧栏 */
.content-section {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: var(--gap);
  margin: var(--section-gap) 0;
  align-items: start;
}

.content-figure {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.content-figure figcaption {
  margin-bottom: 1.5rem;
}

.content-figure h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 卡片区 */
.cards-section {
  margin: var(--section-gap) 0;
}

.cards-section > small.eyebrow {
  margin-bottom: 0.4rem;
}

.cards-section > h2 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--c-ink);
  padding-bottom: 0.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}

/* 子页卡片块 —— a > strong 直接子元素，不在 li 里 */
.card-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--c-ink);
  background: var(--c-paper);
  min-height: 44px;
}

.card-block:hover {
  background: var(--c-light);
  opacity: 1;
}

.card-block > strong {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--c-mid);
  line-height: 1.6;
}

.card-date {
  font-size: 0.75rem;
  font-family: var(--ff-mono);
  color: var(--c-mid);
  margin-top: auto;
}

/* ============================================================
   侧栏（aside）
   ============================================================ */
.home-aside,
.about-aside,
.about-links-aside,
.privacy-aside,
.privacy-nav-aside,
.article-aside,
.article-toc-aside,
.default-aside,
.default-body-aside {
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: var(--c-light);
}

.home-aside h3,
.about-aside h3,
.about-links-aside h3,
.privacy-aside h3,
.privacy-nav-aside h3,
.article-aside h3,
.article-toc-aside h3,
.default-aside h3,
.default-body-aside h3 {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

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

.aside-links li a {
  display: block;
  font-size: 0.85rem;
  font-family: var(--ff-mono);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-ink);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.aside-links li:last-child a {
  border-bottom: none;
}

.aside-links li a:hover {
  color: var(--c-mid);
  opacity: 1;
}

/* ============================================================
   文章页布局
   ============================================================ */
.article-main {
  flex: 1;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.article-header-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--gap);
  margin: var(--section-gap) 0 var(--gap);
  align-items: start;
}

.article-hero-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.article-hero-fig figcaption {
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-date,
.article-mod {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--c-mid);
}

.article-h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0.75rem 0 0.5rem;
}

.article-lead {
  font-size: 0.95rem;
  color: var(--c-mid);
  line-height: 1.7;
}

/* 文章正文区（aside 在左） */
.article-body-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap);
  margin: var(--gap) 0 var(--section-gap);
  align-items: start;
}

.article-content-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ============================================================
   About 页布局
   ============================================================ */
.about-main {
  flex: 1;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.about-intro-section {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: var(--gap);
  margin: var(--section-gap) 0 var(--gap);
  align-items: start;
}

.about-intro-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.about-intro-fig figcaption {
  margin-bottom: 1rem;
}

.about-intro-fig h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}

.about-lead {
  font-size: 0.95rem;
  color: var(--c-mid);
  margin-top: 0.75rem;
}

.about-body-section {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: var(--gap);
  margin: var(--gap) 0 var(--section-gap);
  align-items: start;
}

.about-content-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ============================================================
   Privacy 页布局
   ============================================================ */
.privacy-main {
  flex: 1;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.privacy-header-section {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: var(--gap);
  margin: var(--section-gap) 0 var(--gap);
  align-items: start;
}

.privacy-header-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.privacy-header-fig figcaption {
  margin-bottom: 1rem;
}

.privacy-header-fig h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-lead {
  font-size: 0.95rem;
  color: var(--c-mid);
  margin-top: 0.75rem;
}

.privacy-date {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--c-mid);
  margin-bottom: 0.5rem;
}

.privacy-body-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap);
  margin: var(--gap) 0 var(--section-gap);
  align-items: start;
}

.privacy-content-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ============================================================
   Default 页布局
   ============================================================ */
.default-main {
  flex: 1;
  padding: 0 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.default-header-section {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: var(--gap);
  margin: var(--section-gap) 0 var(--gap);
  align-items: start;
}

.default-header-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.default-header-fig figcaption {
  margin-bottom: 1rem;
}

.default-header-fig h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.default-lead {
  font-size: 0.95rem;
  color: var(--c-mid);
  margin-top: 0.75rem;
}

.default-body-section {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap);
  margin: var(--gap) 0 var(--section-gap);
  align-items: start;
}

.default-content-fig {
  border: var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* ============================================================
   Prose 正文排版
   ============================================================ */
.prose {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-ink);
  max-width: var(--prose-w);
}

.prose h2 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--c-border);
}

.prose h3 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
}

.prose p {
  margin-bottom: 1rem;
}

.prose ul,
.prose ol {
  margin: 0.75rem 0 1rem 1.5rem;
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose a {
  color: var(--c-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose blockquote {
  border-left: 3px solid var(--c-ink);
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: var(--c-mid);
  font-style: normal;
}

.prose code {
  font-family: var(--ff-mono);
  font-size: 0.85em;
  background: var(--c-light);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  border: var(--border);
}

.prose pre {
  background: var(--c-light);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9rem;
}

.prose th,
.prose td {
  border: var(--border);
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.prose th {
  background: var(--c-light);
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   页脚
   ============================================================ */
.site-footer {
  border-top: 2px solid var(--c-ink);
  margin-top: auto;
}

.footer-cta {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-cta-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta .btn-primary {
  background: var(--c-paper);
  color: var(--c-ink);
  border-color: var(--c-paper);
}

.footer-cta .btn-primary:hover {
  background: transparent;
  color: var(--c-paper);
  border-color: var(--c-paper);
}

.footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--gap);
  padding: 2rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: var(--border);
}

.footer-col {
  padding: 0.5rem 0;
}

.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.8;
  font-family: var(--ff-mono);
}

.footer-address strong {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

/* 页脚 DL 导航 */
.footer-dl {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
}

.footer-dl dt {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin-bottom: 0.5rem;
}

.footer-dl dd {
  margin: 0;
  padding: 0;
}

.footer-dl dd a {
  display: block;
  padding: 0.3rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  min-height: 40px;
  display: flex;
  align-items: center;
  color: var(--c-ink);
  font-size: 0.8rem;
  line-height: 1.4;
}

.footer-dl dd:last-child a {
  border-bottom: none;
}

.footer-dl dd a:hover {
  color: var(--c-mid);
  opacity: 1;
}

/* 页脚链接列表 */
.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--ff-mono);
}

.footer-link-list li a {
  display: flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
  padding: 0.3rem 0;
  color: var(--c-ink);
}

.footer-link-list li:last-child a {
  border-bottom: none;
}

.footer-link-list li a:hover {
  color: var(--c-mid);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--c-mid);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   Scroll Reveal（原生 JS 配合）
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* ============================================================
   响应式 — 平板 768px
   ============================================================ */
@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    height: 200px;
  }

  .hero-text {
    text-align: left;
    align-items: flex-start;
    padding: 1.5rem;
  }

  .hero-slash {
    display: none;
  }

  .content-section {
    grid-template-columns: 1fr;
  }

  .article-header-section {
    grid-template-columns: 1fr;
  }

  .article-body-section {
    grid-template-columns: 1fr;
  }

  .about-intro-section,
  .about-body-section {
    grid-template-columns: 1fr;
  }

  .privacy-header-section,
  .privacy-body-section {
    grid-template-columns: 1fr;
  }

  .default-header-section,
  .default-body-section {
    grid-template-columns: 1fr;
  }

  .footer-body {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   响应式 — 手机 375px
   ============================================================ */
@media (max-width: 600px) {
  .header-brand-row {
    padding: 1rem;
  }

  .brand-link {
    font-size: 0.85rem;
  }

  .home-main,
  .article-main,
  .about-main,
  .privacy-main,
  .default-main {
    padding: 0 1rem;
  }

  .anchor-bar {
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
  }

  .hero-section {
    margin: 0.75rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .content-figure,
  .article-hero-fig,
  .article-content-fig,
  .about-intro-fig,
  .about-content-fig,
  .privacy-header-fig,
  .privacy-content-fig,
  .default-header-fig,
  .default-content-fig {
    padding: 1.25rem;
  }

  .footer-body {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }

  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1rem;
  }

  .footer-cta-text {
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 0.75rem 1rem;
  }

  .nav-overlay-link {
    font-size: 0.85rem;
    padding: 0.85rem;
  }

  .section-gap {
    --section-gap: 2rem;
  }
}
