/*
Theme Name:   Meridian Outdoor Kitchens
Theme URI:    https://meridianoutdoorkitchens.com
Description:  Child theme for Meridian Outdoor Kitchens. Contains ALL page templates — custom full-page template for core/area pages, blog post template, blog index, and archive pages.
Author:       Meridian Outdoor Kitchens
Template:     hello-elementor
Version:      3.0.0
*/

/* ── GOOGLE FONTS ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── BRAND DESIGN SYSTEM ──────────────────────────────────────────── */
:root {
  --brand-dark:  #1A1208;
  --brand-stone: #2C2116;
  --brand-ember: #C4601A;
  --brand-amber: #E8922A;
  --brand-warm:  #F5C168;
  --brand-cream: #FAF5EC;
  --brand-off:   #F0E8D8;
  --text-dark:   #1A1208;
  --text-mid:    #4A3B28;
  --text-light:  #7A6B58;
  --border:      rgba(196, 96, 26, 0.2);
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* ── BASE RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); line-height: 1.2; color: var(--text-dark); }
a { color: var(--brand-ember); text-decoration: none; }
a:hover { color: var(--brand-amber); }
img { max-width: 100%; height: auto; display: block; }

/* Hide Hello Elementor's default header/footer (we use our own) */
.site-header, .site-footer { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════
   NAV — Shared across blog pages
   ═══════════════════════════════════════════════════════════════════ */
.mo-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 18, 8, 0.95);
  backdrop-filter: blur(10px);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(196, 96, 26, 0.3);
}
.mo-nav-logo {
  font-family: var(--serif);
  font-size: 18px; font-weight: 700;
  color: var(--brand-warm);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.mo-nav-logo span { color: #fff; font-weight: 400; }
.mo-nav-logo .mo-flame { font-size: 22px; }
.mo-nav-links {
  display: flex; gap: 28px; list-style: none;
  margin: 0; padding: 0;
}
.mo-nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.mo-nav-links a:hover { color: var(--brand-warm); }
.mo-nav-cta {
  background: var(--brand-ember);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
}
.mo-nav-cta:hover { background: var(--brand-amber); color: var(--brand-dark) !important; }

/* ═══════════════════════════════════════════════════════════════════
   READING PROGRESS BAR
   ═══════════════════════════════════════════════════════════════════ */
.mo-progress {
  position: fixed;
  top: 68px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-ember), var(--brand-warm));
  width: 0%;
  z-index: 99;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG POST — HERO
   ═══════════════════════════════════════════════════════════════════ */
.mo-post-hero {
  padding: 130px 24px 40px;
  background: linear-gradient(180deg, var(--brand-cream) 0%, #fff 100%);
  text-align: center;
}
.mo-post-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}
.mo-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.mo-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
}
.mo-breadcrumb a:hover { color: var(--brand-ember); }
.mo-breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

.mo-category {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  padding: 6px 16px;
  background: rgba(196, 96, 26, 0.08);
  border-radius: 100px;
  margin-bottom: 24px;
}

.mo-post-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.mo-post-excerpt {
  font-size: 19px;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.mo-post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
  flex-wrap: wrap;
}
.mo-post-meta .dot { opacity: 0.4; }
.mo-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-mid);
}
.mo-author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-ember);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  font-family: var(--sans);
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURED IMAGE
   ═══════════════════════════════════════════════════════════════════ */
.mo-featured-image {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 24px;
}
.mo-featured-image figure {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 18, 8, 0.15);
  background: var(--brand-stone);
}
.mo-featured-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════════
   ARTICLE LAYOUT
   ═══════════════════════════════════════════════════════════════════ */
.mo-article {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 0;
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 60px;
}

@media (max-width: 1100px) {
  .mo-article { grid-template-columns: 1fr; max-width: 760px; gap: 0; padding-top: 60px; }
  .mo-toc, .mo-side-empty { display: none; }
}

/* ── TABLE OF CONTENTS ── */
.mo-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 12px;
}
.mo-toc-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  margin-bottom: 16px;
}
.mo-toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid var(--border);
  padding: 4px 0 4px 16px;
}
.mo-toc-list a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
  display: block;
}
.mo-toc-list a:hover,
.mo-toc-list a.active { color: var(--brand-ember); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   ARTICLE BODY — TYPOGRAPHY & CONTENT STYLES
   ═══════════════════════════════════════════════════════════════════ */
.mo-article-body {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-mid);
}

