* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Outfit", sans-serif; background: #f8f7ff; color: #0f172a; }

.zb-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(248, 247, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 2rem; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
}
.zb-logo img { height: 60px; width: auto; display: block; }
.zb-menu { display: flex; gap: 0.25rem; }
.zb-menu a {
    color: #64748b; text-decoration: none;
    font-size: 0.9rem; font-weight: 500;
    padding: 0.45rem 0.9rem; border-radius: 8px;
}
.zb-menu a:hover, .zb-menu a.active { color: #6366f1; background: #eef2ff; }
.zb-actions { display: flex; align-items: center; gap: 0.75rem; }
.zb-login {
    color: #6366f1; font-weight: 600; font-size: 0.88rem;
    text-decoration: none; padding: 0.45rem 1rem;
    border-radius: 8px; border: 1.5px solid #6366f1;
}
.zb-login:hover { background: #eef2ff; }
.zb-cta {
    background: #6366f1; color: #fff; font-weight: 700;
    font-size: 0.88rem; padding: 0.5rem 1.1rem;
    border-radius: 9px; text-decoration: none;
}
.zb-cta:hover { background: #4f46e5; }
@media (max-width: 768px) { .zb-menu { display: none; } .zb-logo img { height: 52px; } }
@media (max-width: 480px) { .zb-login { display: none; } }

.zb-breadcrumb {
    margin-top: 68px;
    background: #fff; border-bottom: 1px solid #e2e8f0;
    padding: 0.75rem 2rem;
}
.zb-bc-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.85rem; color: #64748b;
    flex-wrap: wrap;
}
.zb-bc-inner a { color: #6366f1; text-decoration: none; }
.zb-bc-inner a:hover { text-decoration: underline; }
.zb-bc-inner .current {
    color: #0f172a; font-weight: 600;
    overflow: hidden; text-overflow: ellipsis;
    white-space: nowrap; max-width: 400px;
}

.zb-main { padding: 2rem; max-width: 1100px; margin: 68px auto 0; }
.zb-breadcrumb + .zb-main { margin-top: 0; }

/* ────────────────────────────────────────────────────────────
   Zabiris Blog — _styles.css
   Landing page CSS değişkenlerini miras alır.
   ──────────────────────────────────────────────────────────── */

/* ── Reset & Base ───────────────────────────────────────────── */
:root {
  --bg: #f8f7ff;
  --white: #fff;
  --ink: #0f172a;
  --ink2: #334155;
  --muted: #64748b;
  --muted2: #94a3b8;
  --border: #e2e8f0;
  --indigo: #6366f1;
  --indigo-d: #4f46e5;
  --indigo-l: #818cf8;
  --indigo-bg: #eef2ff;
  --green: #10b981;
  --green-bg: #ecfdf5;
  --orange: #f97316;
  --orange-bg: #fff7ed;
  --sh-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --sh: 0 4px 16px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --sh-lg: 0 20px 60px rgba(99,102,241,.12), 0 8px 24px rgba(0,0,0,.06);
  --r: 16px;
  --r-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(248,247,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 60px; width: auto; display: block; object-fit: contain; }
.nav-center { display: flex; gap: .25rem; }
.nav-center a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  padding: .45rem .9rem;
  border-radius: 8px;
  transition: all .18s;
}
.nav-center a:hover { color: var(--ink); background: var(--border); }
.nav-center a.active { color: var(--indigo); background: var(--indigo-bg); font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: .75rem; }
.nav-login {
  color: var(--indigo);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  padding: .45rem 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--indigo);
  transition: all .18s;
}
.nav-login:hover { background: var(--indigo-bg); }
.nav-cta {
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  padding: .5rem 1.1rem;
  border-radius: 9px;
  text-decoration: none;
  transition: all .18s;
  box-shadow: 0 2px 8px rgba(99,102,241,.3);
}
.nav-cta:hover { background: var(--indigo-d); transform: translateY(-1px); }

/* ── HAMBURGER BUTTON ───────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .2s;
}

/* ── MOBILE MENU ────────────────────────────────────────────── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 300;
}
.nav-mobile-overlay.open { display: block; }
.nav-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 280px;
  max-width: 85vw;
  background: var(--white);
  z-index: 400;
  transform: translateX(100%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.12);
}
.nav-mobile-menu.open { transform: translateX(0); }
.nav-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  padding: 1rem .75rem;
  gap: .15rem;
  overflow-y: auto;
  flex: 1;
}
.nav-mobile-links a {
  display: block;
  padding: .75rem 1rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s;
}
.nav-mobile-links a:hover { background: var(--bg); }
.nav-mobile-btns { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* ── BREADCRUMB BAR ─────────────────────────────────────────── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: .5rem 0;
  margin-top: 68px;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb {
  font-size: .8rem;
  color: var(--muted2);
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .15s; }
.breadcrumb a:hover { color: var(--indigo); }
.bc-sep    { color: var(--muted2); opacity: .6; }
.bc-current { color: var(--ink2); font-weight: 500; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.blog-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(68px + 2rem) 2rem 4rem;
}
.blog-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

/* ── BLOG LIST ──────────────────────────────────────────────── */
.blog-hero {
  margin-bottom: 2.5rem;
}
.blog-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .5rem;
}
.blog-hero p { color: var(--muted); font-size: 1rem; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.post-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .22s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.post-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
  border-color: #c7d2fe;
}
.post-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--indigo-bg), #e0e7ff);
  overflow: hidden;
  position: relative;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.post-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.post-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--indigo);
  background: var(--indigo-bg);
  padding: .2rem .6rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: .75rem;
}
.post-card-body h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: .5rem;
  flex: 1;
}
.post-card-body p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-meta {
  font-size: .75rem;
  color: var(--muted2);
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-top: auto;
}
.no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 0;
  color: var(--muted);
}
.no-posts .no-icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── SIDEBAR ────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.cat-list { list-style: none; display: flex; flex-direction: column; gap: .35rem; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  color: var(--muted);
  text-decoration: none;
  padding: .35rem .5rem;
  border-radius: 8px;
  transition: all .15s;
}
.cat-list a:hover, .cat-list a.active {
  color: var(--indigo);
  background: var(--indigo-bg);
  font-weight: 600;
}
.cat-cnt {
  font-size: .72rem;
  background: var(--border);
  color: var(--muted);
  padding: .1rem .45rem;
  border-radius: 20px;
}
.popular-list { display: flex; flex-direction: column; gap: .75rem; }
.popular-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}
.popular-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--border);
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}
.popular-item:hover .popular-title { color: var(--indigo); }
.popular-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink2);
  line-height: 1.4;
  transition: color .15s;
}

