:root {
    --nb-blue: #0b3d91;
    --nb-blue-dark: #082b67;
    --nb-white: #ffffff;
    --nb-text: #12305f;
    --nb-muted: #60708f;
    --nb-bg: #ffffff;
    --nb-soft: #f3f6fb;
    --nb-border: #e3e9f2;
    --nb-yellow: #f2a900;
}
.archive-hero {
    background: #f4f7fb;
    padding: 64px 0 42px;
}

.archive-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--nb-blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--nb-blue-dark);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 900;
}

.archive-description {
    max-width: 680px;
    margin-top: 16px;
    color: #526070;
    font-size: 16px;
    line-height: 1.7;
}

.archive-content {
    padding: 56px 0 72px;
    background: #ffffff;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post-card {
    background: #ffffff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(16, 38, 76, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 38, 76, 0.13);
}

.post-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.post-card-image {
    aspect-ratio: 16 / 10;
    background: #dfe8f5;
    overflow: hidden;
}

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

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

.post-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--nb-yellow);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.post-card h2 {
    margin: 0 0 12px;
    color: var(--nb-text);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.post-card p {
    margin: 0;
    color: #526070;
    font-size: 14px;
    line-height: 1.65;
}

.post-card-readmore {
    margin-top: auto;
    padding-top: 18px;
    color: var(--nb-yellow);
    font-size: 13px;
    font-weight: 900;
}

.archive-pagination {
    margin-top: 48px;
}

.archive-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.archive-pagination .page-numbers {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fb;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
    background: var(--nb-yellow);
    color: #1a1a1a;
}

.archive-empty {
    max-width: 620px;
    padding: 40px;
    border-radius: 14px;
    background: #f4f7fb;
}
.post-card-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8edf5;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.03);
}

.post-card-placeholder img {
    object-fit: contain;
    padding: 24px;
    background: #f4f7fb;
}
@media (max-width: 1024px) {
    .archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .archive-hero {
        padding: 44px 0 32px;
    }

    .archive-content {
        padding: 36px 0 52px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .post-card-body {
        padding: 18px;
    }
}