@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

/* ── 设计令牌 ── */
:root {
  --c-mint: #b4fde1;
  --c-blue: #add8e6;
  --c-dark: #172620;
  --c-mint-mid: #7ef5c2;
  --c-blue-mid: #7ec8e3;
  --c-dark-muted: #2a3d35;
  --c-surface: #f0fdf7;
  --c-surface2: #e8f8f2;
  --c-text: #172620;
  --c-text-muted: #3a5c4a;
  --c-white: #ffffff;

  --r-card: 16px;
  --r-btn: 12px;
  --r-blob: 40% 60% 55% 45% / 50% 45% 55% 50%;

  --shadow-clay: 4px 4px 12px rgba(23,38,32,0.18), inset -2px -2px 8px rgba(255,255,255,0.45);
  --shadow-clay-hover: 6px 6px 18px rgba(23,38,32,0.25), inset -2px -2px 8px rgba(255,255,255,0.55);
  --shadow-card: 3px 3px 10px rgba(23,38,32,0.14), inset -1px -1px 6px rgba(255,255,255,0.4);

  --border-clay: 3px solid rgba(23,38,32,0.22);
  --border-accent: 4px solid var(--c-mint);

  --font-display: 'Great Vibes', cursive;
  --font-body: 'Cormorant Infant', Georgia, serif;
  --font-ui: system-ui, -apple-system, sans-serif;

  --max-w: 1160px;
  --gap: 1.5rem;
}

/* ── 重置 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-surface);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border-radius: 10px; }
a { color: var(--c-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ── 公告条 ── */
.announce-bar {
  background: var(--c-dark);
  color: var(--c-mint);
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.45rem 1rem;
}

/* ── 页头 ── */
.site-header {
  background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-blue) 100%);
  border-bottom: 3px solid rgba(23,38,32,0.15);
  box-shadow: 0 3px 14px rgba(23,38,32,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand-row {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.7rem 1.5rem 0.4rem;
  display: flex;
  align-items: center;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo { width: 36px; height: 36px; border-radius: 8px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--c-dark);
  line-height: 1;
  text-shadow: 1px 2px 0 rgba(255,255,255,0.4);
}

/* ── 导航 nav > ol > li > a ── */
.site-nav {
  background: var(--c-dark);
  border-top: 2px solid rgba(180,253,225,0.2);
}

.site-nav ol {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.site-nav ol li { display: flex; }

.site-nav ol li a {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-mint);
  letter-spacing: 0.03em;
  white-space: nowrap;
  border-right: 1px solid rgba(180,253,225,0.1);
  min-height: 44px;
  transition: background 0.18s, color 0.18s;
}

.site-nav ol li a:hover {
  background: rgba(180,253,225,0.12);
  color: var(--c-white);
  text-decoration: none;
}

/* ── Hero（首页）── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(120deg, var(--c-dark) 0%, #1e3d30 55%, var(--c-dark-muted) 100%);
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-article {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 5rem 2rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-slash {
  position: absolute;
  top: 0; right: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(125deg, var(--c-mint) 0%, var(--c-blue) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
  opacity: 0.18;
}

.hero-media {
  flex: 0 0 auto;
  z-index: 2;
}

.hero-clay-blob {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-blue) 100%);
  border-radius: var(--r-blob);
  border: 4px solid rgba(255,255,255,0.5);
  box-shadow: var(--shadow-clay);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: clay-float 4s ease-in-out infinite;
}

@keyframes clay-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.blob-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.blob-icon { font-size: 3.5rem; line-height: 1; }
.blob-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--c-dark);
  line-height: 1;
}
.blob-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-dark-muted);
  letter-spacing: 0.1em;
}

.hero-text {
  flex: 1;
  text-align: right;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--c-mint);
  color: var(--c-dark);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
  border: 2px solid rgba(23,38,32,0.2);
  box-shadow: var(--shadow-clay);
  margin-bottom: 1rem;
}

.hero-h1 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--c-mint);
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 2px 3px 0 rgba(0,0,0,0.3);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(180,253,225,0.8);
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

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

.hero-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(180,253,225,0.15);
  border: 2px solid var(--c-mint);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  color: var(--c-mint);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}

.hero-chip strong { font-weight: 600; }
.hero-chip:hover { background: rgba(180,253,225,0.28); text-decoration: none; }

/* ── 按钮 ── */
.btn-clay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-mint-mid) 100%);
  color: var(--c-dark);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.6rem;
  border-radius: var(--r-btn);
  border: 3px solid rgba(23,38,32,0.25);
  box-shadow: var(--shadow-clay);
  cursor: pointer;
  transition: box-shadow 0.2s cubic-bezier(0.34,1.56,0.64,1), transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  min-height: 44px;
}

