:root {
    --bc-ink: #151411;
    --bc-paper: #f6f1e7;
    --bc-card: #fffdf8;
    --bc-orange: #ef6c22;
    --bc-orange-dark: #9f3e12;
    --bc-lime: #c9f05a;
    --bc-line: rgba(21, 20, 17, .14);
    --bc-muted: #68645c;
}

.bc-page {
    flex: 1 0 auto;
    width: 100%;
    overflow: hidden;
    color: var(--bc-ink);
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(21, 20, 17, .035) 50%, transparent 50.1%),
        var(--bc-paper);
    font-family: "Manrope", sans-serif;
}

.bc-page + .footer {
    flex: 0 0 auto;
}

.bc-page a { text-decoration: none; }
.bc-shell { width: min(80%, calc(100% - 32px)); margin-inline: auto; }

.bc-breadcrumb { padding: 22px 0 12px; }
.bc-breadcrumb .breadcrumb { margin: 0; font-size: 14px; }
.bc-breadcrumb a { color: var(--bc-muted); }
.bc-breadcrumb .active { color: var(--bc-ink); }

.bc-hero { padding: 16px 0 54px; }
.bc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    min-height: 470px;
    border: 1px solid var(--bc-ink);
    background: var(--bc-ink);
    box-shadow: 16px 16px 0 var(--bc-orange);
}

.bc-hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 5vw, 58px);
    color: #fff;
}

.bc-hero-copy::before {
    content: "";
    position: absolute;
    top: 32px;
    right: 32px;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    box-shadow: inset 0 0 0 14px var(--bc-ink), inset 0 0 0 15px rgba(255,255,255,.3);
}

.bc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--bc-lime);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.bc-kicker::before { width: 34px; height: 2px; content: ""; background: currentColor; }

.bc-title {
    max-width: 720px;
    margin: 34px 0 20px;
    color: #fff;
    font-family: "Newsreader", Georgia, serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -.04em;
}

.bc-intro { max-width: 610px; margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.7; }

.bc-lead {
    position: relative;
    display: flex;
    min-height: 470px;
    overflow: hidden;
    color: #fff;
    background: #35322d;
}
.bc-lead img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.bc-lead::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 20%, rgba(12,11,9,.9) 100%); }
.bc-lead:hover img { transform: scale(1.035); }
.bc-lead-content { position: relative; z-index: 1; align-self: end; padding: 34px; }
.bc-lead-label { color: var(--bc-lime); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.bc-lead-title { display: block; margin: 12px 0 14px; color: #fff; font-family: "Newsreader", Georgia, serif; font-size: clamp(27px, 3vw, 38px); font-weight: 500; line-height: 1.08; }
.bc-lead-meta, .bc-card-meta { display: flex; flex-wrap: wrap; gap: 9px 16px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 600; }

.bc-content { padding: 62px 0 76px; }
.bc-content > .bc-shell { display: block; }
.bc-heading-row { display: flex; align-items: end; justify-content: space-between; width: 100%; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid var(--bc-line); }
.bc-section-mark { color: var(--bc-orange-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.bc-heading-row h2, .bc-topics h2 { margin: 7px 0 0; font-family: "Newsreader", Georgia, serif; font-size: clamp(30px, 3.5vw, 42px); font-weight: 500; line-height: 1.08; letter-spacing: -.03em; }
.bc-heading-row p { max-width: 420px; margin: 0; color: var(--bc-muted); line-height: 1.65; }

.bc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); width: 100%; gap: 24px; margin-top: 30px; }
.bc-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid var(--bc-line); border-radius: 16px; background: var(--bc-card); box-shadow: 0 12px 30px rgba(21, 20, 17, .055); transition: transform .25s ease, box-shadow .25s ease; }
.bc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(21, 20, 17, .1); }
.bc-card-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #ded8cd; }
.bc-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.bc-card:hover .bc-card-media img { transform: scale(1.045); }
.bc-card-body { display: flex; flex: 1 1 auto; flex-direction: column; padding: 20px; }
.bc-card-title { margin: 0 0 10px; color: var(--bc-ink); font-family: "Newsreader", Georgia, serif; font-size: 22px; font-weight: 500; line-height: 1.18; }
.bc-card-title:hover { color: var(--bc-orange-dark); }
.bc-card-excerpt { display: -webkit-box; overflow: hidden; margin: 0 0 16px; color: var(--bc-muted); font-size: 14px; line-height: 1.6; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.bc-card-meta { margin-top: auto; color: var(--bc-muted); }
.bc-read-link { display: inline-flex; align-items: center; gap: 9px; width: fit-content; margin-top: 18px; color: var(--bc-ink); font-size: 13px; font-weight: 700; }
.bc-read-link i { color: var(--bc-orange); transition: transform .2s ease; }
.bc-read-link:hover { color: var(--bc-orange-dark); }
.bc-read-link:hover i { transform: translateX(4px); }

.bc-content nav { width: 100%; }
.bc-pagination { display: flex; justify-content: center; width: 100%; gap: 8px; margin-top: 46px; }
.bc-pagination .page-link { min-width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--bc-line); border-radius: 0; color: var(--bc-ink); background: transparent; font-weight: 600; }
.bc-pagination .active .page-link, .bc-pagination .page-link:hover { border-color: var(--bc-ink); color: #fff; background: var(--bc-ink); }

.bc-topics { padding: 68px 0; color: #fff; background: var(--bc-orange-dark); }
.bc-topics h2 { color: #fff; }
.bc-topic-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.bc-topic { padding: 12px 16px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 13px; font-weight: 600; transition: background .2s ease, color .2s ease; }
.bc-topic.is-current { border-color: var(--bc-lime); color: var(--bc-ink); background: var(--bc-lime); }
.bc-all-posts { display: inline-flex; align-items: center; gap: 9px; margin-top: 28px; color: #fff; font-weight: 700; }
.bc-all-posts:hover { color: var(--bc-lime); }

.night-mode .bc-page { --bc-ink: #f5efe5; --bc-paper: #151411; --bc-card: #1d1b18; --bc-line: rgba(255,255,255,.16); --bc-muted: #bdb6aa; }
.night-mode .bc-hero-grid { border-color: #4a463f; background: #090909; }
.night-mode .bc-hero-copy { background: #090909; }
.night-mode .bc-card-title, .night-mode .bc-read-link { color: #f5efe5; }

@media (max-width: 991px) {
    .bc-hero-grid { grid-template-columns: 1fr; box-shadow: 10px 10px 0 var(--bc-orange); }
    .bc-hero-copy { min-height: 360px; }
    .bc-lead { min-height: 420px; }
    .bc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .bc-shell { width: min(100% - 22px, 1180px); }
    .bc-hero { padding-top: 4px; }
    .bc-hero-grid { box-shadow: 6px 6px 0 var(--bc-orange); }
    .bc-hero-copy { min-height: 330px; padding: 28px 22px; }
    .bc-hero-copy::before { display: none; }
    .bc-title { font-size: clamp(40px, 13vw, 58px); }
    .bc-lead { min-height: 360px; }
    .bc-lead-content { padding: 24px 20px; }
    .bc-content { padding: 54px 0 64px; }
    .bc-heading-row { align-items: flex-start; flex-direction: column; }
    .bc-grid { grid-template-columns: 1fr; }
    .bc-card-media { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
    .bc-card, .bc-lead img, .bc-card-media img, .bc-read-link i { transition: none; }
}
