/* =========================================================
   BC BRICK — NEWS
========================================================= */

.bc-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--bc-space-2);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bc-news-meta__line {
    width: var(--bc-space-4);
    height: 1px;
    flex: 0 0 auto;
    background: var(--bc-color-border);
}

.bc-news-meta strong {
    color: var(--bc-color-accent);
    font-weight: 700;
}


/* =========================================================
   01. NEWS ARCHIVE / home.php
========================================================= */


/* =========================================================
   ARCHIVE — PAGE
========================================================= */

.bc-news-page {
    color: var(--bc-color-text);
    background: var(--bc-color-background);
}

.bc-news {
    padding-top: var(--bc-space-5);
    padding-bottom: var(--bc-section-md);
    background: var(--bc-color-background);
}

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


/* =========================================================
   ARCHIVE — BREADCRUMBS
========================================================= */

.bc-news-archive-breadcrumbs {
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: var(--bc-line-height-small);
    margin: 0 0 var(--bc-space-10);
    display: flex;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--bc-space-2);
    list-style: none;
}

.bc-news-archive-breadcrumbs__item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
}

.bc-news-archive-breadcrumbs__link {
    color: var(--bc-color-text-muted);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-news-archive-breadcrumbs__link:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-news-archive-breadcrumbs__link:hover {
        color: var(--bc-color-primary);
    }

}

.bc-news-archive-breadcrumbs__separator {
    display: grid;
    width: var(--bc-space-4);
    height: var(--bc-space-4);
    flex: 0 0 auto;
    place-items: center;
    color: var(--bc-color-border);
}

.bc-news-archive-breadcrumbs__separator svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.bc-news-archive-breadcrumbs__current {
    color: var(--bc-color-text);
    font-weight: 600;
}


/* =========================================================
   ARCHIVE — HEADER
========================================================= */

.bc-news-header {
    margin-bottom: var(--bc-space-9);
}

.bc-news-header__main {
    min-width: 0;
}

.bc-news-header__eyebrow {
    display: flex;
    margin: 0 0 var(--bc-space-3);
    align-items: center;
    gap: var(--bc-space-3);
    color: var(--bc-color-accent);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 700;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bc-news-header__eyebrow::before {
    width: var(--bc-space-6);
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.bc-news-header__title {
    max-width: var(--bc-container-content);
    margin: 0;
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h1);
    font-weight: 700;
    line-height: var(--bc-line-height-h1);
    letter-spacing: -0.04em;
    text-wrap: balance;
}


/* =========================================================
   ARCHIVE — GRID
========================================================= */

.bc-news-grid {
    display: grid;
    padding-top: var(--bc-space-7);
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    column-gap: var(--bc-grid-gap-lg);
    row-gap: var(--bc-space-9);
    border-top: 1px solid var(--bc-color-border);
}


/* =========================================================
   ARCHIVE — CARD
========================================================= */

.bc-news-card {
    display: grid;
    min-width: 0;
    grid-template-columns:
        minmax(180px, 220px)
        minmax(0, 1fr);
    align-items: start;
    gap: var(--bc-space-5);
}


/* =========================================================
   ARCHIVE — IMAGE
========================================================= */

.bc-news-card__media {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-background-soft);
    text-decoration: none;
    touch-action: manipulation;
    transition: border-color var(--bc-transition);
}

.bc-news-card__media:focus-visible {
    border-color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-news-card__media:hover {
        border-color: var(--bc-color-primary);
    }

}

.bc-news-card__media:focus-visible {
    outline: 2px solid var(--bc-color-focus);
    outline-offset: var(--bc-space-1);
}

.bc-news-card__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.bc-news-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    padding: var(--bc-space-4);
    place-items: center;
    color: var(--bc-color-primary);
    background: var(--bc-color-background-soft);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h6);
    font-weight: 700;
    line-height: var(--bc-line-height-h6);
    text-align: center;
    opacity: 0.24;
}


/* =========================================================
   ARCHIVE — CONTENT
========================================================= */

.bc-news-card__content {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
}


/* =========================================================
   ARCHIVE — TITLE
========================================================= */

.bc-news-card__title {
    margin: var(--bc-space-3) 0 0;
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
    letter-spacing: -0.015em;
}

.bc-news-card__title a {
    color: inherit;
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-news-card__title a:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-news-card__title a:hover {
        color: var(--bc-color-primary);
    }

}


