.news-page {
    padding: 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(31, 105, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #041c50 0%, #06245c 38%, #f6f8fc 38%, #f6f8fc 100%);
}

.news-hero {
    padding: 64px 0 44px;
    color: #fff;
    text-align: center;
}

.news-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.news-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.news-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-controls {
    max-width: 1080px;
    margin: 34px auto 0;
}

.news-search {
    display: flex;
    gap: 10px;
    max-width: 820px;
    margin: 0 auto 28px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(2, 24, 67, 0.65);
    backdrop-filter: blur(12px);
}

.news-search input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 13px 16px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font: inherit;
}

.news-search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.news-search-button {
    flex: 0 0 auto;
    padding: 12px 20px;
    border: 0;
    border-radius: 10px;
    background: #1262e8;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.news-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
}

.news-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    background: rgba(3, 30, 79, 0.55);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-decoration: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.news-category:hover {
    border-color: rgba(72, 155, 255, 0.8);
    color: #fff;
}

.news-category.is-active {
    border-color: #1262e8;
    background: #1262e8;
    color: #fff;
}

.news-content {
    padding-top: 48px;
    padding-bottom: 64px;
    background: #0d3478;
}

.news-context {
    margin-bottom: 28px;
    text-align: center;
}

.news-context h2 {
    margin: 0 0 7px;
    color: #10264f;
    font-size: 1.65rem;
}

.news-context p {
    margin: 0;
    color: #70809c;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce4f0;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 38, 79, 0.07);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(16, 38, 79, 0.12);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 8.5;
    background:
        radial-gradient(circle at 65% 35%, rgba(31, 126, 255, 0.42), transparent 30%),
        linear-gradient(135deg, #031d52, #074197);
}

.news-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 7px;
    background: #1262e8;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.news-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 22px;
}

.news-card-date {
    margin-bottom: 11px;
    color: #8491a7;
    font-size: 0.82rem;
}

.news-card-title {
    margin: 0 0 11px;
    color: #10264f;
    font-size: 1.12rem;
    line-height: 1.45;
}

.news-card-title a {
    color: inherit;
    text-decoration: none;
}

.news-card-title a:hover {
    color: #1262e8;
}

.news-card-excerpt {
    margin: 0 0 20px;
    color: #66758f;
    line-height: 1.65;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #edf1f7;
}

.news-card-author {
    color: #7a879c;
    font-size: 0.79rem;
}

.news-card-read-more {
    color: #1262e8;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.news-empty {
    padding: 52px 30px;
    border: 1px solid #dce4f0;
    border-radius: 16px;
    background: #fff;
    color: #66758f;
    text-align: center;
}

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 42px;
}

.news-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 11px;
    border: 1px solid #d6deeb;
    border-radius: 9px;
    background: #fff;
    color: #52647e;
    text-decoration: none;
}

.news-pagination-link:hover {
    border-color: #1262e8;
    color: #1262e8;
}

.news-pagination-link.is-active {
    border-color: #1262e8;
    background: #1262e8;
    color: #fff;
    font-weight: 700;
}

