:root {
    --bcpost-ui: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --bcpost-serif: Georgia, "Merriweather", "Playfair Display", Cambria, serif;
    --bcpost-ink: #0f172a;
    --bcpost-muted: #64748b;
    --bcpost-soft: #f8fafc;
    --bcpost-paper: #ffffff;
    --bcpost-line: #e2e8f0;
    --bcpost-red: #e11d1d;
    --bcpost-red-dark: #b91c1c;
    --bcpost-sidebar-red-dark: #991b1b;
    --bcpost-navy: #08111f;
    --bcpost-card-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    --bcpost-radius: 22px;
    --bcpost-container: 1500px;
}

.bcpost-app {
    background: var(--bcpost-soft);
    color: var(--bcpost-ink);
    font-family: var(--bcpost-ui);
}

.bcpost-app h1,
.bcpost-app h2,
.bcpost-app h3,
.bcpost-app .cn-article-title,
.bcpost-app .article-title,
.bcpost-app .bcpost-story-card strong {
    font-family: var(--bcpost-serif);
    font-weight: 760;
    letter-spacing: 0;
}

.bcpost-app p,
.bcpost-app .cn-article-content {
    line-height: 1.75;
}

.bcpost-app h1 {
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1.08;
}

.bcpost-container {
    width: min(calc(100% - 32px), var(--bcpost-container));
    margin-inline: auto;
}

.bcpost-sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0 0 rgba(15, 23, 42, 0);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.bcpost-sticky-header.is-shrunk,
.bcpost-sticky-header.is-stuck {
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.09);
}

.bcpost-sticky-header.is-shrunk .cn-topbar {
    max-height: 0;
    border: 0;
}

.bcpost-sticky-header .cn-topbar {
    max-height: 44px;
    transition: max-height 180ms ease;
}

.bcpost-sticky-header.is-shrunk .cn-brand-inner {
    min-height: 68px;
    padding-block: 8px;
}

.bcpost-sticky-header.is-shrunk .cn-brand img {
    max-height: 44px;
}

.bcpost-local-widget {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1.1rem;
}

.bcpost-local-widget span {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
}

.bcpost-search {
    position: relative;
}

.bcpost-search::after {
    content: "Search cities, topics, events";
    position: absolute;
    left: 18px;
    right: 58px;
    bottom: -34px;
    z-index: 3;
    display: none;
    padding: 8px 12px;
    border: 1px solid var(--bcpost-line);
    border-radius: 14px;
    background: var(--bcpost-paper);
    color: var(--bcpost-muted);
    font-size: 0.82rem;
    box-shadow: var(--bcpost-card-shadow);
}

.bcpost-sticky-header.is-searching .bcpost-search::after,
.bcpost-search:focus-within::after {
    display: block;
}

.bcpost-home-shell {
    background:
        radial-gradient(circle at top right, rgba(225, 29, 29, 0.08), transparent 30rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 46%, #f8fafc 100%);
}

.bcpost-breaking {
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bcpost-navy);
    color: #ffffff;
}

.bcpost-breaking__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(0.75rem, 2vw, 1.35rem);
    align-items: center;
    min-height: 52px;
}

.bcpost-breaking__label,
.bcpost-kicker,
.bcpost-topic-pill,
.cn-category,
.cn-post-badge,
.cn-location-badge,
.cn-badge,
.cn-importance-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: max-content;
    min-height: 28px;
    padding: 0.36rem 0.62rem;
    border-radius: 999px;
    font-family: var(--bcpost-ui);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.bcpost-breaking__label {
    background: var(--bcpost-red);
    color: #ffffff;
}

.bcpost-breaking__track {
    min-width: 0;
    overflow: hidden;
}

.bcpost-breaking__content {
    display: flex;
    gap: 1.35rem;
    min-width: max-content;
    animation: bcpostTicker 36s linear infinite;
}

.bcpost-breaking__content a,
.bcpost-breaking__content span {
    max-width: min(460px, 68vw);
    overflow: hidden;
    color: #ffffff;
    font-weight: 760;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes bcpostTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-40%); }
}

.bcpost-home-hero {
    padding: clamp(2.5rem, 5vw, 5.8rem) 0 clamp(2rem, 4vw, 3.5rem);
    background:
        linear-gradient(120deg, rgba(8, 17, 31, 0.98), rgba(15, 23, 42, 0.92)),
        radial-gradient(circle at 72% 18%, rgba(225, 29, 29, 0.2), transparent 28rem);
    color: #ffffff;
}

.bcpost-hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.bcpost-hero-copy {
    display: grid;
    gap: clamp(1rem, 2vw, 1.45rem);
    align-content: center;
    max-width: 720px;
    padding-block: clamp(1rem, 3vw, 2rem);
}

