@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=EB+Garamond:wght@400;500;600;700;800&display=swap');

/* ============================
   CSS 变量 & 基础重置
   ============================ */
:root {
  --c-primary: #ff0000;
  --c-accent: #ff1493;
  --c-dark: #261717;
  --c-dark2: #1a0f0f;
  --c-dark3: #321f1f;
  --c-glass: rgba(255, 20, 147, 0.08);
  --c-glass-border: rgba(255, 0, 0, 0.25);
  --c-text: #f5e6e6;
  --c-text-muted: #c4a0a0;
  --c-link: #ff6b9d;
  --c-link-hover: #ff0000;
  --font-serif: 'EB Garamond', 'Crimson Text', Georgia, 'Times New Roman', serif;
  --nav-w: 220px;
  --radius: 0px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--c-dark);
  color: var(--c-text);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: var(--c-link);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--c-link-hover);
}

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

/* ============================
   极光背景动效
   ============================ */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-mesh {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 0, 0, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(255, 20, 147, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 50% 10%, rgba(255, 0, 80, 0.10) 0%, transparent 70%),
    conic-gradient(from 180deg at 50% 50%, #261717 0deg, #321f1f 90deg, #261717 180deg, #1a0f0f 270deg, #261717 360deg);
  background-size: 200% 200%;
  animation: auroraFlow 10s ease-in-out infinite alternate;
  filter: saturate(1.3);
}

@keyframes auroraFlow {
  0% { background-position: 0% 0%, 100% 100%, 50% 0%, center; }
  33% { background-position: 30% 60%, 70% 30%, 80% 50%, center; }
  66% { background-position: 60% 20%, 40% 80%, 20% 80%, center; }
  100% { background-position: 100% 50%, 0% 50%, 50% 100%, center; }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-mesh { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================
   页面骨架
   ============================ */
.page-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================
   顶部导航 (竖排胶囊，左侧固定)
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nav-w);
  height: 100vh;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: rgba(26, 15, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-right: 1px solid var(--c-glass-border);
  padding: 1.5rem 1rem;
  gap: 1rem;
  overflow-y: auto;
}

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

.nav-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.site-nav {
  flex: 1;
}

.site-nav p {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-nav p a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: var(--c-glass);
  border: 1px solid var(--c-glass-border);
  color: var(--c-text);
  font-size: 0.85rem;
  font-family: var(--font-serif);
  line-height: 1.4;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.site-nav p a:hover {
  background: linear-gradient(90deg, rgba(255,0,0,0.25), rgba(255,20,147,0.20));
  border-color: var(--c-primary);
  color: #fff;
}

.header-ticker {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-align: center;
  padding: 0.5rem 0;
  border-top: 1px solid var(--c-glass-border);
  letter-spacing: 0.05em;
}

/* ============================
   主内容偏移（留出侧导航宽度）
   ============================ */
.home-main,
.inner-main {
  margin-left: var(--nav-w);
  flex: 1;
  padding: 2rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

/* ============================
   极光 Hero（首页）
   ============================ */
.hero-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
}

.hero-media {
  flex-shrink: 0;
}

.brand-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255,0,0,0.4), 0 0 80px rgba(255,20,147,0.2);
}

.brand-icon-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-accent));
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 40px rgba(255,0,0,0.4), 0 0 80px rgba(255,20,147,0.2);
}

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

.hero-h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(120deg, #fff 0%, var(--c-accent) 60%, var(--c-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: opacity var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(255,0,0,0.35);
}

.hero-cta:hover {
  opacity: 0.9;
  box-shadow: 0 6px 30px rgba(255,20,147,0.5);
  color: #fff;
}

/* ============================
   首页文章结构
   ============================ */
.home-article {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.home-content-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.home-extra-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ============================
   内页布局
   ============================ */
.page-hero {
  margin-left: var(--nav-w);
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--c-glass-border);
}

.cat-hero,
.tag-hero,
.about-hero,
.privacy-hero {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 200px;
}

