/* News page corporate layout */
.news-page {
    background: #f5f7fb;
    color: var(--brand-navy);
}

.news-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: #f5f7fb;
    color: var(--brand-navy);
    overflow: hidden;
}

.news-hero::before,
.news-hero::after {
    display: none;
}

.news-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 780px;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
    padding-left: 1rem;
    padding-right: 3rem;
}

.news-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: rgba(236, 28, 36, 0.12);
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-hero-title {
    margin: 0;
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--brand-navy);
}

.news-hero-subtitle {
    margin: 0;
    font-size: clamp(1.05rem, 2.6vw, 1.25rem);
    color: rgba(10, 29, 55, 0.68);
    line-height: 1.7;
}

.news-hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: #f5f7fb;
    color: var(--brand-navy);
    overflow: hidden;
}

.news-hero::before,
.news-hero::after {
    display: none;
}

.news-card-list {
    display: grid;
    gap: 2rem;
}

.news-card-block {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(120px, 0.35fr) minmax(320px, 1fr);
    gap: 2rem;
    padding: 2.4rem;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(10, 29, 55, 0.08);
    box-shadow: 0 26px 60px rgba(10, 29, 55, 0.14);
    overflow: hidden;
    align-items: stretch;
}

.news-card-block::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(var(--brand-navy-rgb), 0.06);
    pointer-events: none;
    z-index: 0;
}

.news-card-block-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 180px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.news-card-block-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.news-card-block-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 29, 55, 0) 45%, rgba(10, 29, 55, 0.35) 100%);
    pointer-events: none;
    z-index: 2;
}

.news-card-block-date {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    min-width: 120px;
    padding-right: 1.6rem;
    border-right: 1px solid rgba(10, 29, 55, 0.08);
    font-weight: 700;
    z-index: 1;
}

.news-card-block-day {
    font-size: 2.8rem;
    line-height: 1;
    color: var(--brand-primary);
}

.news-card-block-month {
    font-size: 1.05rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(var(--brand-navy-rgb), 0.6);
}

.news-card-block-year {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: rgba(var(--brand-navy-rgb), 0.4);
}

.news-card-block-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.news-card-block-title {
    margin: 0;
    font-size: 1.5rem;
    color: var(--brand-navy);
    line-height: 1.35;
}

.news-card-block-text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(var(--brand-navy-rgb), 0.65);
}

.news-card-block-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-decoration: none;
    transition: transform 0.25s ease;
}

.news-card-block-link:hover {
    transform: translateX(4px);
}

.news-featured {
    margin-top: 0;
    padding: 4rem 0 5rem;
}

.news-featured-inner {
    position: relative;
}

.news-featured-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1.05fr) minmax(120px, 0.35fr) minmax(320px, 1fr);
    gap: 2.5rem;
    padding: 3rem;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(10, 29, 55, 0.16);
    border: 1px solid rgba(10, 29, 55, 0.08);
    overflow: hidden;
    align-items: stretch;
}

.news-featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(236, 28, 36, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.news-featured-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 260px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
    z-index: 1;
}

.news-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

.news-featured-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 29, 55, 0) 45%, rgba(10, 29, 55, 0.35) 100%);
    pointer-events: none;
    z-index: 2;
}

.news-featured-date {
    position: relative;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(10, 29, 55, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 120px;
    font-weight: 700;
}

.news-featured-day {
    font-size: 3.4rem;
    line-height: 1;
    color: var(--brand-primary);
}

.news-featured-month {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(10, 29, 55, 0.65);
}

.news-featured-year {
    margin-top: 0.2rem;
    font-size: 1rem;
    color: rgba(10, 29, 55, 0.4);
    letter-spacing: 0.08em;
}

.news-featured-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.news-featured-kicker {
    font-size: 0.85rem;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(10, 29, 55, 0.55);
}

.news-featured-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--brand-navy);
    line-height: 1.2;
}

.news-featured-summary {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(10, 29, 55, 0.75);
    max-width: 620px;
}

.news-featured-actions {
    margin-top: 0.5rem;
}