/* =========================================================
   ARCHIVE — EXCERPT
========================================================= */

.bc-news-card__excerpt {
    display: -webkit-box;
    margin: var(--bc-space-3) 0 0;
    overflow: hidden;
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 400;
    line-height: var(--bc-line-height-body);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}


/* =========================================================
   ARCHIVE — READ MORE
========================================================= */

.bc-news-card__more {
    display: inline-flex;
    width: fit-content;
    margin-top: var(--bc-space-5);
    align-items: center;
    gap: var(--bc-space-2);
    color: var(--bc-color-primary);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 700;
    line-height: var(--bc-line-height-small);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-news-card__more:focus-visible {
    color: var(--bc-color-accent);
}

@media (hover: hover) and (pointer: fine) {

    .bc-news-card__more:hover {
        color: var(--bc-color-accent);
    }

}

.bc-news-card__more svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}


/* =========================================================
   ARCHIVE — NAVIGATION
========================================================= */

.bc-news-navigation {
    display: flex;
    margin-top: var(--bc-space-12);
    align-items: center;
    justify-content: center;
    gap: var(--bc-space-4);
}

.bc-news-navigation__newer,
.bc-news-navigation__older {
    display: flex;
}

.bc-news-navigation a {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bc-color-primary);
    border-radius: var(--bc-radius-sm);
    color: var(--bc-color-primary);
    background: transparent;
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-button);
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    touch-action: manipulation;
    transition:
        color var(--bc-transition),
        border-color var(--bc-transition),
        background-color var(--bc-transition);
}

.bc-news-navigation a:focus-visible {
    color: var(--bc-color-white);
    border-color: var(--bc-color-primary);
    background: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-news-navigation a:hover {
        color: var(--bc-color-white);
        border-color: var(--bc-color-primary);
        background: var(--bc-color-primary);
    }

}

.bc-news-navigation a:focus-visible {
    outline: 2px solid var(--bc-color-focus);
    outline-offset: var(--bc-space-1);
}


/* =========================================================
   ARCHIVE — EMPTY
========================================================= */

.bc-news-empty {
    padding-block: var(--bc-space-8);
    border-top: 1px solid var(--bc-color-border);
}

.bc-news-empty p {
    margin: 0;
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body);
    line-height: var(--bc-line-height-body);
}


/* =========================================================
   <= 1199
========================================================= */

@media (max-width: 1199px) {

    .bc-news-grid {
        column-gap: var(--bc-grid-gap);
    }

    .bc-news-card {
        grid-template-columns:
            180px
            minmax(0, 1fr);
        gap: var(--bc-space-4);
    }

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991px) {

    .bc-news {
        padding-block: var(--bc-section-sm);
    }

    .bc-news-header {
        margin-bottom: var(--bc-space-7);
    }

    .bc-news-grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: var(--bc-space-7);
    }

    .bc-news-card {
        grid-template-columns:
            220px
            minmax(0, 1fr);
        gap: var(--bc-grid-gap);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .bc-news-archive-breadcrumbs {
        margin-bottom: var(--bc-space-6);
    }

    .bc-news-header {
        margin-bottom: var(--bc-space-6);
    }

    .bc-news-grid {
        padding-top: var(--bc-space-6);
        row-gap: var(--bc-space-8);
    }

    .bc-news-card {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-4);
    }

    .bc-news-card__media {
        aspect-ratio: 16 / 10;
    }

    .bc-news-card__title {
        margin-top: var(--bc-space-3);
    }

    .bc-news-card__excerpt {
        -webkit-line-clamp: 3;
    }

    .bc-news-card__more {
        margin-top: var(--bc-space-4);
    }

    .bc-news-navigation {
        margin-top: var(--bc-space-8);
        flex-direction: column;
    }

    .bc-news-navigation__newer,
    .bc-news-navigation__older,
    .bc-news-navigation a {
        width: 100%;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bc-news-archive-breadcrumbs__link,
    .bc-news-card__media,
    .bc-news-card__title a,
    .bc-news-card__more,
    .bc-news-navigation a {
        transition: none;
    }

}


/* =========================================================
   02. SINGLE NEWS / single-post.php
========================================================= */


/* =========================================================
   SINGLE — PAGE
========================================================= */

.bc-news-single {
    color: var(--bc-color-text);
    background: var(--bc-color-background);
}

