.news-public,
.news-public * {
    box-sizing: border-box;
}

.news-public {
    --news-black: #111111;
    --news-dark: #202020;
    --news-red: #b80000;
    --news-red-dark: #8f0000;
    --news-white: #ffffff;
    --news-soft: #f4f4f4;
    --news-border: #d6d6d6;
    --news-muted: #666666;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--news-white);
    color: var(--news-black);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

.news-public a {
    color: inherit;
    text-decoration: none;
}

.news-public a:hover {
    color: var(--news-red);
}

.news-shell {
    width: min(1240px, calc(100% - 32px));
    margin-right: auto;
    margin-left: auto;
}

.news-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.news-masthead {
    padding: 30px 0;
    border-top: 5px solid var(--news-red);
    background: var(--news-black);
    color: var(--news-white);
}

.news-masthead--compact {
    padding: 19px 0;
}

.news-masthead-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.news-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--news-white) !important;
}

.news-brand-mark {
    min-width: 62px;
    min-height: 54px;
    display: inline-grid;
    place-items: center;
    background: var(--news-red);
    color: var(--news-white);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.news-brand h1 {
    margin: 0;
    color: var(--news-white);
    font-size: clamp(36px, 6vw, 62px);
    line-height: 0.86;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.news-masthead--compact .news-brand h1 {
    font-size: 38px;
}

.news-brand p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-search-form {
    width: min(410px, 100%);
    display: flex;
}

.news-search-form input {
    min-width: 0;
    flex: 1 1 auto;
    min-height: 45px;
    padding: 10px 13px;
    border: 2px solid var(--news-white);
    border-radius: 0;
    outline: 0;
    background: var(--news-white);
    color: var(--news-black);
    font: inherit;
    font-size: 14px;
}

.news-search-form button {
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    border: 2px solid var(--news-red);
    background: var(--news-red);
    color: var(--news-white);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.news-search-form button:hover {
    border-color: var(--news-red-dark);
    background: var(--news-red-dark);
}

.news-category-nav {
    border-bottom: 1px solid var(--news-border);
    background: var(--news-white);
}

.news-category-nav-inner {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: thin;
}

.news-category-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 45px;
    padding: 10px 14px;
    border-right: 1px solid var(--news-border);
    color: var(--news-black);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-category-nav a:first-child {
    border-left: 1px solid var(--news-border);
}

.news-category-nav a:hover,
.news-category-nav a.is-active {
    background: var(--news-black);
    color: var(--news-white);
}

.news-category-nav a span {
    min-width: 21px;
    min-height: 21px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--news-soft);
    color: var(--news-black);
    font-size: 9px;
}

.news-category-nav .news-category-nav-staff {
    margin-left: auto;
    background: var(--news-red);
    color: var(--news-white);
}

.news-breaking-strip {
    background: var(--news-red);
    color: var(--news-white);
}

.news-breaking-inner {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.news-breaking-inner > strong {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-breaking-links {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
    overflow-x: auto;
}

.news-breaking-links a {
    flex: 0 0 auto;
    color: var(--news-white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.news-editorial-main,
.news-filtered-main,
.news-detail-main {
    padding-top: 32px;
    padding-bottom: 64px;
}

.news-lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(300px, 0.75fr);
    gap: 24px;
    margin-bottom: 42px;
}

.news-lead-story {
    min-width: 0;
}

.news-lead-media,
.news-card-media,
.news-side-media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #dddddd;
}

.news-lead-media {
    aspect-ratio: 16 / 9;
}

.news-bulletin-image,
.news-lead-image,
.news-card-image,
.news-side-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-image-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    background:
        linear-gradient(135deg, #1a1a1a, #3a0000);
    color: var(--news-white);
}

.news-image-placeholder i {
    font-size: 31px;
}

.news-image-placeholder span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-lead-play,
.news-card-play {
    position: absolute;
    display: grid;
    place-items: center;
    background: var(--news-red);
    color: var(--news-white);
}

.news-lead-play {
    left: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.news-card-play {
    left: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
}

.news-lead-content {
    padding-top: 17px;
}

.news-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    color: var(--news-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-card-meta a {
    color: var(--news-red);
    font-weight: 900;
}

.news-featured-label,
.news-breaking-label {
    padding: 3px 6px;
    background: var(--news-red);
    color: var(--news-white);
    font-size: 9px;
}

.news-lead-content h2 {
    margin: 10px 0;
    font-size: clamp(31px, 4.5vw, 54px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.06em;
}

.news-lead-content p {
    max-width: 880px;
    margin: 0 0 17px;
    color: #444444;
    font-size: 15px;
}

.news-primary-button,
.news-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 9px 14px;
    border: 2px solid var(--news-red);
    background: var(--news-red);
    color: var(--news-white) !important;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-primary-button:hover,
.news-download-button:hover {
    border-color: var(--news-red-dark);
    background: var(--news-red-dark);
    color: var(--news-white) !important;
}

.news-lead-side {
    min-width: 0;
    padding-left: 21px;
    border-left: 1px solid var(--news-border);
}

.news-section-heading {
    margin: 0 0 15px;
    padding-top: 10px;
    border-top: 4px solid var(--news-black);
    font-size: 24px;
    font-weight: 900;
}

.news-side-story {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--news-border);
}

.news-side-media {
    aspect-ratio: 16 / 10;
}

.news-side-story span {
    display: block;
    margin-bottom: 6px;
    color: var(--news-muted);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-side-story h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.news-section {
    margin-top: 42px;
}

.news-section-header {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding-top: 11px;
    border-top: 4px solid var(--news-black);
}

.news-section-header h2 {
    margin: 0;
    font-size: clamp(23px, 3vw, 30px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.news-section-header > span,
.news-section-header > a {
    color: var(--news-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-section-header > a:hover {
    color: var(--news-red);
}

.news-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 19px;
}

.news-card {
    min-width: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--news-border);
}

.news-card-media {
    aspect-ratio: 16 / 10;
    margin-bottom: 12px;
}

.news-card h3 {
    margin: 8px 0;
    color: var(--news-black);
    font-size: 19px;
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.news-card p {
    margin: 0 0 10px;
    color: #4b4b4b;
    font-size: 13px;
    line-height: 1.45;
}

.news-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--news-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.news-card-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-most-watched {
    margin-top: 45px;
    padding: 25px;
    background: var(--news-black);
    color: var(--news-white);
}

.news-section-header--dark {
    border-top-color: var(--news-red);
}

.news-section-header--dark h2,
.news-section-header--dark span {
    color: var(--news-white);
}

.news-ranked-grid {
    counter-reset: news-rank;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-ranked-grid li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.news-rank-number {
    color: var(--news-red);
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
}

.news-ranked-grid li > div > a,
.news-ranked-grid li > div > span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-ranked-grid h3 {
    margin: 5px 0;
    color: var(--news-white);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
}

.news-ranked-grid h3 a {
    color: var(--news-white);
}

.news-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--news-black);
}

.news-section-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--news-red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-results-header h2 {
    margin: 0;
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.055em;
}

.news-results-header > strong {
    color: var(--news-muted);
    font-size: 12px;
    text-transform: uppercase;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 34px;
}

.news-pagination a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    background: var(--news-black);
    color: var(--news-white);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-pagination span {
    color: var(--news-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-empty-state {
    grid-column: 1 / -1;
    padding: 50px 25px;
    border-top: 4px solid var(--news-red);
    background: var(--news-soft);
    text-align: center;
}

.news-empty-state > i {
    margin-bottom: 14px;
    color: var(--news-red);
    font-size: 38px;
}

.news-empty-state h2,
.news-empty-state h3 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 900;
}

.news-empty-state p,
.news-muted-message {
    color: var(--news-muted);
}

.news-preview-warning {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    margin-bottom: 22px;
    padding: 14px;
    border-left: 5px solid #d98b00;
    background: #fff3cf;
}

.news-preview-warning > i {
    color: #9a6400;
    font-size: 21px;
}

.news-preview-warning strong,
.news-preview-warning span {
    display: block;
}

.news-preview-warning span {
    margin-top: 3px;
    color: #5e4a20;
    font-size: 11px;
}

.news-preview-warning > a {
    padding: 8px 11px;
    background: var(--news-black);
    color: var(--news-white);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-detail-header {
    max-width: 1050px;
    margin-bottom: 24px;
}

.news-detail-header h1 {
    margin: 10px 0 13px;
    font-size: clamp(35px, 6vw, 68px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.065em;
}

.news-detail-header > p {
    max-width: 900px;
    margin: 0 0 15px;
    color: #444444;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.55;
}

.news-detail-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--news-muted);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-detail-stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-player-section {
    overflow: hidden;
    background: var(--news-black);
    color: var(--news-white);
}

.news-video-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.news-video-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #000000;
    object-fit: contain;
}

.news-player-toolbar {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 16px;
}

.news-player-toolbar span,
.news-player-toolbar strong {
    display: block;
}

.news-player-toolbar span {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.57);
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-player-toolbar strong {
    color: var(--news-white);
    font-size: 15px;
}

.news-playlist-section {
    margin-top: 28px;
}

.news-playlist {
    display: grid;
    gap: 9px;
}

.news-playlist-item {
    width: 100%;
    display: grid;
    grid-template-columns: 46px 132px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--news-border);
    border-left: 5px solid transparent;
    background: var(--news-white);
    color: var(--news-black);
    text-align: left;
    cursor: pointer;
}

.news-playlist-item:hover,
.news-playlist-item.is-active {
    border-left-color: var(--news-red);
    background: var(--news-soft);
}

.news-playlist-number {
    color: var(--news-red);
    font-size: 20px;
    font-weight: 900;
}

.news-playlist-thumbnail {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--news-black);
    color: var(--news-white);
}

.news-playlist-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-playlist-text strong,
.news-playlist-text small {
    display: block;
}

.news-playlist-text strong {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 900;
}

.news-playlist-text small {
    color: var(--news-muted);
    font-size: 10px;
    text-transform: uppercase;
}

.news-playlist-play {
    color: var(--news-red);
}

.news-transcript {
    margin-top: 28px;
    border-top: 4px solid var(--news-black);
    background: var(--news-soft);
}

.news-transcript summary {
    padding: 14px 17px;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.news-transcript > div {
    max-height: 650px;
    overflow-y: auto;
    padding: 0 17px 18px;
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
}

.news-related-section {
    margin-top: 48px;
}

@media screen and (max-width: 1050px) {
    .news-lead-layout {
        grid-template-columns: 1fr;
    }

    .news-lead-side {
        padding-left: 0;
        border-left: 0;
    }

    .news-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-ranked-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 736px) {
    .news-shell {
        width: min(100% - 22px, 1240px);
    }

    .news-masthead-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .news-search-form {
        width: 100%;
    }

    .news-category-nav .news-category-nav-staff {
        margin-left: 0;
    }

    .news-breaking-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .news-breaking-inner > strong {
        padding-right: 0;
        border-right: 0;
    }

    .news-card-grid,
    .news-ranked-grid {
        grid-template-columns: 1fr;
    }

    .news-results-header,
    .news-player-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .news-side-story {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .news-preview-warning {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .news-preview-warning > a {
        grid-column: 1 / -1;
        text-align: center;
    }

    .news-download-button {
        width: 100%;
    }

    .news-playlist-item {
        grid-template-columns: 38px 94px minmax(0, 1fr);
    }

    .news-playlist-play {
        display: none;
    }
}

@media screen and (max-width: 430px) {
    .news-brand-mark {
        min-width: 54px;
        min-height: 49px;
    }

    .news-brand h1 {
        font-size: 41px;
    }

    .news-search-form button span {
        display: none;
    }

    .news-playlist-item {
        grid-template-columns: 32px 78px minmax(0, 1fr);
        gap: 8px;
    }

    .news-playlist-text strong {
        font-size: 13px;
    }
}