.news-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: rgba(var(--brand-navy-rgb), 0.08);
    color: var(--brand-navy);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.news-featured-link:hover {
    background: rgba(var(--brand-primary-rgb), 0.14);
    transform: translateY(-2px);
}

.news-main {
    padding: 5rem 0 4rem;
}

.news-main-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-main-kicker {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(var(--brand-navy-rgb), 0.55);
}

.news-main-title {
    margin: 0.5rem 0 0;
    font-size: clamp(2rem, 3.3vw, 2.6rem);
    color: var(--brand-navy);
}

.news-main-subtitle {
    margin: 0.8rem 0 0;
    font-size: 1.05rem;
    color: rgba(var(--brand-navy-rgb), 0.65);
    max-width: 620px;
    line-height: 1.7;
}


.news-empty {
    text-align: center;
    padding: 5rem 2rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px dashed rgba(var(--brand-navy-rgb), 0.2);
    color: rgba(var(--brand-navy-rgb), 0.6);
}

.news-empty-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.news-empty-title {
    margin: 0 0 0.6rem;
    font-size: 1.6rem;
    color: var(--brand-navy);
}

.news-empty-text {
    margin: 0 auto;
    max-width: 420px;
    line-height: 1.7;
}

.news-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(var(--brand-navy-rgb), 0.08) 0%, rgba(236, 28, 36, 0.08) 100%);
}

.news-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem 3.5rem;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(10, 29, 55, 0.12);
}

.news-cta-content {
    max-width: 620px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-cta-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(var(--brand-navy-rgb), 0.55);
}

.news-cta-title {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    color: var(--brand-navy);
    line-height: 1.25;
}

.news-cta-text {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(var(--brand-navy-rgb), 0.65);
    line-height: 1.7;
}

.news-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(236, 28, 36, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 55px rgba(236, 28, 36, 0.32);
}

@media (max-width: 1024px) {
    .news-featured-card {
        grid-template-columns: minmax(220px, 1fr) minmax(120px, 0.4fr);
        grid-template-rows: auto 1fr;
        gap: 1.8rem;
        padding: 2.5rem;
    }

    .news-hero-inner {
        padding-left: 1.1rem;
        padding-right: 2.5rem;
    }

    .news-featured-media {
        grid-column: 1 / -1;
        min-height: 220px;
    }

    .news-featured-date {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(10, 29, 55, 0.08);
        padding-bottom: 1.2rem;
        margin-bottom: 1.4rem;
    }

    .news-featured-day {
        font-size: 2.8rem;
    }

    .news-featured-month {
        letter-spacing: 0.1em;
    }

    .news-featured-year {
        margin-top: 0;
    }

    .news-featured-content {
        grid-column: 1 / -1;
    }

    .news-card-block {
        grid-template-columns: minmax(200px, 1fr) minmax(120px, 0.4fr);
        grid-template-rows: auto 1fr;
        gap: 1.8rem;
        padding: 2rem;
    }

    .news-card-block-media {
        grid-column: 1 / -1;
        min-height: 200px;
    }

    .news-card-block-date {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(10, 29, 55, 0.08);
        padding-bottom: 1rem;
        margin-bottom: 1.2rem;
    }

    .news-card-block-content {
        grid-column: 1 / -1;
    }
}

@media (max-width: 840px) {
    .news-hero {
        padding: 6rem 0 4.5rem;
    }

    .news-card-block {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .news-card-block::after {
        inset: 10px;
    }

    .news-card-block-media {
        min-height: 180px;
    }

    .news-card-block-date {
        gap: 0.75rem;
    }

    .news-card-block-day {
        font-size: 2.4rem;
    }

    .news-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem;
    }

    .news-cta-actions {
        width: 100%;
    }

    .news-cta-button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .news-featured {
        margin-top: -3rem;
    }

    .news-featured-card {
        padding: 1.8rem;
    }

    .news-featured-media {
        min-height: 180px;
    }

    .news-hero-inner {
        padding-left: 0.9rem;
        padding-right: 1.8rem;
    }

    .news-main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-card-block {
        padding: 1.8rem;
    }

    .news-card-block-media {
        min-height: 160px;
    }

    .news-card-block-date {
        border-bottom: 1px solid rgba(10, 29, 55, 0.08);
    }
}
