/* ═══════════════════════════════════════════════════════════════
   Blog Styles — TopShineCleaning
   ═══════════════════════════════════════════════════════════════ */

/* Variable aliases (maps to style.css variables) */
:root {
  --blog-accent:   var(--primary, #C99A3B);
  --blog-navy:     var(--secondary, #14233B);
  --blog-bg:       var(--light, #F8F8F6);
  --blog-white:    var(--white, #ffffff);
  --blog-text:     var(--text, #555);
  --blog-dark:     var(--dark, #1F1F1F);
  --blog-border:   var(--border, #E8E8E8);
  --blog-radius:   var(--radius, 8px);
}

/* ── Blog Hero ──────────────────────────────────────────────────
   Full-width dark banner with gold accent underline
   ─────────────────────────────────────────────────────────────── */
.blog-hero {
  background: linear-gradient(135deg, #0f1c2e 0%, #14233B 60%, #1a2f4a 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,154,59,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,154,59,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blog-accent);
  margin-bottom: 16px;
}
.blog-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.15;
}
.blog-hero h1 span { color: var(--blog-accent); }
.blog-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
/* Decorative divider */
.blog-hero-divider {
  width: 60px;
  height: 3px;
  background: var(--blog-accent);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* ── Category Filter Pills ──────────────────────────────────── */
.blog-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-filter a {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  transition: all .2s;
  text-transform: uppercase;
  letter-spacing: .06em;
  backdrop-filter: blur(4px);
}
.blog-filter a:hover {
  border-color: var(--blog-accent);
  color: var(--blog-accent);
  background: rgba(201,154,59,0.08);
}
.blog-filter a.active {
  background: var(--blog-accent);
  color: #fff;
  border-color: var(--blog-accent);
}

/* ── Section Wrapper ────────────────────────────────────────── */
.blog-section {
  padding: 72px 0 96px;
  background: var(--blog-bg);
}

/* ── Posts Grid ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ── Blog Card ──────────────────────────────────────────────── */
.blog-card {
  background: var(--blog-white);
  border: 1px solid var(--blog-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
  transform: translateY(-4px);
}

/* Image */
.blog-card-img-wrap { position: relative; overflow: hidden; }
.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder {
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, #e8e8e4, #d4d4ce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

/* Body */
.blog-card-body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Category badge */
.blog-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blog-accent);
  margin-bottom: 10px;
  display: block;
}

/* Title */
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blog-dark);
  margin: 0 0 10px;
  line-height: 1.28;
}
.blog-card-title a { text-decoration: none; color: inherit; }
.blog-card-title a:hover { color: var(--blog-accent); }

/* Excerpt */
.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--blog-text);
  line-height: 1.75;
  margin-bottom: 18px;
  flex: 1;
}

/* Meta */
.blog-card-meta {
  font-size: 11px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.blog-card-meta-dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: #ccc; }

/* Read more */
.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blog-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--blog-accent);
  padding-bottom: 2px;
  transition: color .15s, border-color .15s;
  width: fit-content;
}
.blog-card-read-more:hover { color: var(--blog-accent); }

/* ── Empty State ────────────────────────────────────────────── */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--blog-text);
}
.blog-empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
  display: block;
  opacity: 0.5;
}
.blog-empty h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--blog-dark);
  margin-bottom: 10px;
}
.blog-empty p { font-size: 14px; color: #aaa; }

/* ── Pagination ─────────────────────────────────────────────── */
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}
.blog-pagination a,
.blog-pagination span {
  padding: 9px 18px;
  border: 1.5px solid var(--blog-border);
  border-radius: var(--blog-radius);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: var(--blog-text);
  transition: all .15s;
}
.blog-pagination a:hover {
  border-color: var(--blog-navy);
  color: var(--blog-navy);
}
.blog-pagination span.current {
  background: var(--blog-accent);
  color: #fff;
  border-color: var(--blog-accent);
}

/* ─────────────────────────────────────────────────────────────
   SINGLE POST
   ───────────────────────────────────────────────────────────── */

/* Hero */
.post-hero-wrap {
  background: linear-gradient(135deg, #0f1c2e 0%, #14233B 100%);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.post-hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(201,154,59,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.post-hero-wrap .container { position: relative; z-index: 1; }

.post-category-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blog-accent);
  background: rgba(201,154,59,0.12);
  border: 1px solid rgba(201,154,59,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.post-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: #ffffff;
  max-width: 800px;
  line-height: 1.2;
  margin: 0 0 18px;
}
.post-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
}
.post-meta-sep { color: rgba(255,255,255,0.25); }
.post-hero-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
  margin-top: 8px;
}

