/* ============================================================
   TABULA RASA — blog.css
   ============================================================ */

/* Hero blog stats */
.hero-blog-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255,255,255,0.08); }
.hero-stat { padding: 1.8rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); position: relative; }
.hero-stat::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2rem; height: 2px; background: var(--gold); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 0.4rem; font-weight: 500; }

/* Featured post */
.featured-section { background: var(--white); padding: 5rem 0 0; }
.featured-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.featured-label { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.featured-label span { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.featured-label::before { content: ''; width: 2.5rem; height: 2px; background: var(--gold); flex-shrink: 0; }
.featured-card { display: grid; grid-template-columns: 1.1fr 1fr; border: 1px solid var(--border); overflow: hidden; transition: box-shadow 0.3s; }
.featured-card:hover { box-shadow: 0 20px 60px rgba(11,31,58,0.12); }
.featured-img { position: relative; overflow: hidden; min-height: 440px; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.featured-card:hover .featured-img img { transform: scale(1.04); }
.featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,31,58,0.3) 0%, transparent 50%); }
.featured-badge { position: absolute; top: 1.5rem; left: 1.5rem; background: var(--gold); color: var(--navy); padding: 0.35rem 0.9rem; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; }
.featured-body { padding: 3.5rem; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.featured-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.meta-cat { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; background: rgba(201,168,76,0.1); padding: 0.3rem 0.75rem; }
.meta-date, .meta-author { font-size: 0.75rem; color: var(--text-soft); font-weight: 300; }
.meta-dot { color: var(--border); }
.featured-body h2 { font-family: 'Playfair Display', serif; font-size: 1.85rem; font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1.2rem; }
.featured-body h2 a { text-decoration: none; color: inherit; transition: color 0.2s; }
.featured-body h2 a:hover { color: var(--gold); }
.featured-excerpt { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; font-weight: 300; margin-bottom: 2rem; }
.read-more-btn { display: inline-flex; align-items: center; gap: 0.7rem; background: var(--navy); color: var(--white); padding: 0.8rem 1.8rem; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; font-weight: 600; border: 2px solid var(--navy); transition: all 0.22s; width: fit-content; }
.read-more-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Filter bar */
.filter-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.2rem 0; position: sticky; top: 72px; z-index: 100; }
.filter-inner { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.filter-label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-right: 0.5rem; flex-shrink: 0; }
.filter-btn { font-size: 0.73rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding: 0.45rem 1.1rem; border: 1px solid var(--border); background: transparent; color: var(--text-soft); cursor: pointer; transition: all 0.18s; font-family: 'Outfit', sans-serif; }
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* Posts grid */
.posts-section { background: var(--off-white); padding: 3.5rem 0 6rem; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.25s, transform 0.25s; }
.post-card:hover { box-shadow: 0 12px 40px rgba(11,31,58,0.1); transform: translateY(-4px); }
.post-card.hidden { display: none; }
.post-thumb { position: relative; overflow: hidden; padding-top: 62%; }
.post-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.35) 0%, transparent 50%); }
.post-cat-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--gold); color: var(--navy); padding: 0.28rem 0.75rem; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; }
.post-body { padding: 1.6rem 1.8rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; font-size: 0.72rem; color: var(--text-soft); font-weight: 300; flex-wrap: wrap; }
.post-meta-dot { color: var(--border); }
.post-author { color: var(--gold); font-weight: 500; }
.post-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 0.85rem; flex: 1; }
.post-body h3 a { text-decoration: none; color: inherit; transition: color 0.2s; }
.post-body h3 a:hover { color: var(--gold); }
.post-excerpt { font-size: 0.84rem; color: var(--text-soft); line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.1rem; border-top: 1px solid var(--border); margin-top: auto; }
.post-read-more { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.post-read-more:hover { gap: 0.75rem; }

/* Newsletter (dark variant for blog) */
.newsletter-section { background: var(--navy); padding: 5rem 0; }
.newsletter-section .newsletter-copy h3 { color: var(--white); }
.newsletter-section .newsletter-copy p { color: rgba(255,255,255,0.55); }
.newsletter-section .newsletter-form input[type="email"] { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06); color: var(--white); }
.newsletter-section .newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }

