@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;500;600;700&family=Playfair+Display+SC:wght@400;700&display=swap');

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

:root {
  --c-white: #ffffff;
  --c-light: #f5f5f5;
  --c-dark: #1f1f1f;
  --c-mid: #4a4a4a;
  --c-accent: #2a2a2a;
  --c-border: #e0e0e0;
  --c-muted: #767676;
  --c-overlay: rgba(31,31,31,0.92);

  --shadow-sm: 0 2px 8px rgba(31,31,31,0.08);
  --shadow-md: 0 6px 20px rgba(31,31,31,0.13);
  --shadow-lg: 0 16px 40px rgba(31,31,31,0.18);
  --shadow-xl: 0 28px 60px rgba(31,31,31,0.24);

  --radius: 18px;
  --radius-sm: 10px;

  --font-display: 'Playfair Display SC', 'Georgia', serif;
  --font-body: 'Karla', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  --header-h: 64px;
  --sidebar-w: 220px;
  --content-max: 1200px;
  --prose-max: 720px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-dark);
  background: var(--c-light);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
a { color: var(--c-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-mid); }
ul, ol { list-style: none; }

/* ===== 站点包裹 ===== */
.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== 顶部固定导航（桌面底部固定条风格） ===== */
.site-header {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--c-dark);
  color: var(--c-white);
  box-shadow: 0 -4px 24px rgba(31,31,31,0.22);
  height: var(--header-h);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
  padding: 10px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.brand:hover { color: var(--c-light); }

.top-nav {
  flex: 1;
  overflow: hidden;
}

.top-nav p {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
}
.top-nav p::-webkit-scrollbar { display: none; }

.top-nav p a {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: background .2s, color .2s;
}
.top-nav p a:hover,
.top-nav p a[aria-current="page"] {
  color: var(--c-white);
  background: rgba(255,255,255,0.12);
}

/* ===== 汉堡按钮 ===== */
.menu-toggle {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .2s;
}
.menu-toggle:hover { border-color: var(--c-white); }
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ===== 全屏遮罩菜单 ===== */
.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--c-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.fullscreen-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fullscreen-menu nav p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fullscreen-menu nav p a {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  padding: 14px 40px;
  min-height: 56px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 320px;
  max-width: 90vw;
  justify-content: center;
  letter-spacing: 0.04em;
  transition: color .2s, border-color .2s;
}
.fullscreen-menu nav p a:hover { color: var(--c-light); border-color: rgba(255,255,255,0.3); }

.menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  color: var(--c-white);
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.menu-close:hover { background: rgba(255,255,255,0.12); }

/* ===== main 区 ===== */
main {
  flex: 1;
  padding-bottom: calc(var(--header-h) + 32px);
  padding-top: 0;
}

/* ===== Hero 区（首页）===== */
.hero-section {
  background: var(--c-white);
  min-height: 45vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.hero-content {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 4;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--c-dark);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--c-mid);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-image {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

/* ===== 紧凑页头 ===== */
.page-hero {
  background: var(--c-white);
  padding: 48px 24px 36px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}
.page-hero.compact { padding: 40px 24px 28px; }
.page-hero .inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 12px 0 10px;
  color: var(--c-dark);
}
.page-sub {
  color: var(--c-mid);
  font-size: 1rem;
  margin-top: 8px;
}

/* ===== 面包屑 ===== */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb a { color: var(--c-mid); }
.breadcrumb a:hover { color: var(--c-dark); }

/* ===== 内容区 + 侧边栏 ===== */
.content-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 24px;
}

.content-with-aside {
  display: flex;
  gap: 36px;
  align-items: flex-start;
}

/* ===== 侧边栏（内容左侧）===== */
.sidebar {
  flex: 0 0 var(--sidebar-w);
  width: var(--sidebar-w);
  position: sticky;
  top: 24px;
  z-index: 10;
  order: -1;
}

.sidebar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--c-dark);
}
.sidebar-subtitle {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 14px 0 10px;
  color: var(--c-dark);
}

