:root {
    --bc-red: #e50914;
    --bc-red-dark: #b90710;
    --bc-ink: #0f172a;
    --bc-muted: #64748b;
    --bc-soft: #f6f7f9;
    --bc-surface: #ffffff;
    --bc-border: #e5e7eb;
    --bc-footer: #080d16;
    --bc-radius: 14px;
    --bc-radius-sm: 10px;
    --bc-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    --bc-shadow-strong: 0 22px 58px rgba(15, 23, 42, 0.13);
}

.bc-article-page {
    background: #ffffff;
    color: var(--bc-ink);
    font-family: Inter, Arial, sans-serif;
}

body.bc-article-detail-body,
body.bc-article-detail-body .site-main {
    background: #ffffff;
}

.bc-article-page *,
.bc-article-page *::before,
.bc-article-page *::after {
    box-sizing: border-box;
}

.bc-article-page a {
    color: inherit;
    text-decoration: none;
}

.bc-article-page a:hover {
    color: var(--bc-red);
}

.bc-article-page :focus-visible {
    outline: 3px solid rgba(229, 9, 20, 0.28);
    outline-offset: 3px;
    border-radius: 8px;
}

.bc-page-shell {
    width: min(calc(100% - 48px), 1560px);
    margin: 0 auto;
    padding: 32px 0 48px;
}

.bc-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 980px) minmax(330px, 380px);
    gap: 56px;
    align-items: start;
    justify-content: center;
}

.bc-article-main,
.bc-article-sidebar {
    min-width: 0;
}

.bc-sticky-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.bc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 22px;
    color: var(--bc-muted);
    font-size: 13px;
    font-weight: 800;
}

.bc-breadcrumb-link,
.bc-breadcrumb-current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.bc-breadcrumb-link::after {
    content: "/";
    margin-left: 8px;
    color: #cbd5e1;
}

.bc-breadcrumb-current {
    max-width: 48ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-article-hero {
    margin-bottom: 20px;
}

.bc-article-kicker-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.bc-article-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border: 1px solid rgba(229, 9, 20, 0.18);
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.08);
    color: var(--bc-red-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.bc-article-kicker-muted {
    border-color: var(--bc-border);
    background: #ffffff;
    color: var(--bc-muted);
}

.bc-article-title {
    max-width: 980px;
    margin: 0 0 18px;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
}

.bc-article-deck {
    max-width: 920px;
    margin: 0 0 22px;
    color: #334155;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.5;
}

.bc-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 14px;
    margin-bottom: 20px;
    color: var(--bc-muted);
    font-size: 14px;
    font-weight: 750;
}

.bc-author-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    max-width: 100%;
    padding: 8px 10px 8px 8px;
    border: 1px solid var(--bc-border);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.bc-author-avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--bc-ink);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc-author-name,
.bc-author-role {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bc-author-name {
    color: var(--bc-ink);
    font-size: 14px;
    line-height: 1.15;
}

.bc-author-role {
    margin-top: 2px;
    color: var(--bc-muted);
    font-size: 12px;
    font-weight: 750;
}

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

.bc-meta-item i {
    color: var(--bc-red);
}

.bc-meta-divider {
    width: 1px;
    height: 18px;
    background: var(--bc-border);
}

.bc-listen-card,
.bc-info-panel,
.bc-content-card,
.bc-sidebar-card,
.bc-story-card {
    background: var(--bc-surface);
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius);
}

.bc-listen-card.article-listen-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    padding: 18px 22px;
    margin: 0 0 22px;
    color: var(--bc-ink);
    box-shadow: var(--bc-shadow);
}

.bc-listen-button.article-listen-button {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--bc-red);
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(229, 9, 20, 0.24);
}

.bc-listen-button.article-listen-button:hover,
.bc-listen-button.article-listen-button:focus-visible {
    background: var(--bc-red-dark);
    transform: translateY(-1px);
}

.bc-listen-copy {
    flex: 1 1 220px;
    min-width: 0;
}

.bc-listen-copy .article-listen-title {
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
}

.bc-listen-copy .article-listen-time,
.bc-listen-card .article-listen-note {
    color: var(--bc-muted);
    font-size: 13px;
    font-weight: 750;
}

.bc-listen-card .article-listen-note {
    flex: 1 1 100%;
    margin-left: 66px;
}

.bc-listen-wave {
    display: inline-flex;
    align-items: end;
    gap: 4px;
    height: 28px;
    padding: 0 6px;
}