.bc-single-news {
    padding-block: var(--bc-space-5);
    padding-bottom: var(--bc-section-md);
}

.bc-single-news *,
.bc-single-news *::before,
.bc-single-news *::after {
    box-sizing: border-box;
}


/* =========================================================
   SINGLE — HEADER
========================================================= */

.bc-single-news__header {
    padding-bottom: var(--bc-space-7);
    border-bottom: 1px solid var(--bc-color-border);
}


/* =========================================================
   SINGLE — BREADCRUMBS
========================================================= */

.bc-news-breadcrumbs {
    margin-bottom: var(--bc-space-10);
}

.bc-news-breadcrumbs__list {
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--bc-space-2);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: var(--bc-line-height-small);
    list-style: none;
}

.bc-news-breadcrumbs__item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
}

.bc-news-breadcrumbs__link {
    color: var(--bc-color-text-muted);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-news-breadcrumbs__link:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-news-breadcrumbs__link:hover {
        color: var(--bc-color-primary);
    }

}

.bc-news-breadcrumbs__separator {
    display: grid;
    width: var(--bc-space-4);
    height: var(--bc-space-4);
    flex: 0 0 auto;
    place-items: center;
    color: var(--bc-color-border);
}

.bc-news-breadcrumbs__separator svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.bc-news-breadcrumbs__current {
    max-width: var(--bc-container-narrow);
    overflow: hidden;
    color: var(--bc-color-text);
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   SINGLE — META
========================================================= */

.bc-single-news__header
.bc-news-meta {
    margin-bottom: var(--bc-space-4);
}


/* =========================================================
   SINGLE — TITLE
========================================================= */

.bc-single-news__title {
    max-width: var(--bc-container-content);
    margin: 0;
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h2);
    font-weight: 700;
    line-height: var(--bc-line-height-h2);
    letter-spacing: -0.03em;
    text-wrap: balance;
}


/* =========================================================
   SINGLE — BODY LAYOUT
========================================================= */

.bc-single-news__body {
    display: grid;
    margin-top: var(--bc-space-8);
    grid-template-columns:
        minmax(0, 1fr)
        minmax(260px, 0.32fr);
    align-items: start;
    gap: var(--bc-space-11);
}

.bc-single-news__main {
    min-width: 0;
}


/* =========================================================
   SINGLE — ARTICLE CONTENT
========================================================= */

.bc-single-news__content {
    display: flow-root;
    color: var(--bc-color-text);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body);
    font-weight: 400;
    line-height: var(--bc-line-height-body);
}

.bc-single-news__content > *:first-child:not(.bc-single-news__media) {
    margin-top: 0;
}


/* =========================================================
   SINGLE — FEATURED IMAGE
========================================================= */

.bc-single-news__media {
    float: left;
    width: 42%;
    margin:
        0
        var(--bc-space-7)
        var(--bc-space-5)
        0;
    overflow: hidden;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-background-soft);
}

.bc-single-news__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}


/* =========================================================
   SINGLE — PARAGRAPHS
========================================================= */

.bc-single-news__content p {
    margin: 0 0 var(--bc-space-4);
}

.bc-single-news__content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SINGLE — HEADINGS
========================================================= */

.bc-single-news__content h2 {
    clear: both;
    margin:
        var(--bc-space-9)
        0
        var(--bc-space-4);
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h3);
    font-weight: 700;
    line-height: var(--bc-line-height-h3);
    letter-spacing: -0.025em;
}

.bc-single-news__content h3 {
    margin:
        var(--bc-space-7)
        0
        var(--bc-space-4);
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h4);
    font-weight: 700;
    line-height: var(--bc-line-height-h4);
    letter-spacing: -0.02em;
}

.bc-single-news__content h4 {
    margin:
        var(--bc-space-6)
        0
        var(--bc-space-3);
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
    letter-spacing: -0.015em;
}


/* =========================================================
   SINGLE — LINKS
========================================================= */

.bc-single-news__content a {
    color: var(--bc-color-primary);
    font-weight: 600;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
    touch-action: manipulation;
}

.bc-single-news__content a:focus-visible {
    color: var(--bc-color-accent);
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-news__content a:hover {
        color: var(--bc-color-accent);
    }

}


/* =========================================================
   SINGLE — LISTS
========================================================= */

.bc-single-news__content ul,
.bc-single-news__content ol {
    margin:
        0
        0
        var(--bc-space-5);
    padding-left: var(--bc-space-6);
}