/* Responsive */
@media (max-width: 1024px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 300px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; }
  .featured-body { padding: 2rem; }
  .hero-blog-stats { grid-template-columns: 1fr; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ── NEWSLETTER FORM WRAP ────────────────────────────────── */
.newsletter-form-wrap { width: 100%; }

/* ============================================================
   SINGLE POST PAGE STYLES
   Added directly to blog.css so they load on is_singular('post')
   without requiring a separate blog-article.css file.
   ============================================================ */

/* Reading progress bar */
.reading-progress{position:fixed;top:72px;left:0;right:0;height:3px;background:rgba(201,168,76,.15);z-index:199;pointer-events:none}
.reading-progress-fill{height:100%;background:var(--gold);width:0%;transition:width .1s linear}

/* Post hero */
.post-hero{background:var(--navy);padding-top:72px;position:relative;overflow:hidden}
.hero-cover{position:relative;height:520px;overflow:hidden}
.hero-cover img{width:100%;height:100%;object-fit:cover;object-position:center;opacity:.45;filter:saturate(.6);display:block}
.hero-cover-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(11,31,58,.3) 0%,rgba(11,31,58,.85) 70%,var(--navy) 100%)}
.hero-cover-stripe{position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(to bottom,transparent,var(--gold),transparent)}
.hero-meta-bar{position:absolute;bottom:0;left:0;right:0;max-width:1200px;margin:0 auto;padding:0 2.5rem 3rem}
.post-hero-no-image .hero-meta-bar{position:relative;padding:4rem 2.5rem 3rem;max-width:1200px;margin:0 auto}
.post-breadcrumb{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:1.4rem}
.post-breadcrumb a{color:var(--gold);text-decoration:none}
.post-breadcrumb span{margin:0 .5rem}
.post-category{display:inline-flex;align-items:center;background:var(--gold);color:var(--navy);font-size:.65rem;letter-spacing:.16em;text-transform:uppercase;font-weight:700;padding:.3rem .85rem;margin-bottom:1.2rem;text-decoration:none}
.post-hero-title{font-family:'Playfair Display',serif;font-size:clamp(2rem,4vw,3.6rem);font-weight:700;color:var(--white);line-height:1.15;max-width:80%;margin-bottom:1.5rem}
.post-byline{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.byline-avatar{width:42px;height:42px;border-radius:50%;border:2px solid var(--gold);object-fit:cover;flex-shrink:0}
.byline-name{font-size:.84rem;font-weight:600;color:var(--white)}
.byline-date{font-size:.78rem;color:rgba(255,255,255,.45);font-weight:300}
.byline-sep{width:1px;height:24px;background:rgba(255,255,255,.15);flex-shrink:0}
.byline-read{font-size:.75rem;color:rgba(255,255,255,.45);font-weight:300}

/* Post layout grid */
.post-layout{display:grid;grid-template-columns:1fr 300px;gap:4rem;align-items:start;padding:5rem 0 7rem}

/* Article card */
.post-article{background:var(--white);border:1px solid var(--border);min-width:0}
.post-article-body{padding:3.5rem 4rem}
.article-title-block{padding-bottom:2rem;margin-bottom:2.5rem;border-bottom:1px solid var(--border)}
.article-category-tag{display:inline-flex;align-items:center;background:rgba(201,168,76,.12);color:var(--gold);font-size:.65rem;letter-spacing:.18em;text-transform:uppercase;font-weight:700;padding:.3rem .85rem;margin-bottom:1.1rem;text-decoration:none;border:1px solid rgba(201,168,76,.25);transition:background .2s}
.article-category-tag:hover{background:rgba(201,168,76,.2)}
.article-title{font-family:'Playfair Display',serif;font-size:clamp(1.7rem,3vw,2.4rem);font-weight:700;color:var(--navy);line-height:1.25;margin-bottom:1.2rem}
.article-meta{display:flex;align-items:center;gap:.7rem;flex-wrap:wrap}
.article-meta-author{font-size:.84rem;color:var(--text-soft)}
.article-meta-author strong{color:var(--navy);font-weight:600}
.article-meta-sep{color:var(--border)}
.article-meta-date,.article-meta-read{font-size:.82rem;color:var(--text-soft);font-weight:300}
.post-lead{font-size:1.05rem;line-height:1.9;color:var(--text-soft);font-weight:300;font-style:italic;margin-bottom:2rem;border-left:3px solid var(--gold);padding:1.2rem 1.8rem;background:rgba(201,168,76,.05)}

/* Article body typography */
.post-content-body h2{font-family:'Playfair Display',serif;font-size:1.55rem;font-weight:700;color:var(--navy);margin:3rem 0 1.1rem;line-height:1.3}
.post-content-body h3{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:700;color:var(--navy);margin:2.5rem 0 1rem;line-height:1.3}
.post-content-body h4{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--navy);margin:2rem 0 .85rem;line-height:1.3;padding-left:1.2rem;position:relative}
.post-content-body h4::before{content:'';position:absolute;left:0;top:.1rem;width:3px;height:100%;background:var(--gold)}
.post-content-body p{font-size:.97rem;line-height:1.9;color:var(--text-soft);font-weight:300;margin-bottom:1.4rem}
.post-content-body p:last-child{margin-bottom:0}
.post-content-body a{color:var(--gold);text-decoration:none;transition:color .2s}
.post-content-body a:hover{color:var(--navy)}
.post-content-body strong{color:var(--navy);font-weight:600}
.post-content-body ul{list-style:none;display:flex;flex-direction:column;gap:.6rem;margin:.8rem 0 1.4rem;padding:0}
.post-content-body ul li{font-size:.93rem;color:var(--text-soft);line-height:1.65;padding-left:1.4rem;position:relative;font-weight:300}
.post-content-body ul li::before{content:'→';position:absolute;left:0;color:var(--gold);font-size:.8rem;top:.1rem}
.post-content-body ol{list-style:none;counter-reset:ol-counter;display:flex;flex-direction:column;gap:.5rem;margin:.8rem 0 1.4rem;padding:0}
.post-content-body ol li{font-size:.93rem;color:var(--text-soft);line-height:1.65;padding-left:2rem;position:relative;font-weight:300;counter-increment:ol-counter}
.post-content-body ol li::before{content:counter(ol-counter);position:absolute;left:0;width:22px;height:22px;background:var(--navy);color:var(--gold);font-size:.72rem;font-weight:700;border-radius:50%;display:flex;align-items:center;justify-content:center;top:.1rem}
.post-content-body blockquote{margin:2.5rem 0;border-left:3px solid var(--gold);padding:1.4rem 2rem;background:rgba(201,168,76,.06)}
.post-content-body blockquote p{font-family:'Playfair Display',serif;font-size:1.1rem;color:var(--navy);font-style:italic;line-height:1.6;margin:0;font-weight:400}
.post-content-body img,.post-content-body figure{max-width:100%;height:auto;display:block;margin:2rem 0}
.post-content-body .wp-block-separator{border:none;border-top:1px solid var(--border);margin:2.5rem 0}
.post-content-body .alignleft{float:left;margin:0 2rem 1rem 0}
.post-content-body .alignright{float:right;margin:0 0 1rem 2rem}
.post-content-body .aligncenter{margin:0 auto 1rem;text-align:center}
.post-content-body::after{content:'';display:table;clear:both}