.bc-listen-wave span {
    width: 4px;
    border-radius: 999px;
    background: var(--bc-red);
}

.bc-listen-wave span:nth-child(1) {
    height: 12px;
}

.bc-listen-wave span:nth-child(2) {
    height: 22px;
}

.bc-listen-wave span:nth-child(3) {
    height: 16px;
}

.bc-listen-wave span:nth-child(4) {
    height: 26px;
}

.bc-listen-card .bc-listen-player {
    flex: 1 1 100%;
    position: static;
    inset: auto;
    z-index: auto;
    display: none;
    margin-top: 4px;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    background: #fbfcfd;
    box-shadow: none;
    transform: none;
    transition: none;
}

.bc-listen-card .bc-listen-player.is-open {
    display: block;
    transform: none;
}

.bc-listen-card .article-audio-inner {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    padding: 14px;
}

.bc-listen-card .article-audio-title {
    color: var(--bc-ink);
    font-weight: 900;
}

.bc-listen-card .article-audio-meta {
    color: var(--bc-muted);
}

.bc-listen-card .article-audio-progress {
    background: #e2e8f0;
}

.bc-listen-card .article-audio-progress-bar {
    background: var(--bc-red);
}

.bc-listen-card .article-audio-button {
    border-color: var(--bc-border);
    background: #ffffff;
    color: var(--bc-ink);
}

.bc-listen-card .article-audio-toggle {
    background: var(--bc-red);
    color: #ffffff;
}

.bc-listen-card .article-audio-volume input {
    accent-color: var(--bc-red);
}

body.has-article-audio-player {
    padding-bottom: 0;
}

.bc-featured-image-wrap {
    margin: 0 0 18px;
}

.bc-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    object-fit: cover;
    border-radius: var(--bc-radius);
    background: #e2e8f0;
    box-shadow: var(--bc-shadow);
}

.bc-image-fallback {
    display: grid;
    place-items: center;
    gap: 4px;
    min-height: 420px;
    padding: 32px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.9)),
        var(--bc-ink);
    color: #ffffff;
    text-align: center;
}

.bc-image-fallback span,
.bc-image-fallback em {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
    text-transform: uppercase;
}

.bc-image-fallback strong {
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
}

.bc-image-caption {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 10px;
    color: var(--bc-muted);
    font-size: 12px;
    font-weight: 700;
}

.bc-share-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 16px 0 22px;
}

.bc-share-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bc-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-share-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.bc-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    border: 1px solid var(--bc-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--bc-ink);
    padding: 8px 13px;
    font-size: 13px;
    font-weight: 850;
}

.bc-share-btn:hover,
.bc-share-btn:focus-visible,
.bc-share-btn.is-copied {
    border-color: rgba(229, 9, 20, 0.35);
    background: rgba(229, 9, 20, 0.08);
    color: var(--bc-red-dark);
}

.bc-info-panel {
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.bc-info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
}

.bc-info-title::before {
    content: "";
    width: 5px;
    height: 24px;
    border-radius: 999px;
    background: var(--bc-red);
}

.bc-fact-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.bc-fact-tile {
    min-width: 0;
    border: 1px solid var(--bc-border);
    border-radius: var(--bc-radius-sm);
    padding: 14px;
    background: #fbfcfd;
}

.bc-fact-label,
.bc-fact-value {
    margin: 0;
}