.bcpost-kicker {
    background: rgba(225, 29, 29, 0.12);
    color: #fecaca;
}

.bcpost-hero-copy h1 {
    max-width: 680px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.15rem, 4vw, 4.15rem);
    line-height: 1.1;
    text-wrap: balance;
    overflow-wrap: normal;
}

.bcpost-hero-copy p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.72;
}

.bcpost-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 0.6rem;
}

.bcpost-hero-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    transition: background-color 180ms ease, transform 180ms ease;
}

.bcpost-hero-actions a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.bcpost-top-stories {
    display: grid;
    gap: 1rem;
}

.bcpost-story-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.72);
    border-radius: var(--bcpost-radius);
    background: var(--bcpost-paper);
    box-shadow: var(--bcpost-card-shadow);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.bcpost-story-card:hover {
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.16);
    transform: translateY(-3px);
}

.bcpost-story-card a {
    color: inherit;
}

.bcpost-story-card--lead > a {
    position: relative;
    display: block;
    min-height: clamp(430px, 41vw, 610px);
}

.bcpost-story-card__media,
.bcpost-story-card__media picture,
.bcpost-story-card__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.bcpost-story-card--lead .bcpost-story-card__media {
    position: absolute;
    inset: 0;
}

.bcpost-story-card__media img {
    object-fit: cover;
    transition: transform 420ms ease;
}

.bcpost-story-card:hover .bcpost-story-card__media img {
    transform: scale(1.025);
}

.bcpost-story-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: grid;
    justify-items: start;
    gap: 0.8rem;
    padding: clamp(1.2rem, 3vw, 2.4rem);
    color: #ffffff;
}

.bcpost-story-card--lead > a::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 56%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 58%, transparent 100%);
    pointer-events: none;
}

.bcpost-topic-pill,
.cn-category,
.cn-post-badge,
.cn-location-badge,
.cn-badge {
    background: #ffffff;
    color: var(--bcpost-red-dark);
}

.bcpost-story-card__overlay strong {
    max-width: 880px;
    color: #ffffff;
    font-size: clamp(1.75rem, 3.1vw, 3.35rem);
    line-height: 1.08;
    text-wrap: balance;
}

.bcpost-story-card__overlay em {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.84);
    font-style: normal;
    font-weight: 520;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bcpost-card-meta,
.cn-post-meta,
.cn-meta-line,
.cn-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    color: var(--bcpost-muted);
    font-family: var(--bcpost-ui);
    font-size: 0.84rem;
    font-weight: 700;
}

.bcpost-story-card__overlay .bcpost-card-meta {
    color: rgba(255, 255, 255, 0.72);
}

.bcpost-supporting-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.25rem);
    align-items: stretch;
}

.bcpost-story-card--compact > a {
    display: grid;
    min-height: 100%;
}

.bcpost-story-card--compact .bcpost-story-card__media {
    aspect-ratio: 16 / 9;
    background: #e2e8f0;
}

.bcpost-story-card__body {
    display: grid;
    justify-items: start;
    gap: 0.6rem;
    padding: 1rem;
    grid-template-rows: auto minmax(3.1em, auto) auto;
}

.bcpost-story-card__body strong {
    color: var(--bcpost-ink);
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
    line-height: 1.15;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bcpost-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
    gap: clamp(1.75rem, 3.25vw, 3rem);
    align-items: start;
    padding-block: clamp(3rem, 6vw, 5.5rem);
}

.bcpost-home-main,
.bcpost-home-rail {
    display: grid;
    gap: clamp(3rem, 6vw, 5rem);
}

.bcpost-home-rail {
    gap: clamp(1.5rem, 3vw, 2.25rem);
}

.bcpost-section,
.bcpost-rail-card,
.bcpost-editorial-strip {
    min-width: 0;
    min-height: 260px;
    border: 1px solid var(--bcpost-line);
    border-radius: var(--bcpost-radius);
    background: var(--bcpost-paper);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.bcpost-section,
.bcpost-rail-card {
    padding: clamp(1.25rem, 2.4vw, 2rem);
}

.bcpost-section-local-news {
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at top left, rgba(225, 29, 29, 0.08), transparent 20rem);
}