/* Engagement bar — like + share */
.post-engagement-bar{padding:1.6rem 4rem;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1.2rem;background:var(--white)}
.like-section{display:flex;align-items:center;gap:1rem}
.like-btn{display:flex;align-items:center;gap:.55rem;background:transparent;border:1px solid var(--border);padding:.55rem 1.2rem;cursor:pointer;font-family:'Outfit',sans-serif;font-size:.84rem;color:var(--text-soft);font-weight:500;transition:all .22s;user-select:none}
.like-btn svg{width:18px;height:18px;flex-shrink:0;transition:all .22s}
.like-btn:hover{border-color:#e05252;color:#e05252}
.like-btn.liked{background:#fff0f0;border-color:#e05252;color:#e05252}
.like-btn.liked svg{fill:#e05252;stroke:#e05252}
@keyframes tpop{0%{transform:scale(1)}50%{transform:scale(1.3)}100%{transform:scale(1)}}
.like-btn.pop svg{animation:tpop .35s ease}
.like-count{font-size:.82rem;color:var(--text-soft);font-weight:300}
.like-count strong{color:var(--navy);font-weight:600}
.share-section{display:flex;align-items:center;gap:.8rem}
.share-label{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-soft);font-weight:500}
.share-btn{width:36px;height:36px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;text-decoration:none;transition:all .2s;color:var(--text-soft)}
.share-btn:hover{background:var(--navy);border-color:var(--navy);color:var(--white)}
.share-btn svg{width:15px;height:15px}

/* Tags bar */
.post-tags-bar{padding:1.2rem 4rem;border-top:1px solid var(--border);display:flex;align-items:center;gap:.6rem;flex-wrap:wrap;background:var(--off-white)}
.tags-label{font-size:.7rem;color:var(--text-soft);font-weight:500;text-transform:uppercase;letter-spacing:.1em}
.post-tag{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--text-soft);background:var(--border);padding:.3rem .75rem;font-weight:500;text-decoration:none;transition:all .18s}
.post-tag:hover{background:var(--navy);color:var(--white)}

/* Author card */
.author-card{padding:2rem 4rem;border-top:1px solid var(--border);display:flex;gap:1.5rem;align-items:flex-start;background:var(--white)}
.author-avatar-img{width:60px;height:60px;border-radius:50%;object-fit:cover;border:3px solid var(--gold);flex-shrink:0}
.author-info-name{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:.3rem}
.author-info-role{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:.6rem}
.author-info-bio{font-size:.84rem;color:var(--text-soft);font-weight:300;line-height:1.65;margin:0}

/* Comments */
.comments-section{background:var(--white);border-top:1px solid var(--border)}
.comments-section .comments-area{padding:2.5rem 4rem 3rem}
.comments-section .comments-title,.comments-section .comment-reply-title{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:700;color:var(--navy);margin-bottom:1.5rem}
.comments-section .comment-list{list-style:none;margin:0 0 2rem;padding:0}
.comments-section .comment{padding:1.5rem 0;border-bottom:1px solid var(--border)}
.comments-section .comment:last-of-type{border-bottom:none}
.comments-section .comment-body{display:flex;gap:1.2rem}
.comments-section .comment-author .fn{font-size:.88rem;font-weight:600;color:var(--navy);font-style:normal}
.comments-section .comment-metadata{font-size:.74rem;color:var(--text-soft)}
.comments-section .comment-metadata a{color:inherit;text-decoration:none}
.comments-section .comment-content p{font-size:.9rem;color:var(--text-soft);line-height:1.75;font-weight:300;margin:.4rem 0 0}
.comments-section .reply a,.comments-section .comment-reply-link{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);font-weight:600;text-decoration:none}
.comments-section .comment-form label{font-size:.67rem;letter-spacing:.14em;text-transform:uppercase;color:var(--text);font-weight:600;display:block;margin-bottom:.35rem}
.comments-section .comment-form input[type="text"],.comments-section .comment-form input[type="email"],.comments-section .comment-form input[type="url"],.comments-section .comment-form textarea{width:100%;border:1px solid var(--border);padding:.82rem 1rem;font-family:'Outfit',sans-serif;font-size:.9rem;color:var(--text);outline:none;background:var(--white);transition:border-color .2s,box-shadow .2s}
.comments-section .comment-form input:focus,.comments-section .comment-form textarea:focus{border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,168,76,.1)}
.comments-section .comment-form textarea{resize:vertical;min-height:120px}
.comments-section .comment-form .submit,.comments-section #submit{background:var(--gold);color:var(--navy);border:2px solid var(--gold);padding:.85rem 2.2rem;font-family:'Outfit',sans-serif;font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;cursor:pointer;transition:all .22s}
.comments-section .comment-form .submit:hover,.comments-section #submit:hover{background:var(--gold-lt);border-color:var(--gold-lt)}