/* First paragraph — drop cap */
.mo-article-body > p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  float: left;
  line-height: 0.9;
  padding: 8px 12px 0 0;
  color: var(--brand-ember);
}

.mo-article-body p {
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-mid);
}

/* Headings within article */
.mo-article-body h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 60px 0 20px;
  line-height: 1.25;
  position: relative;
}
.mo-article-body h2::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--brand-ember);
  margin-bottom: 14px;
  border-radius: 2px;
}

.mo-article-body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 14px;
  line-height: 1.3;
}

.mo-article-body h4 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 28px 0 10px;
  letter-spacing: 0.02em;
}

/* Links in body */
.mo-article-body a {
  color: var(--brand-ember);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.mo-article-body a:hover {
  color: var(--brand-amber);
  text-decoration-thickness: 2px;
}

/* Lists */
.mo-article-body ul,
.mo-article-body ol {
  margin: 20px 0 28px;
  padding-left: 0;
  list-style: none;
}
.mo-article-body ul li,
.mo-article-body ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.75;
}
.mo-article-body ul li::before {
  content: "";
  position: absolute;
  left: 8px; top: 14px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-ember);
}
.mo-article-body ol {
  counter-reset: mo-list;
}
.mo-article-body ol li {
  counter-increment: mo-list;
}
.mo-article-body ol li::before {
  content: counter(mo-list);
  position: absolute;
  left: 0; top: 2px;
  width: 24px; height: 24px;
  background: var(--brand-ember);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--sans);
}

/* Blockquote */
.mo-article-body blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--brand-ember);
  background: var(--brand-cream);
  border-radius: 0 12px 12px 0;
  position: relative;
}
.mo-article-body blockquote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 72px;
  color: var(--brand-ember);
  position: absolute;
  top: -4px;
  left: 16px;
  line-height: 1;
  opacity: 0.2;
}
.mo-article-body blockquote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-dark);
  margin: 0;
  position: relative;
  z-index: 1;
}
.mo-article-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* Callout boxes — Pro Tips, Warnings, Info */
.mo-callout {
  margin: 36px 0;
  padding: 24px 28px;
  border-radius: 12px;
  background: var(--brand-cream);
  border-left: 4px solid var(--brand-ember);
}
.mo-callout-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mo-callout-body,
.mo-callout p {
  margin: 0;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}
.mo-callout.warning {
  background: rgba(232, 146, 42, 0.08);
  border-left-color: var(--brand-amber);
}
.mo-callout.warning .mo-callout-label { color: var(--brand-amber); }
.mo-callout.info {
  background: rgba(26, 18, 8, 0.04);
  border-left-color: var(--brand-dark);
}
.mo-callout.info .mo-callout-label { color: var(--brand-dark); }

/* Images in body */
.mo-article-body img {
  border-radius: 12px;
  margin: 32px 0;
  box-shadow: 0 12px 32px rgba(26, 18, 8, 0.08);
}
.mo-article-body figure {
  margin: 36px 0;
}
.mo-article-body figcaption {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}

/* Tables */
.mo-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
}
.mo-article-body th {
  background: var(--brand-dark);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.mo-article-body td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.mo-article-body tr:nth-child(even) td {
  background: var(--brand-cream);
}

/* Code & pre */
.mo-article-body code {
  background: var(--brand-cream);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 15px;
  color: var(--brand-ember);
}
.mo-article-body pre {
  background: var(--brand-dark);
  color: #F5C168;
  padding: 24px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 28px 0;
  font-size: 14px;
}
.mo-article-body pre code {
  background: none;
  color: inherit;
  padding: 0;
}

/* Horizontal rule */
.mo-article-body hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 48px auto;
  max-width: 100px;
}

/* Inline CTA */
.mo-inline-cta {
  background: linear-gradient(135deg, var(--brand-ember), #A04A10);
  color: #fff;
  padding: 32px 36px;
  border-radius: 16px;
  margin: 48px 0;
  text-align: center;
}
.mo-inline-cta h3 {
  font-family: var(--serif);
  color: #fff;
  font-size: 24px;
  margin-bottom: 8px;
}
.mo-inline-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-size: 15px;
}
.mo-inline-cta .btn-white {
  background: #fff;
  color: var(--brand-ember);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  transition: all 0.2s;
}
.mo-inline-cta .btn-white:hover {
  background: var(--brand-warm);
  color: var(--brand-dark);
}

/* ═══════════════════════════════════════════════════════════════════
   SHARE BUTTONS
   ═══════════════════════════════════════════════════════════════════ */