.aside-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.aside-links li a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--c-mid);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: background .2s, box-shadow .2s, transform .15s;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.aside-links li a:hover {
  background: var(--c-dark);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
  transform: translateX(2px);
}

.aside-divider { height: 1px; background: var(--c-border); margin: 16px 0; }

.aside-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  margin-top: 16px;
}
.aside-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.back-to-cat {
  margin-top: 16px;
  font-size: 0.88rem;
}
.back-to-cat a { color: var(--c-mid); }
.back-to-cat a:hover { color: var(--c-dark); }

/* ===== 主内容区 ===== */
.main-content {
  flex: 1;
  min-width: 0;
}

/* ===== 正文（prose）===== */
.prose {
  max-width: var(--prose-max);
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--c-dark);
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 20px 0 8px;
}
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--c-dark); text-decoration: underline; text-decoration-color: var(--c-border); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--c-dark); }
.prose strong { font-weight: 700; }
.prose em { font-style: italic; }
.prose blockquote {
  border-left: 3px solid var(--c-dark);
  padding-left: 18px;
  margin: 18px 0;
  color: var(--c-mid);
  font-style: italic;
}
.prose img { border-radius: var(--radius-sm); margin: 16px 0; box-shadow: var(--shadow-sm); }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.95rem; }
.prose th, .prose td { padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; }
.prose th { background: var(--c-light); font-weight: 600; }

/* ===== 按钮 ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--c-dark);
  color: var(--c-white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  min-height: 44px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .15s, background .2s;
}
.btn-primary:hover {
  background: var(--c-mid);
  color: var(--c-white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ===== 卡片 ===== */
.card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) translateZ(0);
}
.card-img img { width: 100%; height: 180px; object-fit: cover; border-radius: 0; }
.card-body { padding: 18px 20px; }
.card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card-title a { color: var(--c-dark); }
.card-title a:hover { color: var(--c-mid); }
.card-desc { font-size: 0.88rem; color: var(--c-mid); margin-bottom: 8px; line-height: 1.5; }
.card-date { font-size: 0.78rem; color: var(--c-muted); }

/* ===== 卡片网格 ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

/* ===== 分类卡片（首页大卡）===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 20px;
}

.cat-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  position: relative;
  z-index: 3;
}
.cat-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px) translateZ(0);
}
.cat-img img { width: 100%; height: 200px; object-fit: cover; border-radius: 0; }
.cat-info { padding: 22px 24px; }
.cat-info h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cat-info h3 a { color: var(--c-dark); }
.cat-info h3 a:hover { color: var(--c-mid); }
.cat-info p { font-size: 0.9rem; color: var(--c-mid); line-height: 1.6; }

/* ===== 各区块容器通用 ===== */
.cat-section,
.cards-section,
.entry-list,
.tag-results,
.related-entries,
.about-links-block,
.privacy-footer-links {
  margin-top: 40px;
  padding-top: 8px;
}

.cat-section h2,
.cards-section h2,
.entry-list h2,
.tag-results h2,
.related-entries h2,
.about-links-block h2,
.privacy-footer-links h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--c-dark);
}

/* ===== eyebrow 眉题 ===== */
small.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}

/* ===== DL 子页列表（栏目页）===== */
.entries-dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.entry-dt {
  background: var(--c-dark);
  padding: 14px 20px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-top: 20px;
}
.entry-dt:first-child { margin-top: 0; }
.entry-dt a {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.entry-dt a:hover { color: var(--c-light); }

.entry-dd {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 4px;
  box-shadow: var(--shadow-sm);
}
.dl-img img { width: 120px; height: 80px; object-fit: cover; flex-shrink: 0; border-radius: var(--radius-sm); }
.dl-info { flex: 1; min-width: 0; }
.dl-info p { font-size: 0.9rem; color: var(--c-mid); margin-bottom: 6px; }
.entry-date { font-size: 0.8rem; color: var(--c-muted); }

/* ===== 日期 meta ===== */
.entry-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}
.pub-date, .mod-date {
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ===== entry 页头 ===== */
.entry-header-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 40px 24px 0;
}
.entry-hero {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
  max-height: 400px;
}
.entry-hero img { width: 100%; height: 100%; object-fit: cover; max-height: 400px; border-radius: var(--radius); }
.entry-title-block {
  position: relative;
  z-index: 3;
}
.entry-title-block h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--c-dark);
}
.entry-desc { color: var(--c-mid); font-size: 1rem; margin-top: 4px; }