/* Sidebar */
.post-sidebar{display:flex;flex-direction:column;gap:2rem;position:sticky;top:96px;min-width:0}
.sidebar-card{background:var(--white);border:1px solid var(--border)}
.sidebar-card-title{font-size:.62rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);font-weight:700;padding:1.1rem 1.4rem;border-bottom:1px solid var(--border);background:var(--navy)}
.sidebar-card-body{padding:1.4rem}
.toc-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column}
.toc-list li a{display:flex;align-items:flex-start;gap:.65rem;padding:.65rem 0;font-size:.82rem;color:var(--text-soft);text-decoration:none;border-bottom:1px solid var(--border);transition:color .2s;line-height:1.4}
.toc-list li:last-child a{border-bottom:none}
.toc-list li a:hover,.toc-list li.active a{color:var(--gold)}
.toc-num{font-size:.65rem;color:var(--gold);font-weight:700;flex-shrink:0;margin-top:.1rem}
.related-post{display:flex;gap:.9rem;padding:.9rem 0;border-bottom:1px solid var(--border);text-decoration:none;align-items:flex-start}
.related-post:last-child{border-bottom:none;padding-bottom:0}
.related-post:hover .related-post-title{color:var(--gold)}
.related-thumb{width:64px;height:64px;object-fit:cover;flex-shrink:0;display:block}
.related-post-date{font-size:.68rem;color:rgba(201,168,76,.8);font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.3rem}
.related-post-title{font-size:.82rem;font-weight:600;color:var(--navy);line-height:1.4;transition:color .2s}
.sidebar-book-cta{background:var(--navy);padding:1.8rem 1.4rem;text-align:center}
.sidebar-book-cta h4{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--white);margin-bottom:.7rem;line-height:1.3}
.sidebar-book-cta p{font-size:.8rem;color:rgba(255,255,255,.55);font-weight:300;line-height:1.6;margin-bottom:1.3rem}
.sidebar-book-cta a{display:block;background:var(--gold);color:var(--navy);padding:.8rem;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;font-weight:700;text-decoration:none;transition:background .2s}
.sidebar-book-cta a:hover{background:var(--gold-lt)}

