/* News & Media — News listing */
.nm-news-page {
    --nm-navy: #061a5a;
    --nm-blue: #000f9f;
    --nm-red: #ea0029;
    --nm-text: rgba(6, 26, 90, 0.72);
    --nm-muted: rgba(6, 26, 90, 0.58);
    --nm-line: rgba(0, 15, 159, 0.1);
    --nm-soft: #f5f7fb;
    color: var(--nm-navy);
}

.nm-news-page .nm-eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.nm-news-page .nm-eyebrow--dark {
    color: var(--nm-red);
}

.nm-news-page .nm-intro {
    background: linear-gradient(180deg, #f5f7fb 0%, #eef2f8 100%);
    border-bottom: 1px solid var(--nm-line);
}

.nm-news-page .nm-bridge-inner {
    max-width: 760px;
}

.nm-news-page .nm-intro-copy {
    margin: 16px 0 0;
    max-width: 680px;
    color: var(--nm-text);
    font-size: clamp(1.05rem, 1.5vw, 1.15rem);
    line-height: 1.75;
}

.nm-news-page .nm-seo-support {
    margin: clamp(28px, 4vw, 40px) 0 0;
    max-width: 720px;
    color: var(--nm-muted, #5b6b86);
    font-size: 0.98rem;
    line-height: 1.7;
}

.nm-news-page .nm-section {
    padding: clamp(52px, 7vw, 92px) 0;
}

.nm-news-page .nm-section-head {
    max-width: 720px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.nm-news-page .nm-section-title {
    margin: 0;
    color: var(--nm-navy);
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.nm-news-page .nm-section-title--light {
    color: #ffffff;
}

.nm-news-page .nm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: clamp(28px, 4vw, 40px);
}

.nm-news-page .nm-filter {
    appearance: none;
    border: 1px solid var(--nm-line);
    background: #ffffff;
    color: var(--nm-navy);
    border-radius: 999px;
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nm-news-page .nm-filter:hover {
    border-color: rgba(0, 15, 159, 0.28);
    color: var(--nm-blue);
}

.nm-news-page .nm-filter.is-active {
    background: var(--nm-blue);
    border-color: var(--nm-blue);
    color: #ffffff;
}

.nm-news-page .nm-filter:focus-visible {
    outline: 3px solid rgba(0, 15, 159, 0.28);
    outline-offset: 2px;
}

.nm-news-page .nm-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
}

.nm-news-page .nm-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--nm-line);
    border-radius: 18px;
    box-shadow: 0 18px 36px -30px rgba(6, 26, 90, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nm-news-page .nm-card:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 24px 42px -28px rgba(6, 26, 90, 0.42);
}

.nm-news-page .nm-card[hidden] {
    display: none !important;
}

.nm-news-page .nm-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe5f2;
}

.nm-news-page .nm-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.nm-news-page .nm-card:hover .nm-card-media img {
    transform: scale(1.04);
}

.nm-news-page .nm-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}