/* ── SIDEBAR CTA ────────────────────────────────────────────── */
.sidebar-cta {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-d));
  border-radius: var(--r);
  padding: 1.5rem;
  color: #fff;
  text-align: center;
}
.sidebar-cta h3 { font-size: .95rem; font-weight: 800; margin-bottom: .5rem; }
.sidebar-cta p  { font-size: .8rem; opacity: .85; margin-bottom: 1rem; line-height: 1.5; }
.sidebar-cta a {
  display: inline-block;
  background: #fff;
  color: var(--indigo);
  font-weight: 700;
  font-size: .85rem;
  padding: .55rem 1.2rem;
  border-radius: 9px;
  text-decoration: none;
  transition: all .18s;
}
.sidebar-cta a:hover { opacity: .92; transform: translateY(-1px); }

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.pagination a { border: 1.5px solid var(--border); color: var(--muted); background: var(--white); }
.pagination a:hover { border-color: var(--indigo); color: var(--indigo); }
.pagination span { background: var(--indigo); color: #fff; border: 1.5px solid var(--indigo); }

/* ── ARTICLE ────────────────────────────────────────────────── */
.article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
article {
  min-width: 0;
}
.article-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--indigo);
  background: var(--indigo-bg);
  padding: .25rem .7rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 1rem;
}
article h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 1rem;
}
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--muted2);
  font-size: .82rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.article-meta strong { color: var(--muted); }

/* Cover image */
.cover {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--r);
  display: block;
  margin-bottom: 2rem;
}
.cover-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--indigo-bg), #e0e7ff);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin-bottom: 2rem;
}