.bc-single-news__content li + li {
    margin-top: var(--bc-space-2);
}


/* =========================================================
   SINGLE — CONTENT IMAGES
========================================================= */

.bc-single-news__content figure:not(.bc-single-news__media) {
    clear: both;
    margin:
        var(--bc-space-7)
        0;
}

.bc-single-news__content
figure:not(.bc-single-news__media)
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
}

.bc-single-news__content figcaption {
    margin-top: var(--bc-space-2);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    line-height: var(--bc-line-height-small);
}


/* =========================================================
   SINGLE — BLOCKQUOTE
========================================================= */

.bc-single-news__content blockquote {
    clear: both;
    margin:
        var(--bc-space-7)
        0;
    padding:
        var(--bc-space-5)
        var(--bc-space-6);
    border-left: 3px solid var(--bc-color-accent);
    border-radius:
        0
        var(--bc-radius-sm)
        var(--bc-radius-sm)
        0;
    color: var(--bc-color-text);
    background: var(--bc-color-background-soft);
    font-size: var(--bc-font-size-body-lg);
    line-height: var(--bc-line-height-body);
}

.bc-single-news__content blockquote p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SINGLE — RELATED
========================================================= */

.bc-single-news-related {
    position: sticky;
    top:
        calc(
            var(--bc-header-height)
            + var(--bc-space-5)
        );
    min-width: 0;
    max-height:
        calc(
            100vh
            - var(--bc-header-height)
            - var(--bc-space-10)
        );
    padding-left: var(--bc-space-6);
    overflow-y: auto;
    align-self: start;
    border-left: 1px solid var(--bc-color-border);
    scrollbar-width: thin;
}

.bc-single-news-related__title {
    margin: 0 0 var(--bc-space-4);
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h5);
    font-weight: 600;
    line-height: var(--bc-line-height-h5);
    letter-spacing: -0.015em;
}


/* =========================================================
   SINGLE — RELATED ITEM
========================================================= */

.bc-single-news-related__item {
    padding-block: var(--bc-space-5);
    border-top: 1px solid var(--bc-color-border);
}

.bc-single-news-related__item time {
    display: block;
    margin-bottom: var(--bc-space-2);
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.04em;
}

.bc-single-news-related__item h3 {
    margin: 0;
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body);
    font-weight: 600;
    line-height: var(--bc-line-height-body);
    letter-spacing: 0;
}

.bc-single-news-related__item h3 a {
    color: var(--bc-color-text);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-single-news-related__item h3 a:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-news-related__item h3 a:hover {
        color: var(--bc-color-primary);
    }

}


/* =========================================================
   SINGLE — RELATED ALL
========================================================= */

.bc-single-news-related__all {
    display: inline-flex;
    margin-top: var(--bc-space-4);
    align-items: center;
    gap: var(--bc-space-2);
    color: var(--bc-color-primary);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 700;
    line-height: var(--bc-line-height-small);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-single-news-related__all:focus-visible {
    color: var(--bc-color-accent);
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-news-related__all:hover {
        color: var(--bc-color-accent);
    }

}

.bc-single-news-related__all svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}


/* =========================================================
   SINGLE — ACTIONS
========================================================= */

.bc-single-news-actions {
    display: flex;
    clear: both;
    width: 100%;
    margin-top: var(--bc-space-8);
    align-items: center;
    justify-content: space-between;
    gap: var(--bc-space-4);
}

.bc-single-news-action {
    flex: 0 0 auto;
    touch-action: manipulation;
}

.bc-single-news-action svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

/* Global .button has translateY on hover.
   For this editorial page, keep controls visually stable. */
.bc-single-news-action.button:focus-visible {
    transform: none;
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-news-action.button:hover {
        transform: none;
    }

}


/* =========================================================
   SINGLE — CTA
========================================================= */

.bc-single-news-cta {
    display: grid;
    margin-top: var(--bc-space-8);
    padding: var(--bc-space-7);
    grid-template-columns:
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: var(--bc-space-8);
    border: 1px solid var(--bc-color-border);
    border-radius: var(--bc-radius-sm);
    background: var(--bc-color-background-soft);
}