.btn-clay:hover {
  box-shadow: var(--shadow-clay-hover);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-hero {
  background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-blue) 100%);
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-dark-muted);
  padding: 0.3rem 0;
  border-bottom: 2px solid var(--c-mint);
  transition: border-color 0.18s, color 0.18s;
}
.btn-link:hover { color: var(--c-dark); border-color: var(--c-blue); text-decoration: none; }

/* ── 容器 ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── 章节标题 ── */
.section-heading {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-dark);
  margin: 2.5rem 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.section-heading span {
  position: relative;
  padding-bottom: 0.15rem;
}

.section-heading span::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--c-mint), var(--c-blue));
  border-radius: 2px;
}

/* ── 首页专区卡片 ── */
.home-sections, .home-stories {
  padding: 3rem 0;
}

.inner-article { width: 100%; }

.cards-grid {
  display: grid;
  gap: var(--gap);
}

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

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

.clay-card {
  background: linear-gradient(145deg, var(--c-surface) 0%, rgba(180,253,225,0.2) 100%);
  border-radius: var(--r-card);
  border: var(--border-clay);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.22s cubic-bezier(0.34,1.56,0.64,1), transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.card-inner {
  flex: 1;
  padding: 1.2rem 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-img {
  border-radius: 10px;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.card-body { display: flex; flex-direction: column; gap: 0.5rem; }

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.3;
}

.card-title span { display: inline; }

.card-desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  flex: 1;
}

.card-date {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

.card-accent-line {
  height: 4px;
  background: linear-gradient(90deg, var(--c-mint), var(--c-blue));
  border-radius: 0 0 var(--r-card) var(--r-card);
  margin-top: auto;
}

/* ── 页内 Hero（非首页） ── */
.page-hero {
  background: linear-gradient(120deg, var(--c-dark) 0%, var(--c-dark-muted) 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(135deg, var(--c-mint) 0%, var(--c-blue) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.15;
}

.page-hero-article {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.page-h1 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--c-mint);
  line-height: 1.25;
  margin: 0.5rem 0 0.8rem;
}

.page-lead {
  font-size: 1rem;
  color: rgba(180,253,225,0.75);
  max-width: 600px;
  line-height: 1.65;
}

/* ── 面包屑 ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: rgba(180,253,225,0.6);
  margin-bottom: 0.5rem;
}
.breadcrumb a { color: rgba(180,253,225,0.8); }
.breadcrumb a:hover { color: var(--c-mint); }

/* ── 内容区 + 侧边 ── */
.content-section { padding: 2.5rem 0 3rem; }

.content-article { width: 100%; }

.content-with-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.content-main { min-width: 0; }

.content-aside { display: flex; flex-direction: column; gap: 1.2rem; }

.aside-box {
  background: linear-gradient(145deg, var(--c-surface) 0%, rgba(173,216,230,0.18) 100%);
  border-radius: var(--r-card);
  border: var(--border-clay);
  box-shadow: var(--shadow-card);
  padding: 1.2rem 1.1rem;
}

.aside-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.8rem;
  border-bottom: 2px solid var(--c-mint);
  padding-bottom: 0.4rem;
}

.aside-title span { display: inline; }

.aside-links { display: flex; flex-direction: column; gap: 0.4rem; }
.aside-links li a {
  display: flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--c-dark-muted);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  min-height: 36px;
}
.aside-links li a:hover {
  background: rgba(180,253,225,0.3);
  color: var(--c-dark);
  text-decoration: none;
}

/* ── 子页块列表（div 页用 a > strong 结构）── */
.child-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.child-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: linear-gradient(145deg, var(--c-white) 0%, rgba(180,253,225,0.2) 100%);
  border-radius: var(--r-card);
  border: 3px solid rgba(23,38,32,0.15);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.1rem;
  transition: box-shadow 0.2s cubic-bezier(0.34,1.56,0.64,1), transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
  border-bottom: 4px solid var(--c-mint);
}