.cat-hero-img,
.cat-cover-img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(255,0,0,0.3);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.page-hero h1,
.cat-hero-copy h1,
.tag-hero-copy h1,
.about-hero-copy h1,
.privacy-hero-copy h1 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  background: linear-gradient(120deg, #fff 0%, var(--c-accent) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.cat-hero-desc,
.tag-hero-desc {
  color: var(--c-text-muted);
  font-size: 1rem;
  max-width: 560px;
}

.inner-article {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.inner-content-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* ============================
   正文容器
   ============================ */
.content-body {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}

.content-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #fff;
}

.content-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--c-text);
}

.content-body p {
  margin-bottom: 1.2rem;
  color: var(--c-text);
  line-height: 1.8;
}

.content-body ul,
.content-body ol {
  margin: 1rem 0 1.2rem 1.5rem;
}

.content-body li {
  margin-bottom: 0.5rem;
}

.content-body a {
  color: var(--c-accent);
  text-decoration: underline;
  text-decoration-color: rgba(255,20,147,0.4);
}

.content-body a:hover {
  color: var(--c-primary);
}

/* ============================
   玻璃拟态卡片
   ============================ */
.glass-card {
  background: var(--c-glass);
  border: 1px solid var(--c-glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.25rem;
  transition: border-color var(--transition), background var(--transition);
}

.glass-card:hover {
  border-color: var(--c-primary);
  background: rgba(255, 20, 147, 0.12);
}

/* ============================
   侧边栏
   ============================ */
.content-aside,
.home-aside {
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.aside-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.aside-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--c-glass-border);
}

.aside-nav-link {
  display: block;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  border-radius: 4px;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: color var(--transition), background var(--transition);
}

.aside-nav-link:hover {
  color: #fff;
  background: rgba(255,0,0,0.1);
}

.aside-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,20,147,0.12);
  border: 1px solid rgba(255,20,147,0.3);
  font-size: 0.8rem;
  color: var(--c-accent);
  min-height: 32px;
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}

.tag-pill:hover,
.tag-pill.active {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

/* ============================
   区块标题
   ============================ */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title span {
  background: linear-gradient(90deg, #fff, var(--c-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  margin-top: 0.5rem;
}

/* ============================
   分类卡片网格
   ============================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cat-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cat-card-thumb {
  height: 160px;
  overflow: hidden;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card:hover .cat-card-img {
  transform: scale(1.05);
}

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

.cat-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.cat-card-title span {
  display: inline;
}

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

.cat-card-link {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  color: #fff;
  font-size: 0.85rem;
  border-radius: 999px;
  align-self: flex-start;
  min-height: 36px;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.cat-card-link:hover {
  opacity: 0.85;
  color: #fff;
}

/* ============================
   图集入口卡片网格
   ============================ */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.entry-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.entry-card-thumb {
  height: 180px;
  overflow: hidden;
}

.entry-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.entry-card:hover .entry-thumb {
  transform: scale(1.06);
}

.entry-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.entry-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.entry-card-title span {
  display: inline;
}

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

.entry-date,
.entry-card .entry-date {
  font-size: 0.78rem;
  color: var(--c-accent);
}

.entry-card-link {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(255,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.4);
  color: var(--c-link);
  font-size: 0.82rem;
  border-radius: 999px;
  align-self: flex-start;
  min-height: 34px;
  display: flex;
  align-items: center;
  transition: background var(--transition), color var(--transition);
}

.entry-card-link:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

/* ============================
   子页列表（dl > dt > a + dd）
   ============================ */
.child-list-section {
  padding: 1rem 0;
}

.child-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.child-dt {
  padding: 0.9rem 1.2rem 0.4rem;
  background: rgba(255,20,147,0.06);
  border-left: 3px solid var(--c-primary);
  margin-top: 1rem;
}

.child-dt:first-of-type {
  margin-top: 0;
}

.child-dt a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}

.child-dt a:hover {
  color: var(--c-accent);
}

.child-desc {
  padding: 0.3rem 1.2rem 0.3rem 1.5rem;
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.child-date {
  padding: 0.2rem 1.2rem 0.2rem 1.5rem;
  font-size: 0.8rem;
  color: var(--c-accent);
}

.child-img {
  padding: 0.5rem 1.2rem 0.5rem 1.5rem;
}

.child-img img {
  height: 100px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius);
}

.no-children {
  color: var(--c-text-muted);
  font-style: italic;
}

/* ============================
   入口页（entry）
   ============================ */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--c-accent);
}