.bcpost-editorial-strip {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background:
        linear-gradient(135deg, #fff7ed 0%, #ffffff 48%, #f8fafc 100%);
}

.bcpost-editorial-strip__intro {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.bcpost-editorial-strip h2 {
    margin: 0;
    font-size: clamp(1.95rem, 3.2vw, 3.25rem);
    line-height: 1.12;
    text-wrap: balance;
}

.bcpost-editorial-strip p {
    margin: 1rem 0 0;
    max-width: 42rem;
    color: var(--bcpost-muted);
    line-height: 1.75;
}

.bcpost-editorial-strip__feed {
    grid-column: span 8;
    min-height: 0;
}

.bcpost-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.35rem;
    color: var(--bcpost-red-dark);
    font-family: var(--bcpost-ui);
    font-size: 0.86rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bcpost-editorial-link:hover {
    color: var(--bcpost-sidebar-red-dark);
}

.bcpost-opinion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.bcpost-opinion-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--bcpost-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.bcpost-opinion-card:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.09);
    transform: translateY(-2px);
}

.bcpost-opinion-card__media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e2e8f0;
}

.bcpost-opinion-card__media img,
.bcpost-opinion-card__media .cn-image-fallback {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.bcpost-opinion-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
    padding: clamp(1rem, 2vw, 1.25rem);
}

.bcpost-opinion-card__badge {
    width: fit-content;
    max-width: 100%;
    min-height: 24px;
    padding: 0.28rem 0.56rem;
    border-radius: 999px;
    background: #fff1f2;
    color: var(--bcpost-sidebar-red-dark);
    font-family: var(--bcpost-ui);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.095em;
    line-height: 1;
    text-transform: uppercase;
}

.bcpost-opinion-card__title {
    margin: 0;
    font-family: var(--bcpost-serif);
    font-size: clamp(1.2rem, 1.55vw, 1.48rem);
    line-height: 1.16;
}

.bcpost-opinion-card__title a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--bcpost-ink);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bcpost-opinion-card__title a:hover {
    text-decoration: underline;
}

.bcpost-opinion-card__summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--bcpost-muted);
    font-size: 0.94rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.bcpost-opinion-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    margin: auto 0 0;
    color: #94a3b8;
    font-family: var(--bcpost-ui);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bcpost-image-fallback,
.cn-image-fallback,
.article_fallback_image {
    display: grid;
    place-items: center;
    min-height: 180px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(185, 28, 28, 0.78)),
        var(--bcpost-navy);
    color: #ffffff;
    font-weight: 900;
}

.cn-post-card,
.cn-news-card,
.cn-horizontal-news-card,
.cn-local-lead-story,
.cn-local-city-panel article,
.cn-feature-card {
    overflow: hidden;
    border: 1px solid var(--bcpost-line);
    border-radius: 20px;
    background: var(--bcpost-paper);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.cn-post-card:hover,
.cn-news-card:hover,
.cn-horizontal-news-card:hover,
.cn-local-lead-story:hover {
    box-shadow: var(--bcpost-card-shadow);
    transform: translateY(-2px);
}

.cn-post-media,
.cn-news-card-media,
.cn-horizontal-news-media,
.cn-local-lead-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e2e8f0;
}

.cn-post-media img,
.cn-news-card-media img,
.cn-horizontal-news-media img,
.cn-local-lead-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cn-post-media picture,
.cn-news-card-media picture,
.cn-horizontal-news-media picture,
.cn-local-lead-media picture,
.cn-featured-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.cn-post-title,
.cn-news-card h3,
.cn-horizontal-news-card h3,
.cn-local-lead-story h4,
.cn-feature-card h3 {
    font-family: var(--bcpost-serif);
}