@media (max-width: 991px) {
    .news-page {
        background:
            linear-gradient(
                180deg,
                #041c50 0%,
                #06245c 34%,
                #f6f8fc 34%,
                #f6f8fc 100%
            );
    }

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

@media (max-width: 700px) {
    .news-page {
        background:
            linear-gradient(
                180deg,
                #041c50 0%,
                #06245c 29%,
                #f6f8fc 29%,
                #f6f8fc 100%
            );
    }

    .news-hero {
        padding: 42px 0 34px;
    }

    .news-controls {
        margin-top: 26px;
    }

    .news-search {
        flex-direction: column;
        padding: 8px;
    }

    .news-search-button {
        width: 100%;
    }

    .news-categories {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 2px 8px;
        scrollbar-width: thin;
    }

    .news-category {
        flex: 0 0 auto;
    }

    .news-content {
        padding-top: 34px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* News listing refinements */

.news-hero {
    padding-top: 54px;
    padding-bottom: 34px;
}

.news-controls {
    margin-top: 28px;
}

.news-search {
    margin-bottom: 22px;
}

.news-categories {
    gap: 7px;
}

.news-category {
    min-height: 38px;
    padding: 7px 13px;
    font-size: 0.86rem;
}

.news-content {
    padding-top: 48px;
}

.news-grid {
    align-items: stretch;
}

.news-card-body {
    padding: 20px;
}

.news-card-excerpt {
    margin-bottom: 18px;
}

@media (min-width: 992px) {
    .news-grid:has(> :nth-child(2):last-child) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }

    .news-grid:has(> :only-child) {
        grid-template-columns: minmax(0, 440px);
    }
}

/* News article page */

.news-article {
    padding: 54px 0 72px;
    background: #0d3478;
}

.news-article-container {
    max-width: 980px;
}

.news-article-header {
    margin-bottom: 34px;
    padding: 34px 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(31, 126, 255, 0.18),
            transparent 34%
        ),
        #082b68;
    color: #fff;
}

.news-article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

.news-article-breadcrumb a {
    color: #7dc7ff;
    text-decoration: none;
}

.news-article-breadcrumb a:hover {
    color: #fff;
}

.news-article-category {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #1262e8;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
}

.news-article-header h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.news-article-excerpt {
    max-width: 820px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.news-article-hero {
    margin: 0 0 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #082b68;
}

.news-article-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.news-article-body {
    padding: 38px 42px;
    border-radius: 18px;
    background: #fff;
    color: #33445f;
    box-shadow: 0 16px 42px rgba(3, 19, 55, 0.18);
}

.news-article-body h2 {
    margin-top: 2.1em;
    color: #10264f;
}

.news-article-body h3,
.news-article-body h4 {
    color: #17396f;
}

.news-article-body a {
    color: #1262e8;
}

.news-article-body blockquote {
    border-left-color: #1262e8;
    background: #eef5ff;
}

.news-article-body table {
    background: #fff;
}

.news-article-tags {
    margin-top: 28px;
    padding-top: 0;
    border-top: 0;
}

.news-article-tag {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #d9e8ff;
    text-decoration: none;
}

.news-article-tag:hover {
    border-color: #7dc7ff;
    color: #fff;
}

.news-article-sharing {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: #082b68;
    color: #fff;
}

.news-article-sharing-label {
    color: #fff;
}

.news-article-sharing a,
.news-copy-link {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #dceaff;
}

.news-article-sharing a:hover,
.news-copy-link:hover {
    border-color: #7dc7ff;
    color: #fff;
}

.news-article-editor {
    margin-top: 24px;
    padding: 20px 22px;
    border-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: #082b68;
    color: #fff;
}

.news-article-editor a {
    color: #7dc7ff;
}

.news-related {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.news-related h2 {
    margin-bottom: 22px;
    color: #fff;
}

.news-related-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: #fff;
    box-shadow: 0 10px 28px rgba(3, 19, 55, 0.15);
}

.news-related-category {
    color: #1262e8;
}

.news-related-card h3 {
    color: #10264f;
}

.news-related-card p {
    color: #66758f;
}

@media (max-width: 767px) {
    .news-article {
        padding: 34px 0 52px;
    }

    .news-article-header {
        padding: 26px 22px;
    }

    .news-article-body {
        padding: 28px 22px;
    }

    .news-article-sharing {
        align-items: flex-start;
    }

    .news-article-editor {
        flex-direction: column;
    }
}

/* News article layout refinements */

.news-article-container {
    max-width: 940px;
}

.news-article-body {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.news-article-tags,
.news-article-sharing,
.news-article-editor,
.news-related {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.news-related {
    margin-top: 32px;
    padding-top: 28px;
    padding-bottom: 8px;
}

.news-related-card {
    width: 100%;
}

.news-related-grid {
    display: grid;
    grid-template-columns: repeat(
        3,
        minmax(0, 1fr)
    );
    gap: 22px;
}

@media (max-width: 900px) {
    .news-related-grid {
        grid-template-columns: repeat(
            2,
            minmax(0, 1fr)
        );
    }
}

@media (max-width: 767px) {
    .news-article-body,
    .news-article-tags,
    .news-article-sharing,
    .news-article-editor,
    .news-related {
        max-width: none;
    }

    .news-related-grid {
        grid-template-columns: 1fr;
    }
}

/* News article hero-title layout */

.news-article-container {
    max-width: 940px;
}

/* Navigation/context header */

.news-article-header {
    margin-bottom: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.news-article-breadcrumb {
    margin-bottom: 14px;
}

.news-article-category {
    margin-bottom: 0;
}


/* Hero */

.news-article-hero {
    position: relative;
    margin: 0 0 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #082b68;
}

.news-article-hero img {
    display: block;
    width: 100%;
    height: auto;
}


/* Subtle darkening toward title area */

.news-article-hero-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(2, 8, 23, 0.02) 20%,
            rgba(2, 8, 23, 0.18) 52%,
            rgba(2, 8, 23, 0.72) 100%
        );
}


/* Title over hero */

.news-article-title-overlay {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 30px;
}

.news-article-title-overlay h1 {
    display: inline-block;
    max-width: 820px;
    margin: 0;
    padding: 18px 22px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(2, 10, 28, 0.78);

    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    color: #fff;

    font-size: clamp(1.85rem, 3.5vw, 2.8rem);
    line-height: 1.16;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35);
}


/* Fallback when article has no hero */

.news-article-title-fallback {
    margin-bottom: 28px;
    padding: 30px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    background: #082b68;
}

.news-article-title-fallback h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}


/* Summary and metadata */

.news-article-summary {
    margin: 0 0 30px;
    padding: 28px 32px;

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;

    background: #082b68;
    color: #fff;
}

.news-article-summary-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1.3;
}