/* Body */
.post-body-wrap {
  padding: 56px 0 96px;
  background: var(--blog-white);
}
.post-body-wrap .container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1200px;
}
.post-content {
  font-size: 16.5px;
  line-height: 1.9;
  color: #2a2a2a;
}
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  margin: 2em 0 .5em;
  color: var(--blog-dark);
}
.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  margin: 1.6em 0 .4em;
  color: var(--blog-dark);
}
.post-content p  { margin: 0 0 1.3em; }
.post-content img { max-width: 100%; border-radius: 6px; height: auto; margin: .5em 0; }
.post-content ul,
.post-content ol { padding-left: 24px; margin-bottom: 1.3em; }
.post-content li { margin-bottom: .5em; }
.post-content blockquote {
  border-left: 3px solid var(--blog-accent);
  padding: 12px 24px;
  font-style: italic;
  color: var(--blog-text);
  margin: 1.6em 0;
  background: var(--blog-bg);
  border-radius: 0 6px 6px 0;
}
.post-content a { color: var(--blog-accent); }
.post-content strong { font-weight: 700; color: var(--blog-dark); }
.post-content code {
  font-family: monospace;
  background: var(--blog-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}
.post-content pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 18px 20px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 1.3em;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.post-faqs {
  margin: 48px 0;
  padding-top: 40px;
  border-top: 1px solid var(--blog-border);
}
.post-faqs h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--blog-dark);
}
.post-faqs details {
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius);
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.post-faqs details[open] { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.post-faqs summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  color: var(--blog-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--blog-bg);
  user-select: none;
}
.post-faqs summary::-webkit-details-marker { display: none; }
.post-faqs summary::after {
  content: '+';
  font-size: 20px;
  color: var(--blog-accent);
  flex-shrink: 0;
  margin-left: 12px;
  font-weight: 400;
  transition: transform .2s;
}
.post-faqs details[open] summary {
  border-bottom: 1px solid var(--blog-border);
  background: var(--blog-white);
}
.post-faqs details[open] summary::after { content: '−'; }
.post-faqs p {
  margin: 0;
  padding: 16px 20px;
  color: var(--blog-text);
  line-height: 1.75;
  font-size: 14.5px;
  background: var(--blog-white);
}

/* ── Related Posts ──────────────────────────────────────────── */
.related-posts {
  margin: 56px 0 0;
  padding-top: 44px;
  border-top: 1px solid var(--blog-border);
}
.related-posts h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--blog-dark);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  border: 1px solid var(--blog-border);
  border-radius: var(--blog-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  display: block;
}
.related-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.09);
  transform: translateY(-2px);
}
.related-card img { width: 100%; height: 120px; object-fit: cover; display: block; }
.related-card-body { padding: 14px 16px; }
.related-card-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blog-accent);
  margin-bottom: 4px;
}
.related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--blog-dark);
}

/* ── Back link ──────────────────────────────────────────────── */
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blog-accent);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--blog-border);
  width: 100%;
  transition: gap .15s;
}
.post-back-link:hover { gap: 10px; }

/* ─────────────────────────────────────────────────────────────
   READING PROGRESS BAR
   ───────────────────────────────────────────────────────────── */
#reading-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 3px; background: rgba(201,154,59,0.15);
  pointer-events: none;
}
#reading-bar {
  height: 100%; width: 0%; background: var(--blog-accent);
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─────────────────────────────────────────────────────────────
   POST HERO — new design
   ───────────────────────────────────────────────────────────── */
.post-hero-wrap {
  background: linear-gradient(160deg, #0f1c2e 0%, #14233B 55%, #1b2f4d 100%);
  position: relative; overflow: hidden;
}
.post-hero-wrap::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--blog-white));
  pointer-events: none; z-index: 2;
}
.post-hero-wrap .container {
  padding-top: 52px;
  padding-bottom: 68px;
  position: relative; z-index: 1;
}

/* Breadcrumb */
.post-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin-bottom: 20px; flex-wrap: wrap;
}
.post-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .15s; }
.post-breadcrumb a:hover { color: var(--blog-accent); }
.post-breadcrumb span { color: rgba(255,255,255,0.25); }

