/* ============================================================
   KEY LEDGERS — BLOG STYLES  v2
   Editorial legal publication aesthetic
   Cormorant Garamond display · DM Sans body · Red accent
   ============================================================ */

:root {
    --bl-accent:  #FF0000;
    --bl-dark:    #00132D;
    --bl-mid:     #162F47;
    --bl-off:     #F4F8FC;
    --bl-border:  #D1DCE8;
    --bl-text:    #3D3D3D;
    --bl-muted:   #6B7280;
    --bl-display: 'Cormorant Garamond', Georgia, serif;
    --bl-body:    'DM Sans', system-ui, sans-serif;
    --bl-ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   BLOG LISTING PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.blg-hero {
    background: var(--bl-dark);
    padding: 120px 0 96px;
    position: relative;
    overflow: hidden;
}

.blg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 20%, rgba(255,0,0,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(22,47,71,0.8) 0%, transparent 70%);
    pointer-events: none;
}

.blg-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}

.blg-hero-inner {
    max-width: min(88vw, 1360px);
    margin-inline: auto;
    padding-inline: 24px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: end;
}

@media (min-width: 900px) {
    .blg-hero-inner {
        grid-template-columns: 1fr auto;
        gap: 60px;
    }
}

.blg-hero-content {}

.blg-section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bl-accent);
    margin-bottom: 24px;
}

.blg-section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--bl-accent);
}

.blg-h1 {
    font-family: var(--bl-display);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.blg-h1 em {
    font-style: normal;
    color: rgba(255,255,255,0.28);
}

.blg-sub {
    font-family: var(--bl-body);
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    max-width: 420px;
    line-height: 1.75;
}

/* ── Category Filter Pills ──────────────────────────────── */
.blg-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    align-self: flex-end;
    padding-bottom: 4px;
}

.blg-cat-pill {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.14);
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.blg-cat-pill:hover {
    border-color: rgba(255,255,255,0.35);
    color: #fff;
}

.blg-cat-pill.active {
    background: var(--bl-accent);
    border-color: var(--bl-accent);
    color: #fff;
}

/* ── Body wrapper ───────────────────────────────────────── */
.blg-body {
    background: var(--bl-off);
    padding: 72px 0 100px;
}

.blg-wrap {
    max-width: min(88vw, 1360px);
    margin-inline: auto;
    padding-inline: 24px;
}

/* ── Featured Post ──────────────────────────────────────── */
.blg-featured {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--bl-dark);
    margin-bottom: 72px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.5s var(--bl-ease);
    box-shadow: 0 8px 40px rgba(0,19,45,0.18);
}

.blg-featured:hover {
    box-shadow: 0 24px 80px rgba(0,19,45,0.35);
}

@media (min-width: 860px) {
    .blg-featured {
        grid-template-columns: 1.1fr 1fr;
        min-height: 500px;
    }
}

.blg-feat-img-wrap {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    background: var(--bl-mid);
}

@media (min-width: 860px) {
    .blg-feat-img-wrap { min-height: unset; }
}

.blg-feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--bl-ease);
}

.blg-featured:hover .blg-feat-img {
    transform: scale(1.05);
}

.blg-feat-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #0a1f3e 0%, #0d2a45 50%, #162f47 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blg-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,19,45,0) 60%, rgba(0,19,45,0.3) 100%);
}

@media (min-width: 860px) {
    .blg-feat-overlay {
        background: linear-gradient(to right, rgba(0,19,45,0) 70%, rgba(0,19,45,0.25) 100%);
    }
}

.blg-feat-body {
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 859px) {
    .blg-feat-body {
        padding: 40px 32px 44px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
}

.blg-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.blg-feat-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bl-accent);
    box-shadow: 0 0 8px rgba(255,0,0,0.6);
    flex-shrink: 0;
}

.blg-feat-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.25);
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bl-accent);
    margin-bottom: 22px;
    align-self: flex-start;
}

.blg-feat-title {
    font-family: var(--bl-display);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.blg-featured:hover .blg-feat-title {
    color: rgba(255,255,255,0.88);
}

.blg-feat-excerpt {
    font-family: var(--bl-body);
    font-size: 14.5px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blg-feat-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--bl-body);
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: auto;
}

.blg-feat-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

.blg-feat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    transition: color 0.25s ease;
    white-space: nowrap;
}

.blg-featured:hover .blg-feat-cta {
    color: #fff;
}

/* ── Section divider ────────────────────────────────────── */
.blg-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.blg-divider-text {
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bl-muted);
    white-space: nowrap;
}

.blg-divider-count {
    color: var(--bl-accent);
}

.blg-divider-line {
    flex: 1;
    height: 1px;
    background: var(--bl-border);
}

/* ── Post Grid ──────────────────────────────────────────── */
.blg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    margin-bottom: 64px;
}

@media (min-width: 640px) {
    .blg-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .blg-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Post Card ──────────────────────────────────────────── */
.blg-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--bl-ease), box-shadow 0.4s var(--bl-ease);
}

.blg-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--bl-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--bl-ease);
    z-index: 2;
}

.blg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,19,45,0.14);
    z-index: 1;
}

