
@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-latin-ext-700-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Poppins";
    src: url("../fonts/poppins-latin-ext-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --red: #d71920;
    --navy: #003b82;
    --blue: #0752a5;
    --ink: #101828;
    --muted: #667085;
    --line: #e4e9f1;
    --panel: #ffffff;
    --soft: #f6f8fb;
    --shadow: 0 6px 22px rgba(17, 41, 76, 0.07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: Arial, "Helvetica Neue", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1240px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 20;
}

.topbar {
    min-height: 124px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding-block: 14px;
}

.brand {
    width: auto;
    max-width: 660px;
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    gap: 20px;
    line-height: 1.15;
    color: #4d4d4d;
}

    .brand img {
        width: 184px;
        height: 94px;
        flex: 0 0 auto;
        object-fit: contain;
    }

.brand-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    padding-left: 20px;
    border-left: 1px solid #d2d2d2;
}

    .brand-name strong {
        font-family: "Poppins", Arial, sans-serif;
        font-size: clamp(15px, 1.35vw, 19px);
        font-weight: 700;
        line-height: 1.2;
        letter-spacing: -.25px;
        white-space: nowrap;
    }

    .brand-name small {
        margin-top: 4px;
        font-family: "Poppins", Arial, sans-serif;
        font-size: clamp(9px, .8vw, 11px);
        font-weight: 400;
        line-height: 1.25;
        letter-spacing: .45px;
        white-space: nowrap;
        color: #5d5d5d;
    }

.search {
    margin-left: auto;
    width: 285px;
    height: 46px;
    display: flex;
    border: 1px solid #dce3ee;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(16,24,40,.03);
}

    .search input {
        min-width: 0;
        flex: 1;
        border: 0;
        outline: 0;
        padding: 0 15px;
        color: var(--ink);
        background: transparent;
    }

    .search button {
        width: 46px;
        border: 0;
        background: transparent;
        color: #173c70;
        font-size: 28px;
        cursor: pointer;
    }

.language {
    font-weight: 800;
    font-size: 13px;
}

.hotline {
    min-width: 150px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 14px;
    color: #fff;
    background: linear-gradient(135deg, #e1252b, #bc0f15);
    border-radius: 9px;
    box-shadow: 0 7px 18px rgba(215,25,32,.18);
}

.hotline-icon {
    font-size: 25px;
}

.hotline span:last-child {
    display: flex;
    flex-direction: column;
}

.hotline small {
    font-size: 11px;
}

.hotline b {
    margin-top: 2px;
    font-size: 16px;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 26px;
    color: var(--navy);
}

.nav {
    background: #fff;
}

.nav-inner {
    height: 59px;
    display: flex;
    align-items: stretch;
    gap: 32px;
}

.nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    color: #1e293b;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

    .nav a.active {
        color: var(--red);
    }

        .nav a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 3px;
            background: var(--red);
        }

    .nav a:first-child {
        color: var(--navy);
        font-size: 20px;
    }

        .nav a:first-child:not(.active)::after {
            display: none;
        }

.search-results {
    margin-top: 20px;
    padding: 18px 22px;
    border: 1px solid #cfe0f5;
    border-radius: 10px;
    background: #f6faff;
}

    .search-results div {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        color: var(--navy);
    }

    .search-results button {
        border: 0;
        color: var(--red);
        background: transparent;
        cursor: pointer;
    }

    .search-results p {
        margin: 10px 0 0;
        font-size: 14px;
    }

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 286px;
    gap: 28px;
    padding-top: 26px;
}

.primary-column, .sidebar {
    min-width: 0;
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(260px, 1fr);
    gap: 18px;
}

.hero-card {
    position: relative;
    min-height: 535px;
    overflow: hidden;
    border-radius: 11px;
    box-shadow: var(--shadow);
    background: #0b243e;
}

    .hero-card > img {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
    }

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,17,36,0) 30%, rgba(1,15,30,.91) 100%);
}

.badge {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 8px 13px;
    background: var(--red);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
}

.hero-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 24px;
    color: #fff;
}

    .hero-copy h1 {
        max-width: 650px;
        margin: 0 0 16px;
        font-size: clamp(25px, 2.4vw, 35px);
        line-height: 1.28;
        letter-spacing: -.5px;
    }

    .hero-copy p {
        max-width: 690px;
        margin: 0 0 22px;
        font-size: 14px;
        line-height: 1.65;
        color: #edf3fa;
    }

    .hero-copy time, time {
        font-size: 12px;
        color: #8190a7;
    }

    .hero-copy time {
        color: #fff;
    }