.bc-fact-label {
    color: var(--bc-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-fact-value {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    color: var(--bc-ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
}

.bc-fact-icon {
    color: var(--bc-red);
}

.bc-content-card {
    padding: 24px;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.article-summary-box,
.article-source-box,
.article-content,
.article-inline-related {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.bc-block-title {
    position: relative;
    margin: 0 0 12px;
    padding-left: 16px;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.15;
}

.bc-block-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    border-radius: 999px;
    background: var(--bc-red);
}

.bc-block-title-accent {
    display: block;
    margin-bottom: 4px;
    color: var(--bc-red);
    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-summary-text,
.bc-source-card p,
.bc-source-summary-card p {
    color: #334155;
    font-size: 17px;
    line-height: 1.7;
}

.bc-summary-note {
    margin: 0.85rem 0 0;
    color: var(--bc-muted);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.55;
}

.bc-article-body {
    color: #202938;
    font-size: 18px;
    line-height: 1.84;
}

.bc-article-body p {
    margin: 0 0 1.45rem;
    color: inherit;
}

.bc-article-body p:first-of-type,
.bc-source-summary-card p:first-of-type {
    color: var(--bc-ink);
    font-size: 1.08em;
    line-height: 1.78;
}

.bc-article-body p:last-child {
    margin-bottom: 0;
}

.bc-article-body h2,
.bc-article-body h3 {
    margin: 2.1rem 0 0.85rem;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
}

.bc-article-body h2 {
    font-size: clamp(26px, 3vw, 34px);
}

.bc-article-body h3 {
    font-size: clamp(22px, 2.4vw, 28px);
}

.bc-article-body blockquote {
    margin: 2rem 0;
    border-left: 4px solid var(--bc-red);
    padding: 0.4rem 0 0.4rem 1.25rem;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 1.14em;
    font-weight: 850;
    line-height: 1.55;
}

.bc-article-body a,
.bc-source-link {
    color: #0f5e9c;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.bc-article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.6rem auto;
}

.article-source-box {
    display: grid;
    gap: 16px;
}

.bc-source-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--bc-border);
    padding-top: 16px;
}

.bc-source-meta-row div {
    display: grid;
    gap: 4px;
}

.bc-source-meta-row strong,
.bc-source-meta-row span {
    display: block;
}

.bc-source-meta-row strong {
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.bc-source-meta-row span {
    color: var(--bc-muted);
    font-size: 13px;
    font-weight: 750;
}

.article-source-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    border: 1px solid var(--bc-ink);
    background: var(--bc-ink);
    color: #ffffff !important;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
    white-space: nowrap;
}

.article-source-button:hover,
.article-source-button:focus-visible {
    border-color: var(--bc-red);
    background: var(--bc-red);
    color: #ffffff !important;
}

.article-inline-related {
    border-top: 2px solid var(--bc-ink);
    border-bottom: 1px solid var(--bc-border);
    padding: 16px 0;
    margin-top: 30px;
    margin-bottom: 32px;
}

.article-inline-related-kicker {
    display: block;
    margin-bottom: 9px;
    color: var(--bc-red);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.article-inline-related-list {
    display: grid;
    gap: 9px;
}

.article-inline-related a {
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.22;
    text-decoration: none;
}

.article-inline-related a:hover {
    color: var(--bc-red);
}

.bc-topic-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bc-topic-list a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(229, 9, 20, 0.18);
    border-radius: 999px;
    background: rgba(229, 9, 20, 0.07);
    color: var(--bc-red-dark);
    font-size: 13px;
    font-weight: 900;
}

.bc-section {
    margin: 30px 0 0;
}

.bc-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 0 0 14px;
    border-top: 2px solid var(--bc-ink);
    padding-top: 14px;
}

.bc-section-title {
    margin: 0;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0;
}

.bc-section-link {
    color: var(--bc-red-dark);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.bc-story-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bc-story-card:hover {
    border-color: rgba(229, 9, 20, 0.18);
    box-shadow: var(--bc-shadow);
    transform: translateY(-3px);
}

.bc-story-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bc-story-image-wrap {
    display: block;
    overflow: hidden;
    background: #e2e8f0;
}

.bc-story-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.bc-story-fallback {
    display: grid;
    place-items: center;
    min-height: 150px;
    background: linear-gradient(135deg, var(--bc-ink), #273449);
    color: #ffffff;
    font-weight: 900;
}

.bc-story-body {
    display: grid;
    gap: 7px;
    padding: 14px;
}

.bc-story-category {
    color: var(--bc-red);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-story-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.22;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.bc-story-date {
    color: var(--bc-muted);
    font-size: 12px;
    font-weight: 750;
}

.bc-sidebar-card {
    padding: 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.bc-sidebar-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.bc-sidebar-title {
    margin: 0;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
}

.bc-sidebar-link {
    color: var(--bc-red-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-news-list,
.bc-popular-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bc-news-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.bc-news-thumb-link {
    display: block;
}

.bc-news-thumb {
    width: 82px;
    height: 62px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    background: #e2e8f0;
}

.bc-news-thumb-fallback {
    display: grid;
    place-items: center;
    padding: 6px;
    background: var(--bc-ink);
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.bc-news-title,
.bc-popular-title {
    margin: 0;
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.25;
}

.bc-news-title a,
.bc-popular-title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.bc-news-time,
.bc-popular-views {
    display: block;
    margin-top: 5px;
    color: var(--bc-muted);
    font-size: 12px;
    font-weight: 750;
}

.bc-popular-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-popular-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.bc-popular-number {
    display: grid;
    place-items: start center;
    color: var(--bc-red);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.bc-sidebar-facts {
    display: grid;
    gap: 10px;
    margin: 0;
}

.bc-sidebar-fact-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-sidebar-fact-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.bc-sidebar-fact-row dt {
    color: var(--bc-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bc-sidebar-fact-row dd {
    margin: 0;
    color: var(--bc-ink);
    font-size: 13px;
    font-weight: 850;
    text-align: right;
}

.bc-newsletter-card {
    padding: 24px;
    border-radius: var(--bc-radius);
    background:
        linear-gradient(135deg, rgba(229, 9, 20, 0.18), transparent 34%),
        linear-gradient(135deg, #0b1220, #111827);
    color: #ffffff;
    box-shadow: var(--bc-shadow-strong);
}

.bc-newsletter-title {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0;
}

.bc-newsletter-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.55;
}

.bc-newsletter-input {
    width: 100%;
    min-height: 46px;
    margin: 16px 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--bc-ink);
    padding: 12px 14px;
    font: inherit;
}

.bc-newsletter-button,
.bc-tip-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: var(--bc-red);
    color: #ffffff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.bc-newsletter-button {
    width: 100%;
}

.bc-newsletter-button:hover,
.bc-newsletter-button:focus-visible,
.bc-tip-button:hover,
.bc-tip-button:focus-visible {
    background: var(--bc-red-dark);
    color: #ffffff;
}

.bc-tip-card p {
    margin: 0 0 14px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.bc-event-item {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--bc-border);
}

.bc-event-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.bc-event-title {
    color: var(--bc-ink);
    font-family: "Inter Tight", Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.25;
}

.bc-sidebar-html {
    color: #334155;
    font-size: 14px;
    line-height: 1.6;
}

.bc-empty-state {
    margin: 0;
    border: 1px dashed var(--bc-border);
    border-radius: var(--bc-radius-sm);
    background: #fbfcfd;
    color: var(--bc-muted);
    padding: 14px;
    font-size: 13px;
    font-weight: 800;
}

.bc-footer {
    background: var(--bc-footer);
    color: #ffffff;
    border-top: 4px solid var(--bc-red);
    margin-top: 40px;
}

.bc-footer-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 56px 20px 28px;
}

@media (max-width: 1180px) {
    .bc-article-layout {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 28px;
    }

    .bc-fact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .bc-page-shell {
        padding-top: 22px;
    }

    .bc-article-layout {
        grid-template-columns: 1fr;
    }

    .bc-sticky-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .bc-newsletter-card,
    .bc-tip-card {
        align-self: stretch;
    }
}

@media (max-width: 760px) {
    .bc-page-shell {
        width: min(calc(100% - 28px), 1560px);
        padding: 20px 0 36px;
    }

    .bc-breadcrumb-current {
        max-width: 30ch;
    }

    .bc-article-title {
        font-size: 38px;
        line-height: 1;
    }

    .bc-article-meta {
        align-items: flex-start;
    }

    .bc-author-card {
        width: 100%;
        border-radius: var(--bc-radius);
    }

    .bc-meta-divider {
        display: none;
    }

    .bc-listen-card.article-listen-box {
        align-items: flex-start;
        padding: 16px;
    }

    .bc-listen-card .article-listen-note {
        margin-left: 0;
    }

    .bc-listen-card .article-audio-inner {
        grid-template-columns: 1fr;
    }

    .bc-listen-card .article-audio-controls,
    .bc-listen-card .article-audio-actions {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .bc-share-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .bc-share-actions {
        justify-content: flex-start;
    }

    .bc-fact-grid,
    .bc-card-grid,
    .bc-sticky-sidebar {
        grid-template-columns: 1fr;
    }

    .bc-content-card,
    .bc-info-panel,
    .bc-sidebar-card,
    .bc-newsletter-card {
        padding: 18px;
    }

    .bc-article-body,
    .article-content {
        font-size: 17px;
        line-height: 1.82;
    }

    .bc-source-meta-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-source-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .bc-page-shell {
        width: min(calc(100% - 24px), 1560px);
    }

    .bc-article-title {
        font-size: 34px;
    }

    .bc-article-deck,
    .bc-article-body {
        font-size: 16px;
    }

    .bc-news-item {
        grid-template-columns: 74px minmax(0, 1fr);
    }

    .bc-news-thumb {
        width: 74px;
        height: 58px;
    }

    .bc-share-btn span {
        display: none;
    }
}