.cn-post-title a,
.cn-news-card h3 a,
.cn-horizontal-news-card h3 a,
.cn-local-lead-story h4 a,
.cn-feature-card h3 a,
.bcpost-story-card strong {
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.cn-post-title a:hover,
.cn-news-card h3 a:hover,
.cn-horizontal-news-card h3 a:hover,
.cn-local-lead-story h4 a:hover,
.cn-feature-card h3 a:hover {
    text-decoration: underline;
}

.bcpost-section .cn-section-header,
.bcpost-section .cn-local-news-hero,
.bcpost-rail-card .cn-sidebar-module-head {
    margin-bottom: clamp(1.1rem, 2vw, 1.6rem);
}

.cn-latest-horizontal-list,
.cn-feature-small-grid {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.cn-latest-horizontal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.cn-horizontal-news-card {
    display: grid;
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
    min-height: 100%;
}

.cn-horizontal-news-card > div,
.cn-local-lead-story > div,
.cn-feature-card-body {
    display: grid;
    align-content: start;
    gap: 0.68rem;
    min-width: 0;
    padding: clamp(1rem, 1.7vw, 1.25rem);
}

.cn-horizontal-news-card h3,
.cn-local-lead-story h4,
.cn-feature-card h3 {
    margin: 0;
    font-size: clamp(1.2rem, 1.55vw, 1.48rem);
    line-height: 1.16;
}

.cn-horizontal-news-card h3 a,
.cn-local-lead-story h4 a,
.cn-feature-card h3 a,
.cn-local-city-list article a,
.cn-trending-list a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.cn-horizontal-news-card h3 a,
.cn-local-lead-story h4 a,
.cn-feature-card h3 a {
    -webkit-line-clamp: 2;
}

.cn-horizontal-news-card p:not(.cn-meta-line),
.cn-local-lead-story p:not(.cn-meta-line),
.cn-feature-card-body p:not(.cn-meta-line) {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--bcpost-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.cn-category,
.cn-post-badge,
.cn-location-badge,
.cn-badge,
.cn-importance-label,
.bcpost-topic-pill {
    min-height: 24px;
    padding: 0.28rem 0.56rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.095em;
    line-height: 1;
}

.bcpost-story-card .cn-importance-label,
.bcpost-story-card .bcpost-topic-pill {
    width: fit-content !important;
    max-width: max-content !important;
    justify-self: start;
}

.cn-local-city-content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.cn-local-lead-story {
    display: grid;
    grid-template-rows: auto 1fr;
}

.cn-local-city-list {
    display: grid;
    gap: 0;
    align-content: start;
    border: 1px solid var(--bcpost-line);
    background: #ffffff;
}

.cn-local-city-list article {
    display: grid;
    gap: 0.45rem;
    min-height: 108px;
    padding: 1rem 1.1rem;
    border: 0;
    border-bottom: 1px solid #eef2f7;
    box-shadow: none;
}

.cn-local-city-list article:last-child {
    border-bottom: 0;
}

.cn-local-city-list article a {
    color: var(--bcpost-ink);
    font-family: var(--bcpost-serif);
    font-size: 1.05rem;
    font-weight: 740;
    line-height: 1.2;
    -webkit-line-clamp: 2;
}

.bcpost-rail-card,
.cn-sidebar-module {
    padding: clamp(1.35rem, 2vw, 1.75rem);
}

.bcpost-rail-card .cn-sidebar-module,
.bcpost-rail-card .cn-newsletter-cta {
    border: 0;
    box-shadow: none;
    padding: 0;
}

.cn-sidebar-module-head h2,
.bcpost-rail-card h2 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.1;
}

.cn-trending-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
}

.cn-trending-list li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.35rem 0.85rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid #eef2f7;
}

.cn-trending-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.cn-trending-list a {
    color: var(--bcpost-ink);
    font-family: var(--bcpost-serif);
    font-size: 1.04rem;
    font-weight: 740;
    line-height: 1.22;
    -webkit-line-clamp: 2;
}

.cn-trending-list span {
    grid-column: 2;
    color: var(--bcpost-muted);
    font-size: 0.78rem;
    font-weight: 750;
}

.cn-newsletter-cta {
    gap: clamp(1rem, 2vw, 1.35rem);
    border: 1px solid var(--bcpost-line);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.cn-newsletter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: stretch;
}

.cn-newsletter-input,
.cn-newsletter-cta .cn-newsletter-row .cn-newsletter-input,
.bc-footer-input {
    min-height: 50px;
    border: 1px solid transparent;
    border-radius: 12px !important;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.cn-newsletter-input,
.cn-newsletter-cta .cn-newsletter-row .cn-newsletter-input {
    background: #f1f5f9;
    color: var(--bcpost-ink);
    padding: 0.8rem 1rem;
}

.cn-newsletter-input:focus,
.cn-newsletter-cta .cn-newsletter-row .cn-newsletter-input:focus {
    border-color: rgba(185, 28, 28, 0.38);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.1);
    outline: 0;
}

.cn-newsletter-button,
.cn-newsletter-cta .cn-newsletter-button {
    min-height: 50px;
    align-self: stretch;
    border-radius: 12px !important;
    padding-inline: 1.15rem;
}

.bc-footer-list {
    gap: 0.65rem;
}

.bc-footer-link,
.bc-footer-legal-link {
    line-height: 1.55;
}

.bc-footer-link:hover,
.bc-footer-link:focus,
.bc-footer-legal-link:hover,
.bc-footer-legal-link:focus {
    color: #ef4444;
}

.bc-footer-input-row {
    align-items: stretch;
}

.bc-footer-input {
    background: rgba(255, 255, 255, 0.085);
}

.bc-footer-input:focus {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(255, 255, 255, 0.13);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
    outline: 0;
}

.bc-footer-submit {
    min-height: 50px;
    align-self: stretch;
    border-radius: 12px !important;
}

