.blog-preview-section {
  background: linear-gradient(180deg, #07110f 0%, #0d1b17 100%);
}
.blog-preview-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.post-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease);
}
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(97, 226, 184, 0.34);
}
.post-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
}
.post-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.post-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}
.post-card-meta,
.article-meta,
.breadcrumb {
  color: rgba(247, 251, 245, 0.62);
  font-size: 13px;
  font-weight: 700;
}
.post-card h3 {
  color: var(--text);
  font-size: 20px;
  line-height: 1.2;
}
.post-card p {
  color: rgba(247, 251, 245, 0.7);
  font-size: 15px;
}
.blog-shell {
  min-height: 100vh;
  background: var(--bg);
}
.blog-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 58px;
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.96), rgba(7, 17, 15, 0.72)),
    url('/assets/images/family-safety-hero.webp') center/cover no-repeat;
}
.blog-hero h1,
.article-hero h1 {
  max-width: 880px;
  margin-top: 18px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}
.blog-hero .lede,
.article-hero .lede {
  max-width: 760px;
}
.blog-list-section {
  padding: 72px 0 96px;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: 44px;
}
.article-cover {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.article-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 56px;
  align-items: start;
  padding: 72px 0;
}
.article-body {
  color: rgba(247, 251, 245, 0.84);
  font-size: 18px;
  line-height: 1.78;
}
.article-body p + p,
.article-body ul + p,
.article-body p + ul {
  margin-top: 18px;
}
.article-body h2 {
  margin: 48px 0 14px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.15;
}
.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}
.article-body li::marker {
  color: var(--green);
}
.article-note,
.toc,
.article-cta,
.faq-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}
.article-note,
.article-cta {
  margin-top: 34px;
  padding: 20px;
}
.article-cta {
  background: linear-gradient(135deg, rgba(97, 226, 184, 0.14), rgba(243, 180, 93, 0.08));
}
.article-cta p {
  margin: 0 0 16px;
}
.toc {
  position: sticky;
  top: 92px;
  padding: 18px;
}
.toc strong {
  display: block;
  margin-bottom: 12px;
}
.toc a {
  display: block;
  padding: 7px 0;
  color: rgba(247, 251, 245, 0.68);
  font-size: 14px;
}
.faq-block {
  margin-top: 46px;
  padding: 22px;
}
.faq-block h2 {
  margin-top: 0;
}
.faq-block details {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}
.faq-block summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}
.faq-block p {
  margin-top: 10px;
  color: rgba(247, 251, 245, 0.72);
}
.locale-switch a {
  display: inline-flex;
  min-width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(244, 239, 229, 0.72);
  font: 700 11px/1 var(--font-sans);
}
.locale-switch a.is-active {
  background: var(--cream);
  color: var(--ink);
}
@media (max-width: 920px) {
  .blog-preview-grid,
  .blog-grid,
  .article-hero-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    order: -1;
  }
  .article-hero {
    padding-top: 72px;
  }
}
@media (max-width: 640px) {
  .blog-preview-grid,
  .blog-grid {
    gap: 14px;
  }
  .article-body {
    font-size: 16px;
  }
  .article-body h2 {
    font-size: 26px;
  }
}