.news-article-summary .news-article-excerpt {
    max-width: none;
    margin: 0;

    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
}

.news-article-summary .news-article-meta {
    margin-top: 18px;
    padding-top: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.62);
}


/* Article body: same width as hero */

.news-article-body {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}


/* Responsive */

@media (max-width: 767px) {

    .news-article-header {
        padding: 0;
    }

    .news-article-title-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .news-article-title-overlay h1 {
        width: 100%;
        max-width: none;
        padding: 14px 16px;
        border-radius: 11px;

        font-size: clamp(1.45rem, 7vw, 2rem);
        line-height: 1.18;
    }

    .news-article-summary {
        padding: 22px;
    }

    .news-article-body {
        padding: 28px 22px;
    }
}

/* ==========================================================
   News article layout refinements
   ========================================================== */

/* Move article header closer to main navigation */
.news-article {
    padding-top: 24px;
}

/* Breadcrumb + category on same row */
.news-article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    margin-bottom: 16px;
    padding: 0;
}

.news-article-breadcrumb {
    margin: 0;
}

.news-article-category {
    margin: 0;
    flex-shrink: 0;
}


/* Reduce space after hero */
.news-article-hero {
    margin-bottom: 16px;
}


/* More transparent title overlay */
.news-article-title-overlay h1 {
    background: rgba(2, 10, 28, 0.56);

    border-color: rgba(255, 255, 255, 0.12);

    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}


/* Slightly reduce overlay footprint */
.news-article-title-overlay {
    left: 28px;
    right: 28px;
    bottom: 24px;
}

.news-article-title-overlay h1 {
    padding: 16px 20px;
}


/* Tighten summary spacing */
.news-article-summary {
    margin-bottom: 16px;
    padding: 24px 30px;
}

.news-article-summary .news-article-meta {
    margin-top: 16px;
    padding-top: 14px;
}


/* Body follows summary more closely */
.news-article-body {
    margin-top: 0;
}


/* Mobile */
@media (max-width: 767px) {

    .news-article {
        padding-top: 18px;
    }

    .news-article-header {
        gap: 12px;
        margin-bottom: 14px;
    }

    .news-article-breadcrumb {
        font-size: 0.82rem;
    }

    .news-article-category {
        font-size: 0.72rem;
        padding: 6px 10px;
    }

    .news-article-hero {
        margin-bottom: 14px;
    }

    .news-article-title-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .news-article-title-overlay h1 {
        padding: 13px 15px;
        background: rgba(2, 10, 28, 0.60);
    }

    .news-article-summary {
        margin-bottom: 14px;
        padding: 20px;
    }
}

/* ==========================================================
   News article navigation refinements
   ========================================================== */

/* Header closer to main navigation */

.news-article {
    padding-top: 18px;
}


/* Breadcrumb left + category button right */

.news-article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 12px;
}

.news-article-breadcrumb {
    margin: 0;
}


/* Category button */

.news-article-category {
    margin: 0;
}

.news-article-category a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 17px;

    border-radius: 8px;

    background: #1262e8;
    color: #fff;

    font-size: 0.82rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color .18s ease,
        transform .18s ease;
}

.news-article-category a:hover {
    background: #2374f5;
    color: #fff;
    transform: translateY(-1px);
}


/* More transparent title panel */

.news-article-title-overlay h1 {
    background: rgba(2, 10, 28, 0.42);

    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}


/* Tighter vertical flow */

.news-article-hero {
    margin-bottom: 12px;
}

.news-article-summary {
    margin-bottom: 12px;
}

.news-article-body {
    margin-top: 0;
}


/* Tags row */

.news-article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 9px;

    margin-top: 20px;
}

.news-article-tags-label {
    margin-right: 3px;

    color: #fff;

    font-weight: 700;
}


/* Tags styled like primary navigation buttons */

.news-article-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 14px;

    border: 0;
    border-radius: 8px;

    background: #1262e8;
    color: #fff;

    font-size: 0.82rem;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color .18s ease,
        transform .18s ease;
}

.news-article-tag:hover {
    background: #2374f5;
    color: #fff;
    transform: translateY(-1px);
}


/* Category navigation below tags */

.news-article-category-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px 12px;

    margin-top: 14px;

    color: rgba(255, 255, 255, .72);

    font-size: .88rem;
}

.news-article-category-nav-label {
    color: #fff;
    font-weight: 700;
}