.bc-single-news-cta__eyebrow {
    display: flex;
    margin: 0 0 var(--bc-space-3);
    align-items: center;
    gap: var(--bc-space-3);
    color: var(--bc-color-accent);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body-sm);
    font-weight: 700;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bc-single-news-cta__eyebrow::before {
    width: var(--bc-space-6);
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.bc-single-news-cta__title {
    max-width: var(--bc-container-narrow);
    margin: 0;
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h4);
    font-weight: 700;
    line-height: var(--bc-line-height-h4);
    letter-spacing: -0.02em;
}

.bc-single-news-cta__text {
    max-width: var(--bc-container-narrow);
    margin: var(--bc-space-3) 0 0;
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-body);
    line-height: var(--bc-line-height-body);
}


/* =========================================================
   SINGLE — CTA ACTIONS
========================================================= */

.bc-single-news-cta__actions {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--bc-space-4);
}


/* =========================================================
   SINGLE — CTA PHONE
========================================================= */

.bc-single-news-cta__phone {
    display: flex;
    flex-direction: column;
    gap: var(--bc-space-1);
}

.bc-single-news-cta__phone span {
    color: var(--bc-color-text-muted);
    font-family: var(--bc-font-main);
    font-size: var(--bc-font-size-caption);
    font-weight: 600;
    line-height: var(--bc-line-height-small);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bc-single-news-cta__phone a {
    color: var(--bc-color-text);
    font-family: var(--bc-font-heading);
    font-size: var(--bc-font-size-h6);
    font-weight: 600;
    line-height: var(--bc-line-height-h6);
    text-decoration: none;
    touch-action: manipulation;
    transition: color var(--bc-transition);
}

.bc-single-news-cta__phone a:focus-visible {
    color: var(--bc-color-primary);
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-news-cta__phone a:hover {
        color: var(--bc-color-primary);
    }

}


/* =========================================================
   SINGLE — CTA BUTTON
========================================================= */

.bc-single-news-cta__button {
    touch-action: manipulation;
}

.bc-single-news-cta__button svg {
    width: var(--bc-space-5);
    height: var(--bc-space-5);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.bc-single-news-cta__button.button:focus-visible {
    transform: none;
}

@media (hover: hover) and (pointer: fine) {

    .bc-single-news-cta__button.button:hover {
        transform: none;
    }

}


/* =========================================================
   <= 1199
========================================================= */

@media (max-width: 1199px) {

    .bc-single-news__body {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(240px, 0.3fr);
        gap: var(--bc-space-9);
    }

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991px) {

    .bc-single-news {
        padding-block: var(--bc-section-sm);
    }

    .bc-single-news__body {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-8);
    }

    .bc-single-news-related {
        position: static;
        top: auto;
        max-height: none;
        padding:
            var(--bc-space-6)
            0
            0;
        overflow: visible;
        border-top: 1px solid var(--bc-color-border);
        border-left: 0;
    }

    .bc-single-news-related__list {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        column-gap: var(--bc-grid-gap-lg);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .bc-single-news__header {
        padding-bottom: var(--bc-space-6);
    }

    .bc-news-breadcrumbs {
        margin-bottom: var(--bc-space-5);
    }

    .bc-news-breadcrumbs__current {
        display: none;
    }

    .bc-news-breadcrumbs__separator:last-of-type {
        display: none;
    }

    .bc-single-news__body {
        margin-top: var(--bc-space-6);
    }

    .bc-single-news__media {
        float: none;
        width: 100%;
        margin:
            0
            0
            var(--bc-space-5);
    }

    .bc-single-news__content h2 {
        margin-top: var(--bc-space-8);
    }

    .bc-single-news__content h3 {
        margin-top: var(--bc-space-7);
    }

    .bc-single-news-related__list {
        display: block;
    }

    .bc-single-news-actions {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: var(--bc-space-3);
        margin-top: var(--bc-space-7);
    }

    .bc-single-news-action {
        width: 100%;
    }

    .bc-single-news-cta {
        grid-template-columns: minmax(0, 1fr);
        gap: var(--bc-space-6);
        margin-top: var(--bc-space-7);
        padding: var(--bc-space-6);
    }

    .bc-single-news-cta__actions {
        width: 100%;
    }

    .bc-single-news-cta__button {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479px) {

    .bc-single-news-actions {
        grid-template-columns: minmax(0, 1fr);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .bc-news-breadcrumbs__link,
    .bc-single-news-related__item h3 a,
    .bc-single-news-related__all,
    .bc-single-news-cta__phone a {
        transition: none;
    }

}