.nm-news-page .nm-card-category {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--nm-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nm-news-page .nm-card-title {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.nm-news-page .nm-card-title a {
    color: var(--nm-navy);
    text-decoration: none;
}

.nm-news-page .nm-card-title a:hover {
    color: var(--nm-blue);
}

.nm-news-page .nm-card-date {
    display: block;
    margin-bottom: 12px;
    color: var(--nm-muted);
    font-size: 0.9rem;
}

.nm-news-page .nm-card-excerpt {
    margin: 0 0 18px;
    color: var(--nm-text);
    font-size: 0.98rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nm-news-page .nm-card-link {
    margin-top: auto;
    color: var(--nm-blue);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.nm-news-page .nm-card-link:hover {
    color: var(--nm-red);
}

.nm-news-page .nm-empty {
    margin: 18px 0 0;
    color: var(--nm-muted);
    font-size: 1rem;
}

.nm-news-page .nm-empty.is-hidden,
.nm-news-page .nm-card.is-filtered-out {
    display: none !important;
}

.nm-news-page .nm-archive {
    padding-top: 0;
}

.nm-news-page .nm-archive-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(20px, 4vw, 40px);
    padding: clamp(28px, 4vw, 40px);
    border-radius: 22px;
    background: linear-gradient(135deg, #061a5a 0%, #0a2a6e 100%);
    color: #ffffff;
}

.nm-news-page .nm-archive-panel .nm-eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.nm-news-page .nm-archive-copy {
    margin: 12px 0 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

.nm-news-page .nm-archive-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: var(--nm-red);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.nm-news-page .nm-archive-btn:hover {
    background: #c80024;
    color: #ffffff;
    transform: translate3d(0, -2px, 0);
}

.nm-news-page .nm-press {
    background: var(--nm-soft);
    border-top: 1px solid var(--nm-line);
}

.nm-news-page .nm-press-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
}

.nm-news-page .nm-press-copy {
    margin: 14px 0 0;
    max-width: 540px;
    color: var(--nm-text);
    line-height: 1.7;
}

.nm-news-page .nm-press-card {
    padding: 28px 26px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid var(--nm-line);
    box-shadow: 0 18px 36px -30px rgba(6, 26, 90, 0.3);
}

.nm-news-page .nm-press-label {
    margin: 0 0 6px;
    color: var(--nm-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nm-news-page .nm-press-label + .nm-press-label,
.nm-news-page .nm-press-email + .nm-press-label {
    margin-top: 18px;
}

.nm-news-page .nm-press-email {
    color: var(--nm-blue);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

.nm-news-page .nm-press-email:hover {
    color: var(--nm-red);
}

.nm-news-page .nm-press-team {
    margin: 0;
    color: var(--nm-navy);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.45;
}

/* Article detail */
.nm-article-page {
    --nm-navy: #061a5a;
    --nm-blue: #000f9f;
    --nm-red: #ea0029;
    --nm-text: rgba(6, 26, 90, 0.72);
}

.nm-article-page .nm-article {
    padding: clamp(120px, 16vh, 160px) 0 clamp(64px, 8vw, 96px);
}

.nm-article-page .nm-article-inner {
    max-width: 760px;
    margin: 0 auto;
}

.nm-article-page .nm-article-back {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--nm-blue);
    font-weight: 700;
    text-decoration: none;
}

.nm-article-page .nm-article-back:hover {
    color: var(--nm-red);
}

.nm-article-page .nm-article-category {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--nm-red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nm-article-page .nm-article-title {
    margin: 0 0 12px;
    color: var(--nm-navy);
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.nm-article-page .nm-article-date {
    display: block;
    margin-bottom: 28px;
    color: rgba(6, 26, 90, 0.58);
}

.nm-article-page .nm-article-media {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 18px;
}

.nm-article-page .nm-article-media img {
    display: block;
    width: 100%;
    height: auto;
}

.nm-article-page .nm-article-body p {
    margin: 0 0 16px;
    color: var(--nm-text);
    font-size: 1.08rem;
    line-height: 1.75;
}

@media (max-width: 991px) {
    .nm-news-page .nm-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nm-news-page .nm-archive-panel,
    .nm-news-page .nm-press-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .nm-news-page .nm-grid {
        grid-template-columns: 1fr;
    }

    .nm-news-page .nm-archive-btn {
        width: 100%;
    }
}

/* Article pages: full-bleed under transparent header */
.section:has(.nm-article-page) {
    padding-top: 0 !important;
}

body:has(.nm-article-page) > header {
    position: absolute;
    width: 100%;
    z-index: 30;
}

body:has(.nm-article-page) .utility-bar,
body:has(.nm-article-page) .header-top.utility-bar {
    background: transparent;
}

body:has(.nm-article-page) .header.sticky-bar,
body:has(.nm-article-page) .header.sticky-bar.stick {
    background: transparent;
}

.nm-news-page .nm-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.nm-news-page .nm-card-meta .nm-card-category {
    margin-bottom: 0;
}

.nm-news-page .nm-card-plus {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--nm-blue, #000f9f);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nm-news-page .nm-card-plus:hover,
.nm-news-page .nm-card-plus:focus-visible {
    background: var(--nm-red, #ea0029);
    color: #ffffff;
    transform: scale(1.06);
    outline: none;
}

.nm-detail-page.nm-news-page {
    background: #ffffff;
}

.nm-detail {
    padding: clamp(36px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
}

.nm-detail__inner {
    max-width: 860px;
}

.nm-detail__back {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--nm-blue, #000f9f);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
}

.nm-detail__back:hover {
    color: var(--nm-red, #ea0029);
}

.nm-detail__category {
    margin: 0 0 12px;
    color: var(--nm-red, #ea0029);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nm-detail__title {
    margin: 0 0 14px;
    color: var(--nm-navy, #061a5a);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
}

.nm-detail__date {
    display: block;
    margin-bottom: 28px;
    color: var(--nm-muted, #667085);
    font-size: 0.95rem;
}

.nm-detail__media {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 18px;
    background: #dfe5f2;
}

.nm-detail__media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.nm-detail__media--video {
    background: #0b1224;
}

.nm-detail__video {
    display: block;
    width: 100%;
    height: auto;
    min-height: 220px;
    max-height: min(70vh, 720px);
    background: #0b1224;
}

.nm-detail__content {
    color: var(--nm-text, #1a1f36);
    font-size: 1.05rem;
    line-height: 1.7;
}

.nm-detail__content p {
    margin: 0 0 1em;
}

.nm-detail__content p:last-child {
    margin-bottom: 0;
}

