/*
Theme Name: The Crispian Advantage
Theme URI: https://thecrispianadvantage.com
Author: The Crispian Advantage
Author URI: https://thecrispianadvantage.com
Description: Custom WordPress theme for The Crispian Advantage — Change Management for the AI Era. Navy, gold and cream editorial design system with blog support for LinkedIn post content.
Version: 1.0.0
License: Private
License URI: #
Text Domain: tca
Tags: business, consulting, blog, editorial
*/

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DESIGN TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --navy:       #1F3864;
  --navy-deep:  #152847;
  --gold:       #B8962E;
  --gold-light: #D4AF5A;
  --cream:      #F7F5F0;
  --cream-dark: #EDE9E0;
  --text:       #2C2C2C;
  --text-light: #5A5A5A;
  --white:      #FFFFFF;
  --max-w:      920px;
  --max-w-wide: 1100px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-nav {
  background: var(--navy);
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

.nav-logo .gold { color: var(--gold); }

.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-menu a { display: block; padding: 14px 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (shared across inner pages)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  background: var(--navy);
  padding: 90px 64px 70px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 28px;
}

.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.page-hero-lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  line-height: 1.8;
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   EYEBROW / SECTION LABELS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.eyebrow,
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.section { padding: 80px 64px; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-inner-wide { max-width: var(--max-w-wide); margin: 0 auto; }

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.section p {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 720px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy  { background: var(--navy); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-dark:hover { opacity: 0.85; }

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
}

.btn-secondary {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--white); }
.btn-secondary::after { content: '→'; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROOF STRIP / STATISTICS BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-band {
  background: var(--cream-dark);
  border-top: 3px solid var(--navy);
  border-bottom: 1px solid #d8d4cb;
  padding: 48px 64px;
}

.stats-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0;
  align-items: center;
}

.stat-item { padding: 0 40px; text-align: center; }
.stat-item:first-child { padding-left: 0; text-align: left; }
.stat-item:last-child  { padding-right: 0; text-align: right; }

.stat-divider { width: 1px; height: 60px; background: #c8c4bb; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.stat-source {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(44,44,44,0.4);
  font-style: italic;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROOF STRIP (homepage credential strip)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proof-strip {
  background: var(--cream-dark);
  border-top: 3px solid var(--gold);
  padding: 36px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item { text-align: center; flex: 1; min-width: 140px; }

.proof-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-desc {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.4;
}

.proof-divider { width: 1px; height: 40px; background: #c8c4bb; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-band {
  background: var(--gold);
  padding: 60px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cta-band-text p {
  font-size: 1rem;
  color: var(--navy);
  opacity: 0.75;
  max-width: 100%;
  margin: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PULLQUOTE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pullquote {
  background: var(--navy);
  border-left: 5px solid var(--gold);
  padding: 40px 48px;
  margin: 48px 0;
}

.pullquote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px;
}

.pullquote cite {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tca-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--navy); }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--gold-light); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--navy-deep);
  padding: 60px 64px 40px;
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-brand p {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG / LINKEDIN POSTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-archive {
  padding: 80px 64px;
  background: var(--cream);
}

.blog-archive-inner {
  max-width: var(--max-w-wide);
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.post-card:hover { border-color: var(--gold); }

.post-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
}

.post-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.post-card-cat {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-card-date {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.post-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.post-card h2 a { color: inherit; text-decoration: none; }
.post-card h2 a:hover { color: var(--gold); }

.post-card p.excerpt {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.post-card-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-start;
}

.post-card-link::after { content: '→'; }
.post-card-link:hover { color: var(--gold); border-color: var(--gold); }

/* LinkedIn badge */
.linkedin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,102,194,0.1);
  border: 1px solid rgba(10,102,194,0.25);
  padding: 3px 10px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0A66C2;
}

.linkedin-badge::before {
  content: 'in';
  font-weight: 700;
  font-family: sans-serif;
}

/* Single post */
.single-post {
  padding: 80px 64px;
  background: var(--white);
}

.single-post-inner { max-width: 720px; margin: 0 auto; }

.single-post-header { margin-bottom: 48px; }

.single-post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.single-post-content {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text);
}

.single-post-content p { margin-bottom: 24px; }
.single-post-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--navy); margin: 36px 0 16px; }
.single-post-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); margin: 28px 0 12px; }
.single-post-content blockquote { border-left: 4px solid var(--gold); padding: 16px 24px; margin: 32px 0; background: var(--cream); font-style: italic; color: var(--navy); font-size: 1.25rem; }
.single-post-content ul, .single-post-content ol { margin: 0 0 24px 24px; }
.single-post-content li { margin-bottom: 8px; }
.single-post-content a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.single-post-content img { margin: 32px 0; border: 1px solid var(--cream-dark); }

.linkedin-source-callout {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid #0A66C2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
}

.linkedin-source-callout a {
  color: #0A66C2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 48px 0 0;
}

.page-numbers {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  color: var(--text-light);
  border: 1px solid var(--cream-dark);
  text-decoration: none;
  transition: all 0.2s;
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE UTILITIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .section, .blog-archive, .single-post { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding-left: 24px; padding-right: 24px; }
  .proof-strip, .cta-band, .stats-band { padding-left: 24px; padding-right: 24px; }
  .stats-band-inner { grid-template-columns: 1fr; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { text-align: center !important; padding: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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