.blg-card:hover::before {
    transform: scaleX(1);
}

.blg-card-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bl-dark);
}

.blg-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s var(--bl-ease);
}

.blg-card:hover .blg-card-img {
    transform: scale(1.07);
}

.blg-card-no-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00132D 0%, #162F47 60%, #1a3550 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blg-card-num {
    position: absolute;
    bottom: 10px;
    right: 14px;
    font-family: var(--bl-display);
    font-size: 52px;
    font-weight: 300;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.blg-card-body {
    padding: 28px 30px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blg-card-cat {
    font-family: var(--bl-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bl-accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blg-card-cat::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--bl-accent);
    flex-shrink: 0;
}

.blg-card-title {
    font-family: var(--bl-display);
    font-size: clamp(19px, 1.6vw, 23px);
    font-weight: 400;
    font-style: italic;
    color: var(--bl-dark);
    line-height: 1.25;
    margin-bottom: 14px;
    transition: color 0.25s ease;
}

.blg-card:hover .blg-card-title {
    color: #1A3F5E;
}

.blg-card-excerpt {
    font-family: var(--bl-body);
    font-size: 13.5px;
    color: var(--bl-text);
    line-height: 1.72;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blg-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--bl-border);
    padding-top: 14px;
    font-family: var(--bl-body);
    font-size: 11px;
    color: var(--bl-muted);
}

.blg-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blg-card-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--bl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bl-dark);
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.blg-card:hover .blg-card-arrow {
    background: var(--bl-accent);
    border-color: var(--bl-accent);
    color: #fff;
}

/* ── Empty state ────────────────────────────────────────── */
.blg-empty {
    padding: 100px 40px;
    text-align: center;
    background: #fff;
}

.blg-empty-icon {
    color: var(--bl-border);
    margin-bottom: 20px;
}

.blg-empty-title {
    font-family: var(--bl-display);
    font-size: 32px;
    font-style: italic;
    color: var(--bl-dark);
    margin-bottom: 10px;
}

.blg-empty-sub {
    font-family: var(--bl-body);
    font-size: 15px;
    color: var(--bl-muted);
}

.blg-empty-sub a {
    color: var(--bl-accent);
    text-decoration: none;
}

/* ── Pagination ─────────────────────────────────────────── */
.blg-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.blg-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--bl-border);
    background: #fff;
    font-family: var(--bl-body);
    font-size: 13px;
    color: var(--bl-dark);
    text-decoration: none;
    transition: all 0.25s ease;
}

.blg-page-btn:hover {
    border-color: var(--bl-dark);
    background: var(--bl-dark);
    color: #fff;
}

.blg-page-btn.active {
    background: var(--bl-accent);
    border-color: var(--bl-accent);
    color: #fff;
    cursor: default;
}

.blg-page-prev,
.blg-page-next {
    gap: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */

/* ── Back bar ───────────────────────────────────────────── */
.bpost-back-bar {
    background: var(--bl-dark);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bpost-back-inner {
    max-width: min(88vw, 880px);
    margin-inline: auto;
    padding-inline: 24px;
}

.bpost-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bpost-back:hover {
    color: #fff;
}

/* ── Post Hero ──────────────────────────────────────────── */
.bpost-hero {
    background: var(--bl-dark);
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
}

.bpost-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 30%, rgba(255,0,0,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.bpost-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: rgba(255,255,255,0.06);
}

.bpost-hero-inner {
    max-width: min(88vw, 880px);
    margin-inline: auto;
    padding-inline: 24px;
    position: relative;
    z-index: 1;
}

.bpost-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: var(--bl-body);
    font-size: 11px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.bpost-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bpost-breadcrumb a:hover {
    color: #fff;
}

.bpost-breadcrumb-sep {
    opacity: 0.4;
}

.bpost-cat {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bl-accent);
    text-decoration: none;
    margin-bottom: 22px;
}

.bpost-cat::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--bl-accent);
    flex-shrink: 0;
}

.bpost-title {
    font-family: var(--bl-display);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 36px;
}

.bpost-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 18px;
    font-family: var(--bl-body);
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
}

.bpost-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bpost-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

/* ── Featured Image ─────────────────────────────────────── */
.bpost-image-wrap {
    background: var(--bl-dark);
    overflow: hidden;
    line-height: 0;
}

.bpost-featured-img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
}

/* ── AI Summary pull-quote ──────────────────────────────── */
.bpost-summary {
    font-family: var(--bl-display);
    font-size: clamp(18px, 1.7vw, 22px);
    font-style: italic;
    font-weight: 300;
    color: var(--bl-dark);
    line-height: 1.6;
    border-left: 3px solid var(--bl-accent);
    padding: 22px 28px;
    background: var(--bl-off);
    margin: 0 0 40px;
}

/* ── Article wrapper ────────────────────────────────────── */
.bpost-article-wrap {
    background: #fff;
    padding: 72px 0 0;
}

.bpost-article {
    max-width: min(88vw, 760px);
    margin-inline: auto;
    padding-inline: 24px;
}

