
/* ── BASE ── */
.bp-page {
    font-family: 'DM Sans', sans-serif;
    background: #080808; color: #fff; overflow-x: hidden;
 
}
.bp-page *, .bp-page *::before, .bp-page *::after { box-sizing: border-box; }
.bp-page h1 { font-family: 'Playfair Display', serif; margin: 0; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.14; color: #fff; }
.bp-page h2 { font-family: 'Playfair Display', serif; margin: 0; font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 600; line-height: 1.3; color: #fff; }
.bp-page h3 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin: 0; }
.bp-page p { color: rgba(255,255,255,0.62); line-height: 1.75; margin: 0; }
.bp-page a { text-decoration: none; }

/* ── LAYOUT ── */
.bp-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ── TOKENS ── */
.bp-gold-text {
    background: linear-gradient(135deg, #E4C97A, #C9A84C, #8B6F32);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ══ POST HERO ══ */
.bp-hero {
    position: relative; min-height: 62vh; display: flex; align-items: flex-end;
    overflow: hidden; background: #080808;
}
.bp-hero-bg { position: absolute; inset: 0; }
.bp-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.35) saturate(0.6); }
.bp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(8,8,8,0.2) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.97) 100%);
}
.bp-hero-inner { position: relative; z-index: 2; padding: 48px 0 60px; max-width: 840px; }

