@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Merriweather:wght@300;400;700&display=swap');

/* ===== 基础变量 ===== */
:root {
  --mint: #b4fde1;
  --fog-blue: #add8e6;
  --ink: #172620;
  --mint-dark: #7de8c0;
  --blue-dark: #7ab8cc;
  --ink-soft: #2e4a3e;
  --bg: #f0faf6;
  --bg-card: #ffffff;
  --text: #172620;
  --text-muted: #4a6e60;
  --border: 3px solid var(--ink);
  --border-thin: 2px solid var(--ink);
  --radius-card: 18px;
  --radius-btn: 14px;
  --radius-pill: 999px;
  --shadow-outer: 4px 4px 0px var(--ink);
  --shadow-inner: inset -2px -2px 8px rgba(23,38,32,0.12);
  --shadow-card: 4px 4px 0px var(--ink), inset -1px -1px 6px rgba(23,38,32,0.08);
  --shadow-hover: 6px 6px 0px var(--ink), inset -2px -2px 10px rgba(23,38,32,0.1);
  --transition: 200ms cubic-bezier(0.34, 1.56);
  --font-display: 'Abril Fatface', Georgia, serif;
  --font-body: 'Merriweather', Georgia, 'Times New Roman', serif;
  --max-w: 900px;
  --max-w-wide: 1100px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--ink-soft);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

ul, ol {
  list-style: none;
}

/* ===== 导航 ===== */
.site-header {
  background: linear-gradient(135deg, var(--mint) 0%, var(--fog-blue) 100%);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 0 var(--ink);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  gap: 1rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  min-height: 40px;
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.nav-link:hover {
  background: rgba(23,38,32,0.08);
  border-color: var(--ink);
  transform: translateY(-2px);
  color: var(--ink);
}

.nav-link[aria-current="page"] {
  background: var(--ink);
  color: var(--mint);
  border-color: var(--ink);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.4rem 1rem;
  background: var(--ink);
  color: var(--mint);
  border-radius: var(--radius-btn);
  border: var(--border-thin);
  box-shadow: var(--shadow-outer);
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.nav-brand:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: var(--mint);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--mint);
  letter-spacing: 0.03em;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.nav-search-bar {
  background: rgba(180,253,225,0.5);
  border-top: 2px solid rgba(23,38,32,0.15);
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
}

.search-form {
  display: flex;
  max-width: 480px;
  width: 100%;
  gap: 0;
  border: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-outer);
}

.search-input {
  flex: 1;
  padding: 0.55rem 1rem;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: transparent;
  color: var(--ink);
  min-height: 40px;
}

.search-btn {
  padding: 0.55rem 1rem;
  background: var(--mint);
  border: none;
  border-left: var(--border);
  cursor: pointer;
  font-size: 1rem;
  min-height: 40px;
  min-width: 44px;
  transition: background var(--transition);
}

.search-btn:hover {
  background: var(--mint-dark);
}

/* ===== 主内容 ===== */
.main-content {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  width: 100%;
}

.page-article {
  width: 100%;
}

/* ===== Hero（首页）===== */
.hero-section {
  padding: 3rem 0 2rem;
  text-align: right;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.hero-badge {
  display: inline-block;
  background: var(--fog-blue);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: var(--border-thin);
  box-shadow: 2px 2px 0 var(--ink);
  letter-spacing: 0.04em;
}

.hero-badge--alt {
  background: var(--mint);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 var(--mint-dark);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.7;
  text-align: right;
}

/* ===== 内页 Hero ===== */
.page-hero {
  padding: 2rem 0 1.5rem;
  border-bottom: var(--border);
  margin-bottom: 2rem;
}

.page-hero--faq {
  background: linear-gradient(135deg, rgba(180,253,225,0.3) 0%, rgba(173,216,230,0.3) 100%);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-card);
  border: var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.page-hero--article {
  background: linear-gradient(135deg, rgba(173,216,230,0.3) 0%, rgba(180,253,225,0.2) 100%);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-card);
  border: var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb-link {
  color: var(--ink-soft);
  font-weight: 700;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.breadcrumb-link:hover {
  color: var(--ink);
}

.breadcrumb-sep {
  color: var(--text-muted);
  font-size: 1rem;
}

.breadcrumb-current {
  color: var(--text-muted);
}

.page-type-badge {
  display: inline-block;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: var(--border-thin);
  box-shadow: 2px 2px 0 var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
}

.page-type-badge--article {
  background: var(--fog-blue);
}

.page-type-badge--privacy {
  background: #ffe4b5;
}

.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.page-h1--about {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

.page-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 680px;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.page-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  background: rgba(180,253,225,0.4);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  border: 1px solid rgba(23,38,32,0.15);
}

.page-date--mod {
  background: rgba(173,216,230,0.4);
}

.hero-img-wrap {
  margin-top: 1.25rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--shadow-card);
}

.hero-img {
  width: 100%;
  height: auto;
}

/* ===== 段落标题 ===== */
.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  margin-top: 2.5rem;
}