.dots {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 7px;
}

    .dots i {
        width: 15px;
        height: 5px;
        border-radius: 10px;
        background: #fff;
    }

        .dots i.selected {
            background: var(--red);
        }

.lead-list {
    display: flex;
    flex-direction: column;
}

.mini-story {
    min-height: 126px;
    flex: 1;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

    .mini-story:first-child {
        padding-top: 0;
    }

    .mini-story:last-child {
        border-bottom: 0;
    }

    .mini-story img {
        width: 110px;
        height: 88px;
        object-fit: cover;
        border-radius: 7px;
    }

    .mini-story h3 {
        margin: 0 0 13px;
        font-size: 13px;
        line-height: 1.55;
    }

.panel {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(17,41,76,.025);
}

.home-media-panel, .featured-panel, .transport-panel {
    margin-top: 24px;
    padding: 18px 16px 20px;
}

.home-media-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(230px, .8fr);
    gap: 22px;
    align-items: stretch;
}

.home-media-feature,
.home-media-thumb {
    min-width: 0;
    height: 100%;
}

.home-media-thumb {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    border-radius: 9px;
    background: #082d57;
}

    .home-media-thumb::after {
        content: "";
        position: absolute;
        inset: 45% 0 0;
        background: linear-gradient(180deg, transparent, rgba(0, 19, 42, .58));
        pointer-events: none;
    }

    .home-media-thumb img {
        width: 100%;
        height: 100%;
        min-height: 285px;
        object-fit: cover;
    }

    .home-media-thumb button {
        position: absolute;
        z-index: 2;
        inset: 50% auto auto 50%;
        width: 64px;
        height: 64px;
        transform: translate(-50%, -50%);
        border: 2px solid rgba(255, 255, 255, .8);
        border-radius: 50%;
        background: rgba(0, 42, 86, .82);
        color: #fff;
        font-size: 23px;
        cursor: pointer;
    }

    .home-media-thumb > span {
        position: absolute;
        z-index: 2;
        right: 14px;
        bottom: 12px;
        padding: 5px 9px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .92);
        color: var(--navy);
        font-size: 11px;
    }

.home-media-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 10px 18px 2px;
}

.media-kicker {
    color: var(--red);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .6px;
}

.home-media-copy h3 {
    margin: 12px 0 13px;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.35;
}

.home-media-copy p {
    margin: 0 0 19px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.media-view-link {
    align-self: flex-start;
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

    .media-view-link span {
        margin-left: 4px;
        color: var(--red);
        font-size: 20px;
        vertical-align: -2px;
    }

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

    .section-heading h2, .social-panel h2, .newsletter-panel h2 {
        position: relative;
        margin: 0;
        padding-bottom: 10px;
        color: var(--navy);
        font-size: 16px;
    }

        .section-heading h2::after, .social-panel h2::after, .newsletter-panel h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 46px;
            height: 2px;
            background: var(--red);
        }

    .section-heading a {
        font-size: 11px;
        font-weight: 700;
        color: var(--navy);
    }

        .section-heading a span {
            margin-left: 3px;
            font-size: 18px;
            vertical-align: -1px;
        }

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

.news-card {
    min-width: 0;
    position: relative;
}

    .news-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
    }

    .news-card > span {
        position: absolute;
        top: 9px;
        left: 9px;
        padding: 5px 7px;
        border-radius: 4px;
        background: rgba(0,59,130,.9);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        opacity: 0;
        transition: opacity .2s;
    }

    .news-card:hover > span {
        opacity: 1;
    }

    .news-card h3 {
        margin: 12px 0 10px;
        font-size: 13px;
        line-height: 1.5;
    }

        .news-card h3 a:hover {
            color: var(--red);
        }

.tabs {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 1px;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
}

    .tabs button {
        position: relative;
        flex: 0 0 auto;
        padding: 0 4px 13px;
        border: 0;
        background: none;
        color: #53627a;
        font-size: 12px;
        font-weight: 750;
        cursor: pointer;
    }

        .tabs button.active {
            color: var(--red);
        }

            .tabs button.active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -1px;
                height: 3px;
                background: var(--red);
            }