/* More posts section */
.more-posts-section{background:var(--white);padding:6rem 0;border-top:1px solid var(--border)}
.more-posts-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:3rem}
.more-posts-header h2{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:var(--navy)}
.more-posts-header a{font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:600;text-decoration:none}
.more-posts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border:1px solid var(--border)}
.more-post-card{text-decoration:none;border-right:1px solid var(--border);overflow:hidden;display:flex;flex-direction:column;position:relative;transition:background .2s}
.more-post-card:last-child{border-right:none}
.more-post-card:hover{background:var(--off-white)}
.more-post-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--gold);transform:scaleX(0);transform-origin:left;transition:transform .3s}
.more-post-card:hover::after{transform:scaleX(1)}
.more-post-thumb{width:100%;height:200px;object-fit:cover;display:block;filter:saturate(.8);transition:filter .3s}
.more-post-card:hover .more-post-thumb{filter:saturate(1)}
.more-post-body{padding:1.6rem 1.8rem 2rem;flex:1;display:flex;flex-direction:column}
.more-post-date{font-size:.68rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-bottom:.6rem}
.more-post-title{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:700;color:var(--navy);line-height:1.35;margin-bottom:.8rem}
.more-post-link{font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--gold);font-weight:600;margin-top:auto;display:flex;align-items:center;gap:.4rem;transition:gap .2s}
.more-post-card:hover .more-post-link{gap:.8rem}

/* Blog pagination */
.blog-pagination{display:flex;justify-content:center;gap:.5rem;padding:3rem 0 1rem;flex-wrap:wrap}
.blog-pagination .page-numbers{display:inline-flex;align-items:center;justify-content:center;min-width:42px;height:42px;padding:0 1rem;border:1px solid var(--border);color:var(--text-soft);text-decoration:none;font-size:.84rem;font-weight:500;transition:all .18s}
.blog-pagination .page-numbers:hover{border-color:var(--gold);color:var(--gold)}
.blog-pagination .page-numbers.current{background:var(--navy);color:var(--white);border-color:var(--navy)}