.bcpost-latest-news-header {
    align-items: end;
}

.bcpost-latest-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: stretch;
}

.bcpost-latest-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #eef2f7;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
    transition: box-shadow 180ms ease, transform 180ms ease;
}

.bcpost-latest-card:hover {
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.bcpost-latest-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
    color: inherit;
}

.bcpost-latest-card__media img,
.bcpost-latest-card__media .cn-image-fallback {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 260ms ease;
}

.bcpost-latest-card:hover .bcpost-latest-card__media img {
    transform: scale(1.025);
}

.bcpost-latest-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 28px);
    min-height: 26px;
    padding: 0.36rem 0.62rem;
    overflow: hidden;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--bcpost-red-dark);
    font-family: var(--bcpost-ui);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.095em;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.bcpost-latest-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
    padding: clamp(1rem, 2vw, 1.35rem);
    background: #ffffff;
}

.bcpost-latest-card__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.bcpost-latest-card__labels:empty {
    display: none;
}

.bcpost-latest-card__labels .cn-importance-label {
    width: fit-content !important;
    max-width: max-content !important;
}

.bcpost-latest-card__title {
    margin: 0;
    color: #111827;
    font-family: var(--bcpost-serif);
    font-size: clamp(1.3rem, 1.8vw, 1.7rem);
    font-weight: 760;
    line-height: 1.18;
}

.bcpost-latest-card__title a {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.bcpost-latest-card__title a:hover,
.bcpost-latest-card__title a:focus {
    color: #111827;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.bcpost-latest-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.bcpost-latest-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    align-items: center;
    margin: auto 0 0;
    padding-top: 0.35rem;
    color: #9ca3af;
    font-size: 0.74rem;
    font-weight: 760;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
}

.bcpost-latest-card__meta span:not(:first-child)::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 0.7rem;
    border-radius: 999px;
    background: #d1d5db;
    vertical-align: middle;
}

.cn-article-page {
    background: #ffffff;
}

.cn-article-header,
.cn-article-hero,
.cn-article-main {
    max-width: 1120px;
    margin-inline: auto;
}

.cn-article-title {
    max-width: 980px;
    font-size: clamp(2rem, 4.4vw, 4.35rem);
    line-height: 1.04;
}

.cn-article-dek {
    max-width: 760px;
    color: var(--bcpost-muted);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.cn-article-content {
    max-width: 72ch;
    margin-inline: auto;
    color: #1f2937;
    font-family: var(--bcpost-serif);
    font-size: clamp(1.06rem, 1.35vw, 1.18rem);
    line-height: 1.82;
}

.cn-article-content h2,
.cn-article-content h3 {
    max-width: 65ch;
    font-family: var(--bcpost-serif);
}

.cn-article-content p {
    margin-block: 1.15rem;
}

.cn-article-content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--bcpost-red);
    background: #fff7f7;
    color: var(--bcpost-ink);
    font-size: 1.18em;
}

.cn-article-hero picture,
.cn-article-hero img {
    display: block;
    width: 100%;
}

.home-lazy-section[aria-busy="true"] {
    content-visibility: auto;
    contain-intrinsic-size: 1px 520px;
}

@media (max-width: 1199.98px) {
    .bcpost-hero-grid,
    .bcpost-home-layout {
        grid-template-columns: 1fr;
    }

    .bcpost-editorial-strip__intro,
    .bcpost-editorial-strip__feed {
        grid-column: 1 / -1;
    }

    .bcpost-supporting-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cn-latest-horizontal-list,
    .cn-local-city-content {
        grid-template-columns: 1fr;
    }

    .bcpost-latest-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .bcpost-home-hero {
        padding-top: 2rem;
    }

    .bcpost-hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
        line-height: 1.1;
    }

    .bcpost-story-card--lead > a {
        min-height: 430px;
    }

    .bcpost-story-card__overlay strong {
        font-size: clamp(1.55rem, 8.5vw, 2.25rem);
    }

    .bcpost-supporting-grid {
        grid-template-columns: 1fr;
    }

    .bcpost-home-layout {
        padding-block: 1.5rem;
    }

    .bcpost-opinion-grid {
        grid-template-columns: 1fr;
    }

    .bcpost-home-main {
        gap: 2.25rem;
    }

    .cn-latest-horizontal-list,
    .cn-horizontal-news-card {
        grid-template-columns: 1fr;
    }

    .bcpost-latest-news-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cn-newsletter-row,
    .bc-footer-input-row {
        grid-template-columns: 1fr;
    }

    .bcpost-breaking__inner {
        grid-template-columns: 1fr;
        padding-block: 0.65rem;
    }
}