/* ── Content typography ─────────────────────────────────── */
.bpost-content {
    font-family: var(--bl-body);
    font-size: clamp(16px, 1.1vw, 18px);
    color: var(--bl-text);
    line-height: 1.82;
}

.bpost-content h2 {
    font-family: var(--bl-display);
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 400;
    font-style: italic;
    color: var(--bl-dark);
    line-height: 1.2;
    margin: 56px 0 20px;
    letter-spacing: -0.01em;
    padding-top: 28px;
    border-top: 1px solid var(--bl-border);
}

.bpost-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.bpost-content h3 {
    font-family: var(--bl-display);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 600;
    color: var(--bl-dark);
    line-height: 1.3;
    margin: 40px 0 16px;
}

.bpost-content p { margin-bottom: 26px; }

.bpost-content ul,
.bpost-content ol {
    padding-left: 26px;
    margin-bottom: 26px;
}

.bpost-content li {
    margin-bottom: 10px;
    line-height: 1.75;
}

.bpost-content ul li::marker { color: var(--bl-accent); }
.bpost-content ol li::marker { color: var(--bl-accent); font-weight: 600; }

.bpost-content strong {
    font-weight: 600;
    color: var(--bl-dark);
}

.bpost-content a {
    color: var(--bl-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--bl-border);
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.bpost-content a:hover {
    color: var(--bl-accent);
    text-decoration-color: var(--bl-accent);
}

.bpost-content blockquote {
    margin: 40px 0;
    padding: 28px 36px;
    background: var(--bl-off);
    border-left: 4px solid var(--bl-accent);
    font-family: var(--bl-display);
    font-size: clamp(20px, 2vw, 26px);
    font-style: italic;
    font-weight: 300;
    color: var(--bl-dark);
    line-height: 1.5;
}

.bpost-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
}

.bpost-content th {
    background: var(--bl-dark);
    color: #fff;
    padding: 12px 18px;
    text-align: left;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bpost-content td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--bl-border);
    vertical-align: top;
}

.bpost-content tr:last-child td { border-bottom: none; }
.bpost-content tr:nth-child(even) td { background: var(--bl-off); }

.bpost-content figure {
    margin: 40px 0;
}

.bpost-content figure img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
}

.bpost-content figure figcaption {
    font-size: 12px;
    color: var(--bl-muted);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

.bpost-content img {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
    margin: 32px 0;
}

/* ── FAQ ────────────────────────────────────────────────── */
.bpost-faq-wrap {
    max-width: min(88vw, 760px);
    margin-inline: auto;
    padding-inline: 24px;
    padding-bottom: 60px;
    padding-top: 16px;
}

.bpost-faq-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bl-accent);
    margin-bottom: 24px;
}

.bpost-faq-label::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--bl-accent);
}

/* ── Post footer: tags + share ──────────────────────────── */
.bpost-footer {
    max-width: min(88vw, 760px);
    margin-inline: auto;
    padding-inline: 24px;
    border-top: 1px solid var(--bl-border);
    padding-top: 28px;
    padding-bottom: 64px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bpost-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.bpost-tag-label {
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bl-muted);
}

.bpost-tag {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid var(--bl-border);
    font-family: var(--bl-body);
    font-size: 11px;
    color: var(--bl-dark);
    text-decoration: none;
    transition: all 0.25s ease;
}

.bpost-tag:hover {
    border-color: var(--bl-accent);
    color: var(--bl-accent);
}

.bpost-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bpost-share-label {
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bl-muted);
}

.bpost-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--bl-border);
    color: var(--bl-dark);
    text-decoration: none;
    transition: all 0.25s ease;
}

.bpost-share-btn:hover {
    background: var(--bl-dark);
    border-color: var(--bl-dark);
    color: #fff;
}

/* ── Related posts ──────────────────────────────────────── */
.bpost-related {
    background: var(--bl-off);
    padding: 72px 0 80px;
    border-top: 1px solid var(--bl-border);
}

.bpost-related-inner {
    max-width: min(88vw, 1360px);
    margin-inline: auto;
    padding-inline: 24px;
}

.bpost-related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 20px;
    flex-wrap: wrap;
}

.bpost-related-label {
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bl-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bpost-related-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--bl-accent);
}

.bpost-related-h2 {
    font-family: var(--bl-display);
    font-size: clamp(26px, 2.4vw, 36px);
    font-weight: 300;
    font-style: italic;
    color: var(--bl-dark);
    line-height: 1.2;
}

.bpost-related-all {
    font-family: var(--bl-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bl-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s ease;
    padding-bottom: 4px;
}

.bpost-related-all:hover {
    color: var(--bl-accent);
}

.bpost-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

@media (min-width: 640px) {
    .bpost-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .bpost-related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 639px) {
    .blg-hero { padding: 80px 0 64px; }
    .blg-h1 { font-size: 52px; }
    .blg-feat-body { padding: 32px 24px 36px; }
    .blg-card-body { padding: 22px 22px 18px; }
    .bpost-hero { padding: 48px 0 56px; }
    .bpost-article-wrap { padding-top: 48px; }
    .bpost-footer { flex-direction: column; align-items: flex-start; }
}