.section-divider {
  border: none;
  border-top: 3px solid var(--ink);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* ===== 卡片网格 ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

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

.card-item {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 400ms cubic-bezier(0.34, 1.56) forwards;
  animation-delay: calc(var(--i, 0) * 80ms + 100ms);
}

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Clay 卡片 ===== */
.clay-card {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}

.clay-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.clay-card--article {
  background: linear-gradient(145deg, #ffffff, rgba(173,216,230,0.15));
}

.clay-card--related {
  background: linear-gradient(145deg, #ffffff, rgba(180,253,225,0.15));
}

.clay-card--nav {
  background: linear-gradient(145deg, rgba(180,253,225,0.2), #ffffff);
}

.clay-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}

.clay-card h3 a {
  color: var(--ink);
}

.clay-card h3 a:hover {
  color: var(--ink-soft);
}

.clay-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink);
  background: var(--mint);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  align-self: flex-start;
  min-height: 36px;
}

.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--mint-dark);
  color: var(--ink);
}

.card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(173,216,230,0.3);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(23,38,32,0.1);
  align-self: flex-start;
}

/* ===== 徽章 ===== */
.badge {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--ink);
  letter-spacing: 0.06em;
  align-self: flex-start;
}

.badge-faq {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 1px 1px 0 var(--ink);
}

.badge-article {
  background: var(--fog-blue);
  color: var(--ink);
  box-shadow: 1px 1px 0 var(--ink);
}

/* ===== 关联列表 ===== */
.related-list,
.related-list--articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.related-item {
  opacity: 0;
  transform: translateY(16px);
  animation: staggerIn 380ms cubic-bezier(0.34, 1.56) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 80ms);
}

/* ===== FAQ 内容区 ===== */
.faq-content-section,
.article-body-section,
.about-body-section,
.privacy-body-section,
.content-section,
.prose-section {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.faq-content-section h2,
.article-body-section h2,
.about-body-section h2,
.privacy-body-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 0.3rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--mint-dark);
}

.faq-content-section h3,
.article-body-section h3,
.about-body-section h3,
.privacy-body-section h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}

.faq-content-section p,
.article-body-section p,
.about-body-section p,
.privacy-body-section p,
.prose-section p {
  margin-bottom: 1rem;
}

.faq-content-section ul,
.article-body-section ul,
.about-body-section ul,
.privacy-body-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-content-section ol,
.article-body-section ol,
.about-body-section ol,
.privacy-body-section ol {
  list-style: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.faq-content-section li,
.article-body-section li,
.about-body-section li,
.privacy-body-section li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.faq-content-section a,
.article-body-section a,
.about-body-section a,
.privacy-body-section a,
.prose-section a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-color: var(--mint-dark);
  text-underline-offset: 3px;
  font-weight: 700;
}

.faq-content-section a:hover,
.article-body-section a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.faq-content-section table,
.article-body-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border: var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.faq-content-section th,
.article-body-section th {
  background: var(--ink);
  color: var(--mint);
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-align: left;
}

.faq-content-section td,
.article-body-section td {
  padding: 0.6rem 1rem;
  border-top: 2px solid rgba(23,38,32,0.1);
}

.faq-content-section tr:nth-child(even) td,
.article-body-section tr:nth-child(even) td {
  background: rgba(180,253,225,0.15);
}

/* ===== FAQ 推荐链接 ===== */
.faq-promo-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.faq-promo-item {
  border-radius: var(--radius-btn);
  border: var(--border-thin);
  overflow: hidden;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-promo-item:hover {
  transform: translateX(4px);
  box-shadow: 3px 3px 0 var(--ink);
}

.faq-promo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(180,253,225,0.2), rgba(173,216,230,0.1));
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 44px;
}