.breadcrumb span[aria-hidden] {
  color: var(--c-glass-border);
}

.entry-hero-wrap {
  margin-bottom: 1.5rem;
  max-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(255,0,0,0.25);
}

.entry-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.entry-h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.75rem;
}

.entry-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.entry-meta-date {
  font-size: 0.85rem;
  color: var(--c-accent);
}

.entry-body-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.entry-content {
  max-width: 720px;
  flex: 1;
}

/* ============================
   页脚
   ============================ */
.site-footer {
  margin-left: var(--nav-w);
  background: rgba(26, 15, 15, 0.95);
  border-top: 1px solid var(--c-glass-border);
  position: relative;
  z-index: 1;
}

.footer-cta {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(90deg, rgba(255,0,0,0.08), rgba(255,20,147,0.06));
  border-bottom: 1px solid var(--c-glass-border);
  flex-wrap: wrap;
}

.footer-cta-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.footer-cta-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: linear-gradient(90deg, var(--c-primary), var(--c-accent));
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  border-radius: 999px;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.footer-cta-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.footer-cols {
  display: flex;
  gap: 2rem;
  padding: 2rem 2rem;
  flex-wrap: wrap;
}

.footer-dl {
  flex: 1;
  min-width: 140px;
}

.footer-dl dt {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--c-glass-border);
}

.footer-dl dt span {
  display: inline;
}

.footer-dl dd {
  margin: 0 0 0.4rem;
}

.footer-dl dd a {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
  min-height: 32px;
  display: flex;
  align-items: center;
}

.footer-dl dd a:hover {
  color: #fff;
}

.footer-bar {
  padding: 1rem 2rem;
  border-top: 1px solid var(--c-glass-border);
  text-align: center;
}

.footer-bar p {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

/* ============================
   标题装饰 span
   ============================ */
h2 > span,
h3 > span {
  display: inline;
}

/* ============================
   Scroll Reveal 动效
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* stagger for child items */
.cat-card.reveal,
.entry-card.reveal {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ============================
   关于 / 隐私页面正文排版
   ============================ */
.about-content,
.privacy-content {
  max-width: 680px;
}

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

  .content-aside,
  .home-aside {
    width: 200px;
  }

  .cat-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --nav-w: 0px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid var(--c-glass-border);
  }

  .header-brand {
    padding: 0;
    border-bottom: none;
    border-right: 1px solid var(--c-glass-border);
    padding-right: 0.75rem;
    flex-shrink: 0;
  }

  .nav-logo-text,
  .nav-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .site-nav {
    flex: 1;
    overflow-x: auto;
  }

  .site-nav p {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .site-nav p a {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
    min-height: 40px;
  }

  .header-ticker {
    display: none;
  }

  .home-main,
  .inner-main {
    margin-left: 0;
    padding: 5rem 1rem 1.5rem;
  }

  .page-hero {
    margin-left: 0;
    padding: 5rem 1rem 1.5rem;
  }

  .site-footer {
    margin-left: 0;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-inner {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .brand-icon,
  .brand-icon-text {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .hero-h1 {
    font-size: 1.6rem;
  }

  .home-content-section,
  .inner-content-section,
  .entry-body-section {
    flex-direction: column;
  }

  .content-aside,
  .home-aside {
    width: 100%;
  }

  .cat-hero,
  .tag-hero,
  .about-hero,
  .privacy-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    min-height: auto;
  }

  .cat-hero-img {
    width: 100%;
    height: 160px;
  }

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

  .footer-cols {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

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

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

  .hero-h1 {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 1.3rem;
  }
}