.news-article-category-nav a {
    color: #9ed1ff;
    text-decoration: none;
}

.news-article-category-nav a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Editor footer is intentionally no longer used */

.news-article-editor {
    display: none;
}


@media (max-width: 767px) {

    .news-article {
        padding-top: 14px;
    }

    .news-article-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .news-article-category a {
        padding: 7px 11px;
        font-size: .72rem;
    }

    .news-article-title-overlay h1 {
        background: rgba(2, 10, 28, .48);
    }

    .news-article-hero,
    .news-article-summary {
        margin-bottom: 10px;
    }

    .news-article-category-nav {
        align-items: flex-start;
    }
}

/* ==========================================================
   Article footer rows — unified alignment
   ========================================================== */

.news-article-tags,
.news-article-category-nav,
.news-article-sharing {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}


/* Tags */

.news-article-tags {
    justify-content: flex-start;
}


/* Category navigation */

.news-article-category-nav {
    justify-content: flex-start;
}


/* Sharing */

.news-article-sharing {
    justify-content: flex-start;
}


/* Labels use a consistent left position */

.news-article-tags-label,
.news-article-category-nav-label,
.news-article-sharing-label {
    flex: 0 0 auto;
    margin-left: 0;
}


/* Mobile */

@media (max-width: 767px) {

    .news-article-tags,
    .news-article-category-nav,
    .news-article-sharing {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.news-article-sharing {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

/* ==========================================================
   FINAL ARTICLE HERO/TITLE FIX
   ========================================================== */

/*
 * Header contains ONLY breadcrumb + category.
 * Kill the old grid layout completely.
 */
.news-article-header {
    display: flex !important;
    grid-template-columns: none !important;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin: 0 0 12px;
    padding: 0;

    border: 0;
    background: transparent;
}


/* Breadcrumb */

.news-article-breadcrumb {
    width: auto !important;
    margin: 0 !important;
}


/* Category at top-right */

.news-article-category {
    width: auto !important;
    margin: 0 !important;
}


/* Hero is the positioning context for the title */

.news-article-hero {
    position: relative !important;

    display: block !important;

    width: 100%;
    max-width: none;

    margin: 0 0 12px;

    overflow: hidden;

    border-radius: 18px;
}


/* Hero image */

.news-article-hero > img {
    display: block;

    width: 100% !important;
    height: auto !important;

    margin: 0;
}


/* Very light gradient for text readability */

.news-article-hero-shade {
    position: absolute;
    z-index: 1;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 35%,
            rgba(0, 0, 0, 0.08) 55%,
            rgba(0, 0, 0, 0.30) 100%
        );
}


/* TITLE MUST LIVE INSIDE HERO */

.news-article-title-overlay {
    position: absolute !important;

    z-index: 2;

    left: 28px !important;
    right: 28px !important;
    bottom: 26px !important;

    width: auto !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
}


/*
 * Override old:
 * .news-article-header h1
 * and any generic article h1 sizing/layout.
 */

.news-article-hero .news-article-title-overlay h1 {
    display: inline-block !important;

    width: auto !important;
    max-width: 820px !important;

    margin: 0 !important;
    padding: 16px 20px !important;

    color: #fff !important;

    font-size: clamp(1.9rem, 3.6vw, 2.8rem) !important;
    line-height: 1.15 !important;

    background: rgba(2, 10, 28, 0.34) !important;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    border-radius: 14px;

    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);

    text-shadow:
        0 2px 10px
        rgba(0, 0, 0, 0.55);
}


/* Summary immediately follows hero */

.news-article-summary {
    width: 100%;
    max-width: none;

    margin: 0 0 12px;
}


/* Article body same width as hero */

.news-article-body {
    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
}


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

@media (max-width: 767px) {

    .news-article-header {
        margin-bottom: 10px;
    }

    .news-article-title-overlay {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
    }

    .news-article-hero .news-article-title-overlay h1 {
        width: 100% !important;
        max-width: none !important;

        padding: 13px 15px !important;

        font-size:
            clamp(1.4rem, 6.5vw, 2rem)
            !important;

        background:
            rgba(2, 10, 28, 0.40)
            !important;
    }

}

/* Article category button — match main Login button */
.news-article-category a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    min-width: 0;
    height: auto;

    padding: 8px 16px;

    border: 0;
    border-radius: 7px;

    background: #1262e8;
    color: #fff;

    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;
    white-space: nowrap;

    box-shadow: none;

    transition:
        background-color .18s ease,
        transform .18s ease;
}

.news-article-category a:hover {
    background: #2374f5;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Prevent the category wrapper from imposing old dimensions */
.news-article-category {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

/* Category/tag context heading */
.news-context h2 {
    color: #fff !important;
}