.transport-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 1fr);
    gap: 18px;
    padding-top: 16px;
}

.transport-lead img {
    width: 100%;
    height: 255px;
    object-fit: cover;
    border-radius: 8px;
}

.transport-lead h3 {
    margin: 13px 0 7px;
    font-size: 18px;
}

.transport-lead p {
    margin: 0 0 9px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.transport-list article {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 13px;
    align-items: center;
    min-height: 82px;
    border-bottom: 1px solid var(--line);
}

    .transport-list article:last-child {
        border-bottom: 0;
    }

.transport-list img {
    width: 105px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
}

.transport-list h3 {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.4;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .sidebar .panel {
        padding: 17px 15px;
    }

.notices a {
    display: grid;
    grid-template-columns: 13px 1fr;
    gap: 7px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    line-height: 1.45;
}

    .notices a:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .notices a > span:first-child {
        color: var(--navy);
        font-size: 20px;
    }

.notices time {
    display: block;
    margin-top: 7px;
}

.stats-panel {
    padding: 18px 15px 22px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(140deg, #0958af, #073883);
    box-shadow: var(--shadow);
}

    .stats-panel h2 {
        margin: 0 0 12px;
        font-size: 16px;
    }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

    .stats-grid div {
        min-height: 111px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-right: 1px solid rgba(255,255,255,.18);
        border-bottom: 1px solid rgba(255,255,255,.18);
        text-align: center;
    }

        .stats-grid div:nth-child(even) {
            border-right: 0;
        }

        .stats-grid div:nth-last-child(-n+2) {
            border-bottom: 0;
        }

    .stats-grid i {
        font-style: normal;
        font-size: 25px;
    }

    .stats-grid span {
        margin: 5px 0;
        font-size: 10px;
        color: #d8e8fb;
    }

    .stats-grid strong {
        font-size: 20px;
    }

    .stats-grid small {
        font-size: 10px;
        font-weight: 500;
    }

.video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 7px;
}

    .video-thumb img {
        width: 100%;
        height: 145px;
        object-fit: cover;
    }

    .video-thumb button {
        position: absolute;
        inset: 50% auto auto 50%;
        width: 48px;
        height: 48px;
        transform: translate(-50%, -50%);
        border: 0;
        border-radius: 50%;
        background: rgba(4,28,55,.82);
        color: #fff;
        cursor: pointer;
    }

.media-panel h3 {
    margin: 12px 40px 0 0;
    font-size: 13px;
    line-height: 1.45;
}

.media-panel time {
    float: right;
    margin-top: -18px;
    padding: 4px 7px;
    border-radius: 12px;
    background: #eef2f7;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 17px;
    padding: 13px 0 1px;
}

    .socials a {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--blue);
        color: #fff;
        font-size: 18px;
        font-weight: 800;
    }

        .socials a:nth-child(2) {
            background: #00a9f2;
            font-size: 9px;
        }

        .socials a:nth-child(3) {
            background: #e1242b;
        }

        .socials a:nth-child(4) {
            background: #101828;
        }

.newsletter-panel p {
    margin: 1px 0 13px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.newsletter-panel form {
    display: flex;
    border: 1px solid #dce3ee;
    border-radius: 7px;
    overflow: hidden;
}

.newsletter-panel input {
    min-width: 0;
    flex: 1;
    padding: 11px 9px;
    border: 0;
    outline: 0;
    font-size: 11px;
}

.newsletter-panel button {
    border: 0;
    padding: 0 13px;
    color: #fff;
    background: var(--navy);
    font-size: 10px;
    font-weight: 800;
}

.newsletter-panel .success {
    padding: 10px;
    color: #087443;
    background: #e9f8f0;
    border-radius: 6px;
}

.newsletter-panel .form-error {
    margin-top: 9px;
    color: #b42318;
}

.newsletter-panel button:disabled, .newsletter-panel input:disabled {
    opacity: .65;
    cursor: wait;
}

.partners {
    margin-top: 26px;
    padding: 16px;
}

    .partners .section-heading {
        margin-bottom: 9px;
    }

    .partners > div:last-child {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 26px;
        min-height: 72px;
        overflow-x: auto;
        color: #164887;
        white-space: nowrap;
    }

    .partners b:nth-child(1), .partners b:nth-child(3) {
        color: #d51d25;
    }

    .partners b {
        font-size: 17px;
    }

footer {
    margin-top: 20px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #f7faff);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr .85fr .95fr;
    gap: 62px;
    padding: 35px 16px 28px;
}

.footer-brand .brand {
    margin-bottom: 20px;
}

.footer-brand p, .footer-main address, .footer-main a {
    color: #4f5d72;
    font-size: 12px;
    line-height: 1.7;
    font-style: normal;
}

.footer-main h3 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 13px;
}

.footer-main > div:not(:first-child) {
    display: flex;
    flex-direction: column;
}

.footer-main a:hover {
    color: var(--red);
}

.copyright {
    background: linear-gradient(90deg, #0751a5, #002d70);
    color: #fff;
}

    .copyright .container {
        min-height: 52px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 18px;
        font-size: 11px;
    }

@media (max-width: 1050px) {
    .nav-inner {
        gap: 18px;
        overflow-x: auto;
    }

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

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .notice-panel {
        grid-row: span 2;
    }

    .stats-panel {
        grid-row: span 2;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, 1240px);
    }

    .topbar {
        min-height: 86px;
        padding-block: 9px;
    }

        .topbar .brand {
            width: auto;
            max-width: calc(100% - 58px);
            gap: 11px;
        }

            .topbar .brand img {
                width: 118px;
                height: 68px;
            }

        .topbar .brand-name {
            gap: 2px;
            padding-left: 11px;
        }

            .topbar .brand-name strong {
                font-size: clamp(10px, 2.05vw, 14px);
                white-space: normal;
            }

            .topbar .brand-name small {
                font-size: clamp(7px, 1.35vw, 9px);
                white-space: normal;
            }

    .search, .language, .hotline {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 86px;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

        .nav.open {
            display: block;
        }

    .nav-inner {
        width: 100%;
        height: auto;
        display: grid;
        gap: 0;
        overflow: visible;
    }

    .nav a {
        justify-content: flex-start;
        padding: 14px 22px;
        border-bottom: 1px solid var(--line);
    }

        .nav a.active::after {
            left: 0;
            right: auto;
            top: 0;
            bottom: 0;
            width: 3px;
            height: auto;
        }

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

    .hero-card {
        min-height: 480px;
    }

    .lead-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .mini-story {
        min-height: 112px;
        border: 1px solid var(--line);
        border-radius: 8px;
        padding: 9px;
    }

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

    .home-media-grid {
        grid-template-columns: 1fr;
    }

    .home-media-copy {
        padding: 2px 2px 4px;
    }

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

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

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 560px) {
    .content-grid {
        padding-top: 14px;
    }

    .hero-card {
        min-height: 430px;
    }

    .topbar .brand img {
        width: 96px;
        height: 56px;
    }

    .topbar .brand-name {
        padding-left: 8px;
    }

        .topbar .brand-name strong {
            font-size: 10px;
            white-space: normal;
        }

        .topbar .brand-name small {
            margin-top: 2px;
            font-size: 6.5px;
            letter-spacing: .15px;
            white-space: normal;
        }

    .home-media-thumb,
    .home-media-thumb img {
        min-height: 210px;
    }

    .home-media-copy h3 {
        font-size: 18px;
    }

    .hero-copy h1 {
        font-size: 25px;
    }

    .hero-copy p {
        display: none;
    }

    .lead-list {
        grid-template-columns: 1fr;
    }

    .mini-story {
        grid-template-columns: 96px 1fr;
    }

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

    .news-card img {
        height: 190px;
    }

    .transport-list article {
        grid-template-columns: 94px 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .copyright .container {
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Blazor pages and PWA shell */
.page-body {
    min-height: 56vh;
}

.tabs a {
    position: relative;
    flex: 0 0 auto;
    padding: 0 4px 13px;
    color: #53627a;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

    .tabs a.active {
        color: var(--red);
    }

        .tabs a.active::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -1px;
            height: 3px;
            background: var(--red);
        }

.loading-panel {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    color: var(--navy);
}

    .loading-panel span {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--red);
        animation: pulse 1s infinite alternate;
    }

        .loading-panel span:nth-child(2) {
            animation-delay: .2s;
        }

        .loading-panel span:nth-child(3) {
            animation-delay: .4s;
        }

    .loading-panel p {
        width: 100%;
        margin: -115px 0 0;
        text-align: center;
        font-size: 13px;
    }

@keyframes pulse {
    to {
        opacity: .25;
        transform: translateY(-4px);
    }
}

.inner-page {
    padding-top: 27px;
    padding-bottom: 48px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 27px;
    color: #6a788d;
    font-size: 12px;
}

    .breadcrumb a {
        color: var(--navy);
    }

.page-title {
    margin-bottom: 28px;
    padding: 27px 30px;
    border-left: 4px solid var(--red);
    border-radius: 0 10px 10px 0;
    background: linear-gradient(90deg, #f2f7fd, #fff);
}

    .page-title p, .article-category {
        margin: 0 0 8px;
        color: var(--red);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .page-title h1 {
        margin: 0;
        color: var(--navy);
        font-size: clamp(27px, 4vw, 42px);
    }

.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 28px 18px;
}

    .listing-grid .news-card img {
        height: 180px;
    }

.empty-state {
    margin: 30px auto;
    padding: 55px 25px;
    text-align: center;
    border: 1px dashed #ccd7e5;
    border-radius: 12px;
    background: #f9fbfe;
}

    .empty-state h1, .empty-state h2 {
        margin: 8px 0;
        color: var(--navy);
    }

    .empty-state p {
        color: var(--muted);
    }

    .empty-state button.primary-button {
        border: 0;
        cursor: pointer;
    }

.api-error {
    margin-top: 32px;
}

.not-found {
    max-width: 760px;
}

    .not-found > strong {
        color: var(--red);
        font-size: 80px;
        line-height: 1;
    }

.primary-button {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 19px;
    border-radius: 7px;
    color: #fff;
    background: var(--navy);
    font-size: 12px;
    font-weight: 800;
}

.article-page {
    max-width: 920px;
}

    .article-page article > h1 {
        margin: 0 0 13px;
        color: #13243a;
        font-size: clamp(31px, 5vw, 48px);
        line-height: 1.2;
        letter-spacing: -.8px;
    }

.article-meta {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.article-lead {
    margin: 27px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.7;
}

.article-hero {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 11px;
}

.article-content {
    max-width: 780px;
    margin: 28px auto;
}

    .article-content p {
        margin: 0 0 19px;
        color: #27384e;
        font-size: 16px;
        line-height: 1.85;
    }

.article-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

    .article-share strong {
        margin-right: 7px;
        font-size: 13px;
    }

    .article-share a {
        padding: 7px 10px;
        border-radius: 5px;
        background: #eff5fb;
        color: var(--navy);
        font-size: 11px;
    }

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
}

    .contact-grid .panel {
        padding: 26px;
    }

    .contact-grid h2 {
        margin-top: 0;
        color: var(--navy);
    }

    .contact-grid p {
        color: #4f5d72;
        line-height: 1.8;
    }

    .contact-grid form {
        display: grid;
        gap: 14px;
    }

    .contact-grid label {
        display: grid;
        gap: 7px;
        color: #3e4b60;
        font-size: 12px;
        font-weight: 700;
    }

    .contact-grid input, .contact-grid textarea {
        width: 100%;
        padding: 11px;
        border: 1px solid #dce3ee;
        border-radius: 7px;
        outline: 0;
        resize: vertical;
    }

        .contact-grid input:focus, .contact-grid textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(7,82,165,.08);
        }

    .contact-grid button {
        justify-self: start;
        padding: 12px 20px;
        border: 0;
        border-radius: 7px;
        color: #fff;
        background: var(--red);
        font-weight: 800;
        cursor: pointer;
    }

.install-pwa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    padding: 11px 15px;
    border: 0;
    border-radius: 24px;
    color: #fff;
    background: var(--red);
    box-shadow: 0 8px 22px rgba(132,13,20,.28);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

    .install-pwa span {
        font-size: 17px;
        vertical-align: -1px;
    }

    .install-pwa.hidden {
        display: none;
    }

#blazor-error-ui {
    display: none;
    position: fixed;
    inset: auto 0 0;
    z-index: 100;
    padding: 12px 20px;
    background: #fff3cd;
    color: #5f4800;
    box-shadow: 0 -2px 10px rgba(0,0,0,.12);
}

    #blazor-error-ui .reload {
        margin-left: 12px;
        font-weight: 700;
    }

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

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

@media (max-width: 560px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }

        .listing-grid .news-card img {
            height: 220px;
        }

    .install-pwa {
        right: 12px;
        bottom: 12px;
    }
}