.child-block:hover {
  box-shadow: var(--shadow-clay-hover);
  transform: translateY(-3px);
  text-decoration: none;
}

.child-block strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.35;
  display: block;
}

.child-desc {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  display: block;
}

/* ── 文章页 ── */
.story-top { padding: 0 0 3rem; }

.story-article {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem 0;
}

.story-h1 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.25;
  margin: 0.6rem 0 0.8rem;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.article-date {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--c-text-muted);
  background: rgba(180,253,225,0.4);
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
}

.story-hero-wrap {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.story-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.story-content { min-width: 0; }

/* ── 正文排版 ── */
.prose {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text);
}

.prose h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-dark);
  margin: 2rem 0 0.8rem;
  border-left: 4px solid var(--c-mint);
  padding-left: 0.7rem;
}

.prose h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-dark-muted);
  margin: 1.5rem 0 0.6rem;
}

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

.prose ul, .prose ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }

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

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

.prose blockquote {
  border-left: 4px solid var(--c-blue);
  background: rgba(173,216,230,0.15);
  padding: 0.8rem 1.2rem;
  border-radius: 0 10px 10px 0;
  margin: 1.2rem 0;
  font-style: italic;
}

.prose strong { font-weight: 700; color: var(--c-dark); }
.prose em { font-style: italic; }

/* ── 关于页 ── */
.about-top { padding: 2rem 0 3rem; }
.about-article {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}
.about-prose { margin-top: 1rem; }

.about-brand-box {
  text-align: center;
  background: linear-gradient(145deg, var(--c-mint) 0%, var(--c-blue) 100%);
}
.about-logo-big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--c-dark);
  margin-bottom: 0.6rem;
}

.about-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.about-section-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(145deg, var(--c-white) 0%, rgba(180,253,225,0.25) 100%);
  border-radius: var(--r-card);
  border: 3px solid rgba(23,38,32,0.15);
  box-shadow: var(--shadow-card);
  padding: 0.9rem 1rem;
  border-bottom: 4px solid var(--c-blue);
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-section-link:hover {
  box-shadow: var(--shadow-clay-hover);
  transform: translateY(-2px);
  text-decoration: none;
}
.about-section-link strong {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-dark);
}

/* ── 隐私页 ── */
.privacy-top { padding: 2rem 0 3rem; }
.privacy-article {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.privacy-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

/* ── 标签页 ── */
.tag-badge {
  display: inline-flex;
  align-items: center;
  background: var(--c-mint);
  color: var(--c-dark);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  border: 2px solid rgba(23,38,32,0.2);
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ── 页脚 ── */
.site-footer {
  background: var(--c-dark);
  color: rgba(180,253,225,0.75);
  padding: 3rem 0 0;
  margin-top: 3rem;
}

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

.footer-col dt {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-mint);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(180,253,225,0.2);
}

.footer-col dd { margin: 0; }
.footer-col dd + dd { margin-top: 0.35rem; }
.footer-col dd a {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(180,253,225,0.65);
  transition: color 0.15s;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer-col dd a:hover { color: var(--c-mint); text-decoration: none; }

.footer-copy {
  border-top: 1px solid rgba(180,253,225,0.12);
  text-align: center;
  padding: 1rem 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(180,253,225,0.4);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-clay-blob { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── 响应式 ── */
@media (max-width: 900px) {
  .content-with-aside,
  .story-layout,
  .about-layout,
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .content-aside { order: -1; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-article {
    flex-direction: column;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
  }
  .hero-text { text-align: center; }
  .hero-chips { justify-content: center; }
  .hero-slash { width: 100%; clip-path: polygon(0 75%, 100% 60%, 100% 100%, 0% 100%); opacity: 0.12; }
}

@media (max-width: 600px) {
  html { font-size: 16px; }
  .brand-name { font-size: 1.5rem; }
  .site-nav ol { flex-direction: column; }
  .site-nav ol li a {
    border-right: none;
    border-bottom: 1px solid rgba(180,253,225,0.1);
    padding: 0.8rem 1.2rem;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .cards-grid--section,
  .cards-grid--story,
  .child-blocks,
  .about-section-grid { grid-template-columns: 1fr; }
  .hero-clay-blob { width: 200px; height: 200px; }
  .blob-icon { font-size: 2.8rem; }
}

@media (max-width: 375px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-article { padding: 3rem 1rem 2rem; }
}