.faq-promo-link:hover {
  background: linear-gradient(90deg, rgba(180,253,225,0.5), rgba(173,216,230,0.3));
  color: var(--ink);
}

.faq-promo-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===== About 页特殊 ===== */
.about-hero-section {
  padding: 2.5rem 0 1.5rem;
  text-align: center;
  border-bottom: var(--border);
  margin-bottom: 2rem;
}

.about-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--mint), var(--fog-blue));
  border-radius: 50%;
  border: var(--border);
  box-shadow: var(--shadow-card);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-nav-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.about-nav-item {
  display: flex;
}

.about-nav-item .clay-card {
  width: 100%;
}

/* ===== Privacy 相关 ===== */
.privacy-hero-section {
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255,228,181,0.2), rgba(173,216,230,0.2));
  border-radius: var(--radius-card);
  border: var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
}

.privacy-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.privacy-related-item {
  display: flex;
}

.clay-pill-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.2rem;
  background: var(--mint);
  color: var(--ink);
  border: var(--border-thin);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-outer);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  min-height: 40px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.clay-pill-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: var(--mint-dark);
  color: var(--ink);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--ink);
  color: var(--mint);
  border-top: var(--border);
  margin-top: auto;
}

.footer-top {
  background: linear-gradient(135deg, rgba(180,253,225,0.08), rgba(173,216,230,0.06));
  border-bottom: 2px solid rgba(180,253,225,0.15);
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
}

.footer-subscribe {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.footer-subscribe-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(180,253,225,0.85);
  margin-bottom: 0.75rem;
}

.subscribe-form {
  display: flex;
  gap: 0;
  border: 2px solid var(--mint);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--mint-dark);
}

.subscribe-input {
  flex: 1;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  outline: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  min-height: 40px;
}

.subscribe-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.subscribe-btn {
  padding: 0.55rem 1.25rem;
  background: var(--mint);
  color: var(--ink);
  border: none;
  border-left: 2px solid var(--mint);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  min-height: 40px;
  transition: background var(--transition);
}

.subscribe-btn:hover {
  background: var(--mint-dark);
}

.footer-cols {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-dl {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-dt {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--mint);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(180,253,225,0.25);
  padding-bottom: 0.4rem;
}

.footer-dd {
  display: block;
}

.footer-link {
  color: rgba(180,253,225,0.75);
  font-size: 0.85rem;
  font-family: var(--font-body);
  transition: color 150ms ease;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-link:hover {
  color: var(--mint);
}

.footer-link[aria-current="page"] {
  color: white;
  font-weight: 700;
}

.footer-bottom {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(180,253,225,0.15);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(180,253,225,0.55);
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* ===== 内容内的h2后加hr（prose区） ===== */
.faq-content-section h2 + hr,
.article-body-section h2 + hr,
.prose-section h2 + hr {
  border: none;
  border-top: 2px solid var(--mint-dark);
  margin-bottom: 1rem;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
  .main-nav {
    flex-wrap: wrap;
    padding: 0.6rem 1rem;
    gap: 0.5rem;
  }

  .nav-left,
  .nav-right {
    flex-wrap: wrap;
    gap: 0.2rem;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.45rem 0.5rem;
  }

  .nav-brand {
    order: -1;
    margin: 0 auto;
  }

  .hero-section {
    min-height: 45vh;
    padding: 2rem 0 1.5rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

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

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-nav-list {
    grid-template-columns: 1fr;
  }

  .related-list,
  .related-list--articles {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 0 1rem 2rem;
  }

  .main-nav {
    padding: 0.5rem 0.75rem;
  }

  .nav-search-bar {
    padding: 0.4rem 0.75rem;
  }

  .page-hero--faq,
  .page-hero--article {
    padding: 1.5rem 1rem;
  }

  .privacy-hero-section {
    padding: 1.5rem 1rem 1.25rem;
  }

  .footer-cols {
    padding: 1.5rem 1rem;
  }

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

  .footer-top {
    padding: 1.5rem 1rem;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: var(--radius-btn);
  }

  .subscribe-btn {
    border-left: none;
    border-top: 2px solid var(--mint);
    border-radius: 0 0 var(--radius-btn) var(--radius-btn);
  }

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

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

  .hero-desc {
    text-align: left;
  }
}

/* ===== 减少动效 ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .card-item,
  .related-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