/* Animations */
@keyframes t-fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.hero-meta-bar>*{animation:t-fadeUp .7s ease both}
.hero-meta-bar>*:nth-child(1){animation-delay:.1s}
.hero-meta-bar>*:nth-child(2){animation-delay:.2s}
.hero-meta-bar>*:nth-child(3){animation-delay:.32s}
.hero-meta-bar>*:nth-child(4){animation-delay:.44s}

/* ── Responsive — single post ─────────────────────────────── */

/* 1200px: reduce sidebar width slightly, keep two-column */
@media(max-width:1200px){
  .post-layout{gap:2.5rem}
}

/* 1024px: narrow sidebar, reduce body padding — still two columns */
@media(max-width:1024px){
  .post-layout{grid-template-columns:1fr 260px;gap:2rem}
  .post-article-body{padding:2.5rem 2.5rem}
  .post-engagement-bar{padding:1.2rem 2.5rem}
  .post-tags-bar{padding:1rem 2.5rem}
  .author-card{padding:1.5rem 2.5rem}
  .comments-section .comments-area{padding:2rem 2.5rem}
}

/* 900px: collapse to single column (was 1100px — lowered to preserve desktop two-col) */
@media(max-width:900px){
  .post-layout{grid-template-columns:1fr;gap:3rem}
  .post-sidebar{position:static}
  .post-hero-title{max-width:100%}
  .more-posts-grid{grid-template-columns:repeat(2,1fr)}
}

/* 768px: mobile */
@media(max-width:768px){
  .hero-cover{height:320px}
  .post-hero-title{font-size:clamp(1.6rem,5vw,2.2rem)}
  .post-article-body{padding:2rem 1.5rem}
  .post-engagement-bar{padding:1.2rem 1.5rem;flex-direction:column;align-items:flex-start}
  .post-tags-bar{padding:1rem 1.5rem}
  .author-card{padding:1.5rem;flex-direction:column}
  .comments-section .comments-area{padding:1.5rem}
  .more-posts-grid{grid-template-columns:1fr}
  .more-posts-header{flex-direction:column;align-items:flex-start;gap:1rem}
  .post-layout{padding:2.5rem 0 4rem}
  .byline-sep{display:none}
}

/* 480px: small mobile */
@media(max-width:480px){
  .hero-cover{height:240px}
  .post-article-body{padding:1.5rem 1.2rem}
  .post-engagement-bar{padding:1rem 1.2rem}
  .post-tags-bar{padding:.8rem 1.2rem}
}


/* ═══════════════════════════════════════════════════════════════
   WORDPRESS BLOCK EDITOR WIDTH OVERRIDES
   Without theme.json, WP 5.8+ applies is-layout-constrained which
   limits content to ~650px. These rules override that globally for
   single post pages so the full layout width is preserved.
   ═══════════════════════════════════════════════════════════════ */

/* Override Gutenberg's is-layout-constrained default narrow width */
.post-content-body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
}
.post-content-body .wp-block-group.is-layout-constrained > * {
  max-width: none !important;
}

/* Override WordPress editor inline styles that may restrict content width */
.post-content-body > * {
  max-width: none;
  width: auto;
}

/* But keep images and figures fluid */
.post-content-body img,
.post-content-body figure,
.post-content-body video,
.post-content-body iframe {
  max-width: 100%;
  height: auto;
}

/* Ensure .entry-content (WP default class) doesn't add its own width cap */
.post-article .entry-content,
.post-article-body .entry-content {
  max-width: none !important;
  width: 100% !important;
}

/* Override any WP core styles applied to .wp-site-blocks or body */
body.single .wp-site-blocks {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Reset any Gutenberg layout classes that may constrain our container */
.post-content-body .is-layout-flex,
.post-content-body .is-layout-grid,
.post-content-body .is-layout-constrained {
  max-width: none;
}