/* Category badge */
.post-category-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blog-accent);
  background: rgba(201,154,59,0.12);
  border: 1px solid rgba(201,154,59,0.28);
  padding: 5px 14px; border-radius: 50px;
  margin-bottom: 18px;
}

/* Title */
.post-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 600; color: #ffffff;
  max-width: 780px; line-height: 1.18;
  margin: 0 0 16px;
}

/* Excerpt (subtitle) */
.post-hero-excerpt {
  font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 680px; line-height: 1.75;
  margin: 0 0 24px;
}

/* Meta bar */
.post-meta-bar {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap;
}
.post-meta-item {
  font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 5px;
}
.post-meta-item i { color: var(--blog-accent); font-size: 11px; }
.post-meta-sep { color: rgba(255,255,255,0.2); font-size: 10px; }

/* ─────────────────────────────────────────────────────────────
   POST BODY — two-column layout
   ───────────────────────────────────────────────────────────── */
.post-body-wrap {
  padding: 56px 0 96px;
  background: var(--blog-white);
}
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 960px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { order: -1; } /* Show sidebar above on mobile? Actually keep below */
}

/* ── Article / content ── */
.post-article {}
.post-content {
  font-size: 16.5px;
  line-height: 1.92;
  color: #2d2d2d;
  word-break: break-word;
}
.post-featured-image {
  margin: 0 0 32px;
}
.post-featured-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,.10);
}
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 600;
  margin: 2em 0 .5em; color: var(--blog-dark);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blog-border);
}
.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  margin: 1.6em 0 .4em; color: var(--blog-dark);
}
.post-content p  { margin: 0 0 1.3em; }
.post-content img {
  max-width: 100%; border-radius: 8px;
  height: auto; margin: .5em 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.post-content ul,
.post-content ol { padding-left: 26px; margin-bottom: 1.3em; }
.post-content li { margin-bottom: .55em; line-height: 1.7; }
.post-content blockquote {
  border-left: 3px solid var(--blog-accent);
  padding: 14px 24px;
  font-style: italic; color: var(--blog-text);
  margin: 1.8em 0;
  background: var(--blog-bg);
  border-radius: 0 8px 8px 0;
  font-size: 17px;
}
.post-content a { color: var(--blog-accent); text-decoration: underline; text-decoration-thickness: 1px; }
.post-content strong { font-weight: 700; color: var(--blog-dark); }
.post-content code {
  font-family: monospace; background: var(--blog-bg);
  padding: 2px 7px; border-radius: 4px; font-size: 14px;
}
.post-content pre {
  background: #1e1e1e; color: #d4d4d4;
  padding: 18px 22px; border-radius: 8px;
  overflow-x: auto; margin-bottom: 1.4em;
}
.post-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.4em; font-size: 15px; }
.post-content th { background: var(--blog-bg); padding: 10px 14px; font-weight: 700; text-align: left; border: 1px solid var(--blog-border); }
.post-content td { padding: 10px 14px; border: 1px solid var(--blog-border); }

/* ── Post footer strip (tag + share) ── */
.post-footer-strip {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 20px 0; margin: 40px 0 0;
  border-top: 1px solid var(--blog-border);
  border-bottom: 1px solid var(--blog-border);
}
.post-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blog-accent);
  border: 1px solid rgba(201,154,59,.35);
  padding: 5px 14px; border-radius: 50px;
}
.post-share {
  display: flex; align-items: center; gap: 10px;
}
.post-share span { font-size: 12px; font-weight: 600; color: #aaa; }
.post-share a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blog-bg); border: 1px solid var(--blog-border);
  color: var(--blog-text); font-size: 13px;
  transition: all .2s; text-decoration: none;
}
.post-share a:hover { background: var(--blog-accent); color: #fff; border-color: var(--blog-accent); }

/* ── Back link ── */
.post-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--blog-navy); font-weight: 600; font-size: 14px;
  text-decoration: none; margin-top: 28px;
  border: 1.5px solid var(--blog-border);
  padding: 10px 18px; border-radius: 6px;
  transition: all .2s;
}
.post-back-link:hover { border-color: var(--blog-accent); color: var(--blog-accent); gap: 12px; }