/* Article body content */
.content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink2);
}
.content h1, .content h2, .content h3, .content h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  margin: 1.75rem 0 .75rem;
  line-height: 1.3;
}
.content h1 { font-size: 1.75rem; font-weight: 800; }
.content h2 { font-size: 1.35rem; font-weight: 700; }
.content h3 { font-size: 1.1rem;  font-weight: 700; }
.content p  { margin-bottom: 1.2rem; }
.content ul, .content ol {
  margin: .75rem 0 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.content a { color: var(--indigo); text-decoration: underline; text-underline-offset: 3px; }
.content strong { font-weight: 700; color: var(--ink); }
.content blockquote {
  border-left: 4px solid var(--indigo);
  padding: .75rem 1.25rem;
  background: var(--indigo-bg);
  border-radius: 0 8px 8px 0;
  margin: 1.2rem 0;
  color: var(--ink2);
  font-style: italic;
}
.content code {
  background: var(--indigo-bg);
  color: var(--indigo);
  padding: .1em .4em;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: .9em;
}
.content pre {
  background: var(--ink);
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: var(--r-sm);
  overflow-x: auto;
  margin: 1.2rem 0;
}
.content pre code { background: none; color: inherit; padding: 0; }
.content img {
  max-width: 100%;
  border-radius: var(--r-sm);
  margin: 1rem 0;
}
.content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: .9rem;
}
.content th, .content td {
  border: 1px solid var(--border);
  padding: .6rem .8rem;
  text-align: left;
}
.content th { background: var(--indigo-bg); font-weight: 700; }
.content hr {
  border: none;
  border-top: 2px solid var(--border);
  margin: 2rem 0;
}

/* ── IN-ARTICLE CTA ─────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #4f46e5, var(--indigo));
  border-radius: var(--r);
  padding: 2rem 2rem;
  margin: 2.5rem 0;
  color: #fff;
  text-align: center;
}
.cta-box h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .5rem; }
.cta-box p  { font-size: .9rem; opacity: .9; margin-bottom: 1.25rem; line-height: 1.5; }
.cta-box .btn {
  display: inline-block;
  background: #fff;
  color: var(--indigo);
  font-weight: 700;
  font-size: .9rem;
  padding: .65rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
  transition: all .18s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.cta-box .btn:hover { transform: translateY(-2px); opacity: .95; }

/* ── RELATED POSTS ──────────────────────────────────────────── */
.related-posts { margin: 2.5rem 0; }
.related-posts h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.related-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  display: block;
}
.related-card:hover {
  border-color: #c7d2fe;
  box-shadow: var(--sh);
  transform: translateY(-2px);
}
.related-cat {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--indigo);
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
.related-card h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink2);
  line-height: 1.4;
}

/* ── SHARE BUTTONS ──────────────────────────────────────────── */
.share-buttons {
  margin: 2rem 0;
  padding: 1.25rem 0;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.share-buttons p {
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}
.share-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem 1rem;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s;
  border: 1.5px solid transparent;
}
.share-btn:hover { transform: translateY(-1px); opacity: .9; }
.share-tw { background: #000;    color: #fff; }
.share-fb { background: #1877f2; color: #fff; }
.share-li { background: #0077b5; color: #fff; }
.share-wa { background: #25d366; color: #fff; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  margin-top: 4rem;
}
.ft-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 1.5rem; }
.ft-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.ft-brand img { height: 48px; width: auto; display: block; margin-bottom: .75rem; filter: brightness(0) invert(1); opacity: .7; }
.ft-brand p { font-size: .82rem; line-height: 1.6; max-width: 220px; }
.ft-col h4 { color: #fff; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .75rem; }
.ft-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: .4rem; transition: color .15s; }
.ft-col a:hover { color: #fff; }
.ft-bottom { font-size: .75rem; display: flex; flex-direction: column; gap: .3rem; }
.ft-bottom a { color: rgba(255,255,255,.45); text-decoration: none; }
.ft-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-form {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 160px;
  padding: .5rem .8rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .82rem;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form button {
  padding: .5rem 1rem;
  border-radius: 8px;
  background: var(--indigo);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .18s;
}
.newsletter-form button:hover { background: var(--indigo-d); }

/* ── 404 ────────────────────────────────────────────────────── */
.not-found {
  min-height: calc(60vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}
.not-found .nf-icon { font-size: 5rem; margin-bottom: 1rem; }
.not-found h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.not-found p  { color: var(--muted); margin-bottom: 1.5rem; }
.not-found a  {
  display: inline-block;
  background: var(--indigo);
  color: #fff;
  font-weight: 700;
  padding: .65rem 1.5rem;
  border-radius: 9px;
  text-decoration: none;
}

/* ── MOBILE RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 0 1rem; }
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .nav-login  { display: none; }
  .nav-cta    { display: none; }
  .breadcrumb-bar { margin-top: 68px; }
}
@media (max-width: 900px) {
  .blog-inner, .article-wrap {
    grid-template-columns: 1fr;
  }
  .sidebar { position: static; }
}
@media (max-width: 640px) {
  .blog-wrap, .article-wrap { padding: 80px 1rem 3rem; }
  .post-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  article h1 { font-size: 1.5rem; }
  .content { font-size: .97rem; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .ft-top { grid-template-columns: 1fr; }
  .cta-box { padding: 1.5rem 1.25rem; }
}