/* ===== 相关内容列表 ===== */
.related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.related-list li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  font-size: 0.92rem;
  color: var(--c-dark);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .15s;
}
.related-list li a:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}

/* ===== 标签页 ===== */
.tag-hero { position: relative; }
.tag-badge {
  display: inline-block;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  margin-top: 12px;
}

/* ===== about / privacy ===== */
.about-header-section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 24px 28px;
}
.about-header-section h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 12px 0 8px;
}
.privacy-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
}

.about-nav-list, .privacy-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.about-nav-list li a, .privacy-footer-links ul li a {
  display: block;
  padding: 10px 14px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  font-size: 0.92rem;
  color: var(--c-dark);
  transition: box-shadow .2s, transform .15s;
  box-shadow: var(--shadow-sm);
}
.about-nav-list li a:hover, .privacy-footer-links ul li a:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(3px);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--header-h);
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 48px 24px 28px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.footer-brand {
  flex: 1;
  min-width: 0;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 6px 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--c-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a {
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: var(--c-white); }

/* ===== z-index 层级辅助类 ===== */
.layer-2 { position: relative; z-index: 2; }
.layer-3 { position: relative; z-index: 3; }
.layer-4 { position: relative; z-index: 4; }

/* ===== 滚动显现动效 ===== */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .cat-card,
  .entry-dt,
  .entry-dd,
  .related-list li,
  .about-nav-list li {
    animation: fadeUpIn .45s ease both;
  }
  .cards-grid .card:nth-child(1) { animation-delay: .05s; }
  .cards-grid .card:nth-child(2) { animation-delay: .10s; }
  .cards-grid .card:nth-child(3) { animation-delay: .15s; }
  .cards-grid .card:nth-child(4) { animation-delay: .20s; }
  .cards-grid .card:nth-child(5) { animation-delay: .25s; }
  .cards-grid .card:nth-child(6) { animation-delay: .30s; }
  .cat-grid .cat-card:nth-child(1) { animation-delay: .08s; }
  .cat-grid .cat-card:nth-child(2) { animation-delay: .16s; }
  .cat-grid .cat-card:nth-child(3) { animation-delay: .24s; }
  @keyframes fadeUpIn {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ===== 响应式 ===== */
@media (max-width: 900px) {
  .content-with-aside {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    position: static;
    order: 0;
  }
  .aside-links li a,
  .footer-nav a {
    min-height: 44px;
  }
  .hero-content {
    flex-direction: column-reverse;
    gap: 24px;
    padding: 32px 20px;
  }
  .hero-image {
    max-width: 100%;
    flex: none;
    width: 100%;
  }
  .footer-inner {
    flex-direction: column;
    gap: 28px;
    padding: 36px 20px 20px;
  }
}

@media (max-width: 600px) {
  :root { --header-h: 56px; }
  body { font-size: 16px; }

  .header-inner { padding: 0 16px; gap: 12px; }
  .brand { font-size: 0.95rem; }
  .top-nav { display: none; }

  .prose { padding: 24px 20px; }
  .hero-text h1 { font-size: 1.5rem; }

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

  .entry-dd { flex-direction: column; }
  .dl-img img { width: 100%; height: 160px; }

  .content-section { padding: 24px 16px; }
  .entry-header-section { padding: 24px 16px 0; }
  .about-header-section { padding: 28px 16px 16px; }
  .page-hero { padding: 28px 16px 20px; }

  .fullscreen-menu nav p a { font-size: 1.1rem; padding: 12px 24px; width: 90vw; }

  .footer-logo { font-size: 2rem; }
}

@media (max-width: 375px) {
  .btn-primary { padding: 11px 20px; font-size: 0.9rem; }
  .hero-text h1 { font-size: 1.35rem; }
  .prose { padding: 18px 14px; }
}