/* ── Back button (404 page) ── */
.post-back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blog-accent); color: #fff;
  padding: 12px 28px; border-radius: 6px; font-weight: 700;
  font-size: 14px; text-decoration: none; margin-top: 20px;
  transition: background .2s;
}
.post-back-btn:hover { background: #B88C2A; }

/* ── FAQ Accordion ── */
.post-faqs {
  margin: 48px 0;
  padding-top: 40px;
  border-top: 1px solid var(--blog-border);
}
.post-faqs h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  margin-bottom: 20px; color: var(--blog-dark);
  display: flex; align-items: center; gap: 10px;
}
.post-faqs h3 i { color: var(--blog-accent); font-size: 20px; }
.post-faqs details {
  border: 1px solid var(--blog-border);
  border-radius: 8px; margin-bottom: 10px;
  overflow: hidden; transition: box-shadow .2s;
}
.post-faqs details[open] { box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.post-faqs summary {
  font-weight: 600; cursor: pointer; font-size: 15px;
  color: var(--blog-dark); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 20px; background: var(--blog-bg); user-select: none;
}
.post-faqs summary::-webkit-details-marker { display: none; }
.post-faqs summary::after {
  content: '+'; font-size: 20px; color: var(--blog-accent);
  flex-shrink: 0; margin-left: 12px; font-weight: 300;
}
.post-faqs details[open] summary { border-bottom: 1px solid var(--blog-border); background: var(--blog-white); }
.post-faqs details[open] summary::after { content: '−'; }
.post-faqs p {
  margin: 0; padding: 16px 20px;
  color: var(--blog-text); line-height: 1.8; font-size: 14.5px;
  background: var(--blog-white);
}

/* ─────────────────────────────────────────────────────────────
   POST SIDEBAR
   ───────────────────────────────────────────────────────────── */
.post-sidebar {
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 24px;
}

/* CTA card */
.post-sidebar-cta {
  background: linear-gradient(145deg, #0f1c2e, #14233B);
  border-radius: 12px; padding: 28px 24px;
  text-align: center;
}
.psc-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,154,59,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 20px; color: var(--blog-accent);
}
.post-sidebar-cta h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: #fff; margin-bottom: 10px;
}
.post-sidebar-cta p {
  font-size: 13px; color: rgba(255,255,255,0.6);
  line-height: 1.65; margin-bottom: 20px;
}
.psc-btn {
  display: block; background: var(--blog-accent); color: #fff;
  text-decoration: none; padding: 11px 20px; border-radius: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; transition: background .2s;
}
.psc-btn:hover { background: #B88C2A; }

/* Related posts in sidebar */
.post-sidebar-related {
  background: var(--blog-bg); border-radius: 12px; padding: 20px;
  border: 1px solid var(--blog-border);
}
.post-sidebar-related h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--blog-dark);
  margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--blog-border);
}
.psr-item {
  display: flex; gap: 12px; align-items: flex-start;
  text-decoration: none; color: inherit;
  padding: 10px 0; border-bottom: 1px solid var(--blog-border);
  transition: opacity .15s;
}
.psr-item:last-child { border-bottom: none; padding-bottom: 0; }
.psr-item:hover { opacity: .8; }
.psr-item img, .psr-img-ph {
  width: 64px; height: 50px; border-radius: 6px;
  object-fit: cover; flex-shrink: 0;
}
.psr-img-ph {
  background: var(--blog-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #aaa;
}
.psr-body { display: flex; flex-direction: column; gap: 3px; }
.psr-cat  { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blog-accent); }
.psr-title { font-size: 13px; font-weight: 600; color: var(--blog-dark); line-height: 1.35; }
.psr-date  { font-size: 11px; color: #aaa; }

/* ── 404 page ── */
.post-not-found {
  min-height: 60vh; display: flex; align-items: center;
  background: var(--blog-bg); padding: 80px 0;
}
.pnf-inner { text-align: center; }
.pnf-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; font-weight: 700;
  color: var(--blog-accent); line-height: 1;
  display: block; margin-bottom: 16px;
}
.pnf-inner h1 { font-size: 32px; margin-bottom: 10px; }
.pnf-inner p  { color: var(--blog-text); margin-bottom: 28px; }

/* ── Mobile sidebar layout ── */
@media (max-width: 960px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; margin-top: 40px; }
  .post-layout .post-sidebar { order: 2; }
}
