body.national-data-page {
    margin: 0;
    background: linear-gradient(180deg, #eef7fb 0%, #fff 28%, #f4faf7 100%);
    color: #173d5a;
}

.national-data-main {
    min-height: 70vh;
    padding: 3rem 1.25rem 5rem;
}

.national-data-wrapper {
    width: min(1480px, 100%);
    margin: 0 auto;
}

.national-data-back {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #087f91;
    font-weight: 800;
    text-decoration: none;
}

.national-data-hero {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(15, 107, 122, .13);
    border-radius: 28px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 24px 60px rgba(16, 58, 78, .1);
}

.national-data-hero-copy {
    max-width: 800px;
}

.national-data-kicker {
    margin: 0 0 .55rem;
    color: #2197a8;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.national-data-hero h1 {
    margin: 0 0 .8rem;
    color: #054b5b;
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
}

.national-data-hero-copy > p:last-child {
    margin: 0;
    color: #667f92;
    font-size: 1.05rem;
    line-height: 1.7;
}

.national-data-hero-icon {
    width: clamp(110px, 14vw, 190px);
    height: clamp(110px, 14vw, 190px);
    flex: 0 0 auto;
    border-radius: 24px;
    object-fit: cover;
}

.national-data-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: 1.25rem 0 3rem;
}

.national-data-meta span {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
    padding: .7rem 1rem;
    border: 1px solid rgba(15, 107, 122, .12);
    border-radius: 999px;
    background: #fff;
    color: #45677c;
    font-weight: 700;
}

.national-data-section > header {
    margin-bottom: 1.4rem;
}

.national-data-section h2 {
    margin: 0;
    color: #054b5b;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.national-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.35rem;
}

.national-data-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(15, 107, 122, .12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 58, 78, .1);
    transition: transform .2s ease, box-shadow .2s ease;
}

.national-data-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(16, 58, 78, .16);
}

.national-data-card > img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #edf5f7;
}

.national-data-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: .8rem;
    padding: 1.25rem;
}

.national-data-card h3 {
    margin: 0;
    color: #173d5a;
    font-size: 1.2rem;
}

.national-data-card p {
    margin: 0;
    color: #6b8294;
    line-height: 1.65;
}

.national-data-card a,
.national-data-card-status {
    margin-top: auto;
    padding: .8rem 1rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 800;
}

.national-data-card a {
    display: inline-flex;
    gap: .55rem;
    align-items: center;
    justify-content: center;
    background: #0f6b7a;
    color: #fff;
    text-decoration: none;
}

.national-data-card-status {
    background: #edf3f5;
    color: #6b8294;
}

.national-data-empty {
    padding: 3rem 1.5rem;
    border: 1px dashed rgba(15, 107, 122, .25);
    border-radius: 24px;
    background: rgba(255, 255, 255, .8);
    text-align: center;
}

.national-data-empty i {
    color: #2197a8;
    font-size: 2rem;
}

.national-data-empty h2 {
    margin: 1rem 0 .4rem;
}

.national-data-empty p {
    margin: 0;
    color: #6b8294;
}

@media (max-width: 720px) {
    .national-data-main {
        padding: 2rem 1rem 3rem;
    }

    .national-data-hero {
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .national-data-grid {
        grid-template-columns: 1fr;
    }

    .national-data-card > img {
        height: 190px;
    }
}