.mo-share {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mo-share-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
}
.mo-share-buttons {
  display: flex;
  gap: 10px;
}
.mo-share-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-cream);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 16px;
}
.mo-share-btn:hover {
  background: var(--brand-ember);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════
   AUTHOR BIO BOX
   ═══════════════════════════════════════════════════════════════════ */
.mo-author-box {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--brand-cream);
  border-radius: 16px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.mo-author-box-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--brand-ember);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 28px;
  font-family: var(--serif);
  flex-shrink: 0;
}
.mo-author-box-meta {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  margin-bottom: 6px;
}
.mo-author-box-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.mo-author-box-bio {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════
   RELATED POSTS
   ═══════════════════════════════════════════════════════════════════ */
.mo-related {
  background: var(--brand-off);
  padding: 80px 24px;
  margin-top: 80px;
}
.mo-related-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.mo-related-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  margin-bottom: 8px;
}
.mo-related h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 36px;
}
.mo-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.mo-related-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mo-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(196, 96, 26, 0.1);
}
.mo-related-card-img {
  aspect-ratio: 16 / 10;
  background: var(--brand-stone);
  overflow: hidden;
}
.mo-related-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mo-related-card-body {
  padding: 22px 24px 26px;
}
.mo-related-card-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  margin-bottom: 8px;
}
.mo-related-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.mo-related-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.mo-related-card-meta {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════════════════
   CTA BAND — bottom of post
   ═══════════════════════════════════════════════════════════════════ */
.mo-cta-band {
  background: linear-gradient(135deg, var(--brand-ember), #A04A10);
  padding: 70px 24px;
  text-align: center;
}
.mo-cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  color: #fff;
  margin-bottom: 14px;
}
.mo-cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.mo-btn-white {
  background: #fff;
  color: var(--brand-ember);
  padding: 15px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.mo-btn-white:hover {
  background: var(--brand-warm);
  color: var(--brand-dark);
}
.mo-cta-phone {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}
.mo-cta-phone a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — shared with rest of site
   ═══════════════════════════════════════════════════════════════════ */
.mo-footer {
  background: var(--brand-dark);
  padding: 60px 24px 28px;
  color: rgba(255, 255, 255, 0.5);
}
.mo-footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.mo-footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 280px;
}
.mo-footer-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-warm);
}
.mo-footer-col h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}
.mo-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.mo-footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.mo-footer-col a:hover { color: var(--brand-warm); }
.mo-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.mo-footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.mo-footer-bottom a:hover { color: var(--brand-warm); }

/* ═══════════════════════════════════════════════════════════════════
   BLOG INDEX (home.php)
   ═══════════════════════════════════════════════════════════════════ */
.mo-blog-hero {
  padding: 130px 24px 60px;
  background: var(--brand-dark);
  text-align: center;
  color: #fff;
}
.mo-blog-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 54px);
  color: #fff;
  margin-bottom: 14px;
}
.mo-blog-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.mo-blog-index {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}
.mo-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.mo-blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.mo-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(196, 96, 26, 0.12);
}
.mo-blog-card-img {
  aspect-ratio: 16 / 10;
  background: var(--brand-stone);
  overflow: hidden;
}
.mo-blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.mo-blog-card:hover .mo-blog-card-img img {
  transform: scale(1.05);
}
.mo-blog-card-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mo-blog-card-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-ember);
  font-weight: 700;
  margin-bottom: 10px;
}
.mo-blog-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.mo-blog-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.mo-blog-card-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-top: auto;
}

/* Pagination */
.mo-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.mo-pagination a,
.mo-pagination span {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.mo-pagination a:hover {
  border-color: var(--brand-ember);
  color: var(--brand-ember);
}
.mo-pagination .current {
  background: var(--brand-ember);
  color: #fff;
  border-color: var(--brand-ember);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .mo-nav-links { display: none; }
  .mo-nav-links li:last-child { display: block; }
  .mo-footer-grid { grid-template-columns: 1fr 1fr; }
  .mo-article-body { font-size: 17px; }
  .mo-article-body p { font-size: 17px; }
  .mo-post-hero { padding-top: 100px; }
  .mo-author-box { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 500px) {
  .mo-footer-grid { grid-template-columns: 1fr; }
  .mo-footer-bottom { flex-direction: column; text-align: center; }
  .mo-article-body > p:first-of-type::first-letter {
    font-size: 48px; padding-right: 8px;
  }
}