.bp-hero-breadcrumb {
    display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
    font-size: 0.7rem; color: rgba(255,255,255,0.3);
}
.bp-hero-breadcrumb a { color: rgba(255,255,255,0.38); transition: color 0.2s ease; }
.bp-hero-breadcrumb a:hover { color: #C9A84C; }
.bp-bc-current { color: #C9A84C; }
.bp-hero-breadcrumb span { color: rgba(255,255,255,0.18); }

.bp-hero-cat {
    display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #E4C97A;
    background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25);
    border-radius: 5px; padding: 4px 12px; margin-bottom: 18px;
}
.bp-hero-meta {
    display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap;
}
.bp-ha-avatar {
    display:none !important;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: #000; flex-shrink: 0;
}
.bp-ha-name { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.bp-ha-role { font-size: 0.62rem; color: rgba(255,255,255,0.3); }
.bp-ha-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.bp-ha-date { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.bp-ha-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.bp-ha-read { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* ══ BODY WRAP ══ */
.bp-body-wrap { background: #080808; padding: 64px 0 80px; }
.bp-layout {
    display: grid; grid-template-columns:  1fr 260px;
    gap: 48px; align-items: start;
}

/* ══ TOC ══ */
.bp-toc {
    position: sticky; top: 100px;
}
.bp-toc-label {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 16px;
}
.bp-toc-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: 24px; }
.bp-toc-link {
    font-size: 0.77rem; color: rgba(255,255,255,0.3); padding: 7px 12px;
    border-left: 2px solid transparent; border-radius: 0 6px 6px 0;
    transition: 0.22s ease; line-height: 1.4;
}
.bp-toc-link:hover { color: rgba(255,255,255,0.7); border-left-color: rgba(201,168,76,0.3); }
.bp-toc-active { color: #C9A84C !important; border-left-color: #C9A84C !important; background: rgba(201,168,76,0.06); }
.bp-toc-progress {
    width: 2px; height: 120px; background: rgba(255,255,255,0.06);
    border-radius: 2px; margin-left: 12px; position: relative; overflow: hidden;
}
.bp-toc-progress-bar {
    width: 100%; height: 0; background: linear-gradient(180deg, #E4C97A, #C9A84C);
    border-radius: 2px; transition: height 0.1s ease;
}

/* ══ ARTICLE ══ */
.bp-article { min-width: 0; }

.bp-lead {
    font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75;
    border-left: 3px solid #C9A84C; padding-left: 20px;
    margin-bottom: 40px;
}

.bp-article h2 { margin: 44px 0 18px; padding-top: 8px; }
.bp-article h3 { margin: 28px 0 12px; color: rgba(255,255,255,0.9); font-size: 0.97rem; }
.bp-article p { margin-bottom: 18px; font-size: 0.9rem; }
.bp-article strong { color: rgba(255,255,255,0.88); }
.bp-article em { color: rgba(255,255,255,0.7); }

/* List */
.bp-list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bp-list li {
    font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.65;
    padding-left: 22px; position: relative;
}
.bp-list li::before {
    content: '→'; position: absolute; left: 0;
    color: #C9A84C; font-size: 0.8rem;
}
.bp-list-key li::before { content: '✓'; color: #22c55e; }

/* Table */
.bp-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: 12px; border: 1px solid #1e1e1e; }
.bp-table { width: 100%; border-collapse: collapse; }
.bp-table thead { background: linear-gradient(135deg, #1a1510, #111); }
.bp-table th {
    text-align: left; padding: 13px 16px;
    font-size: 0.65rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.bp-table td {
    padding: 12px 16px; font-size: 0.82rem; color: rgba(255,255,255,0.6);
    border-top: 1px solid #1a1a1a;
}
.bp-table tr:hover td { background: rgba(255,255,255,0.02); }
.bp-td-good { color: #22c55e; font-weight: 600; }
.bp-td-ok   { color: #f59e0b; font-weight: 600; }
.bp-td-warn { color: #f97316; font-weight: 600; }
.bp-td-bad  { color: #ef4444; font-weight: 600; }

/* Callouts */
.bp-callout {
    display: flex; align-items: flex-start; gap: 16px;
    border-radius: 12px; border: 1px solid; padding: 20px 22px; margin: 28px 0;
}
.bp-callout-gold { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.25); }
.bp-callout-red  { background: rgba(239,68,68,0.06);  border-color: rgba(239,68,68,0.22); }
.bp-callout-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.bp-callout-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #C9A84C; margin-bottom: 6px; }
.bp-callout-red .bp-callout-title { color: #f87171; }
.bp-callout-text { font-size: 0.83rem; color: rgba(255,255,255,0.62); line-height: 1.65; }

/* Inline link */
.bp-inline-link { color: #C9A84C; font-weight: 600; border-bottom: 1px solid rgba(201,168,76,0.3); transition: border-color 0.2s ease; }
.bp-inline-link:hover { border-color: #C9A84C; }

/* Image block */
.bp-img-block { margin: 32px 0; }
.bp-img-block img { width: 100%; border-radius: 14px; display: block; filter: brightness(0.7) saturate(0.8); border: 1px solid #1e1e1e; }
.bp-img-caption { font-size: 0.72rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 12px; font-style: italic; }

/* Steps */
.bp-steps { display: flex; flex-direction: column; gap: 20px; margin: 24px 0; }
.bp-step { display: flex; gap: 20px; padding: 18px 0; border-bottom: 1px solid #1a1a1a; }
.bp-step:last-child { border-bottom: none; }
.bp-step-num {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: rgba(255,255,255,0.04); border: 1px solid #1e1e1e;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #C9A84C;
}
.bp-step-title { font-size: 0.9rem; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 6px; }
.bp-step p { font-size: 0.82rem; }

/* Related CTA */
.bp-related-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    background: linear-gradient(145deg, #1a1510, #111); border: 1px solid rgba(201,168,76,0.22);
    border-radius: 14px; padding: 24px 26px; margin: 32px 0;
}
.bp-rcta-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #C9A84C; margin-bottom: 6px; }
.bp-rcta-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.bp-rcta-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.bp-rcta-btn {
    flex-shrink: 0; padding: 12px 22px; border-radius: 8px;
    background: linear-gradient(135deg, #E4C97A, #C9A84C); color: #000;
    font-size: 0.82rem; font-weight: 700; white-space: nowrap;
    transition: 0.25s ease; box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}
.bp-rcta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.35); }

/* Author bio */
.bp-author-bio {
    display: flex; gap: 20px; align-items: flex-start;
    background: #141414; border: 1px solid #1e1e1e; border-radius: 14px;
    padding: 24px 22px; margin: 44px 0 28px;
}
.bp-ab-avatar {
    width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700; color: #000;
}
.bp-ab-name { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.bp-ab-role { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.bp-ab-desc { font-size: 0.78rem; }

/* Share */
.bp-share { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid #1a1a1a; }
.bp-share-label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1px; }
.bp-share-btn {
    padding: 8px 16px; border-radius: 8px; border: 1px solid #1e1e1e;
    font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: 0.22s ease;
    font-family: 'DM Sans', sans-serif;
}
.bp-share-btn:hover { border-color: rgba(201,168,76,0.3); color: #C9A84C; }

/* ══ SIDEBAR ══ */
.bp-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.bp-sidebar-card {
    background: #141414; border: 1px solid #1e1e1e; border-radius: 16px; padding: 22px 20px;
}
.bp-sc-heading {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px;
}

/* CTA card */
.bp-sc-cta { background: linear-gradient(145deg,#1a1510,#141414); border-color: rgba(201,168,76,0.2); text-align: center; }
.bp-sc-icon { font-size: 2rem; margin-bottom: 12px; }
.bp-sc-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.bp-sc-desc { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 18px; }
.bp-sc-btn {
    display: inline-block; padding: 11px 22px; border-radius: 8px;
    background: linear-gradient(135deg, #E4C97A, #C9A84C); color: #000;
    font-size: 0.82rem; font-weight: 700; transition: 0.25s ease;
    box-shadow: 0 4px 20px rgba(201,168,76,0.2);
}
.bp-sc-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.32); }

/* Related list */
.bp-related-list { display: flex; flex-direction: column; gap: 14px; }
.bp-related-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding-bottom: 14px; border-bottom: 1px solid #1a1a1a; transition: 0.2s ease;
}
.bp-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.bp-related-item:hover .bp-ri-title { color: #E4C97A; }
.bp-ri-img { width: 60px; height: 50px; border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.bp-ri-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); }
.bp-ri-title { font-size: 0.77rem; color: rgba(255,255,255,0.7); line-height: 1.4; margin-bottom: 5px; transition: color 0.2s ease; }
.bp-ri-meta { font-size: 0.62rem; color: rgba(255,255,255,0.28); }

/* Tag cloud */
.bp-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.bp-tag-link {
    font-size: 0.7rem; font-weight: 500; padding: 5px 12px;
    border-radius: 6px; border: 1px solid #1e1e1e; color: rgba(255,255,255,0.38);
    transition: 0.22s ease;
}
.bp-tag-link:hover { border-color: rgba(201,168,76,0.3); color: rgba(255,255,255,0.7); }
.bp-tag-active { background: rgba(201,168,76,0.08) !important; border-color: rgba(201,168,76,0.3) !important; color: #E4C97A !important; }

/* ══ MORE ARTICLES ══ */
.bp-more-articles {
    background: #111; border-top: 1px solid #1e1e1e; padding: 72px 0;
}
.bp-more-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.bp-more-header h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); }
.bp-all-link { font-size: 0.8rem; font-weight: 600; color: #C9A84C; transition: letter-spacing 0.2s ease; }
.bp-all-link:hover { letter-spacing: 0.3px; }

.bp-more-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bp-more-card {
    background: #141414; border: 1px solid #1e1e1e; border-radius: 14px;
    overflow: hidden; transition: 0.3s ease; display: block;
}
.bp-more-card:hover { border-color: rgba(201,168,76,0.2); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.bp-mc-img { height: 160px; overflow: hidden; }
.bp-mc-img img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.6); transition: transform 0.45s ease, filter 0.35s ease; }
.bp-more-card:hover .bp-mc-img img { transform: scale(1.05); filter: brightness(0.7); }
.bp-mc-body { padding: 16px 18px; }
.bp-mc-cat {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: #C9A84C; margin-bottom: 8px;
}
.bp-mc-title { font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1.38; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.bp-mc-meta { font-size: 0.65rem; color: rgba(255,255,255,0.28); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .bp-layout { grid-template-columns: 1fr 260px; }
    .bp-toc { display: none; }
}
@media (max-width: 860px) {
    .bp-container { padding: 0 24px; }
    .bp-layout { grid-template-columns: 1fr; }
    .bp-sidebar { position: static; }
    .bp-more-grid { grid-template-columns: 1fr; }
    .bp-related-cta { flex-direction: column; align-items: flex-start; }
    .bp-hero-inner { padding: 40px 0 48px; }
}
@media (max-width: 600px) {
    .bp-more-grid { grid-template-columns: 1fr; }
    .bp-hero { min-height: 50vh; }
    .bp-body-wrap { padding: 40px 0 60px; }
}