:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #eef3fa;
    --surface-dark: #103154;
    --text: #1f2a37;
    --muted: #607086;
    --primary: #133c6b;
    --primary-2: #2d5f94;
    --border: #d8e3ef;
    --shadow: 0 12px 30px rgba(17, 43, 74, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --container: 1240px;
    --font-ui: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-ui);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-topbar {
    background: #0d2a48;
    color: #e7eff8;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.site-topbar__inner,
.site-header__inner,
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-topbar__inner { padding: 10px 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(244,247,251,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header__inner { padding: 16px 0; }

.brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand__title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--primary);
}

.brand__title-link {
    display: inline-block;
}

.brand__subtitle {
    font-size: 14px;
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.main-nav a.is-active {
    color: #0f2745;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.menu-toggle {
    position: relative;
    z-index: 30;
    display: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--primary);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    overflow-y: auto;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 30px rgba(17,43,74,.16);
    padding: 18px 14px;
    transition: right 0.3s ease;
    z-index: 25;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__section + .mobile-menu__section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.mobile-menu__title {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary-2);
    font-weight: 800;
    margin-bottom: 8px;
}

.mobile-menu__links {
    display: grid;
    gap: 8px;
}

.mobile-menu__links a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f7fafe;
    border: 1px solid var(--border);
    color: var(--primary);
    font-weight: 700;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 20;
}

.mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #dbe9f8;
    color: var(--primary);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.card,
.cta-card,
.news-card,
.series-card,
.highlight-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero {
    padding: 36px 0 24px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 24px;
}

.hero__main,
.hero__side {
    padding: 32px;
}

.hero__main {
    background: linear-gradient(135deg, #ffffff 0%, #edf4fc 100%);
}

.hero__title {
    margin: 14px 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.15;
}

.hero__text {
    margin: 0;
    font-size: 18px;
    color: #4a5c72;
    max-width: 860px;
}

.hero__cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.cta-card {
    padding: 18px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.cta-card:hover,
.news-card:hover,
.series-card:hover,
.highlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(17,43,74,.12);
}

.cta-card strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 6px;
}

.cta-card span {
    color: var(--muted);
    font-size: 14px;
}

.hero__side {
    background: linear-gradient(180deg, #163b69 0%, #0f2f53 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero__side h2 {
    margin: 0;
    font-size: 28px;
}

.hero__side p {
    margin: 0;
    color: rgba(255,255,255,.82);
}

.stat-card {
    padding: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
}

.stat-card__label {
    font-size: 13px;
    color: rgba(255,255,255,.72);
    margin-bottom: 4px;
}

.stat-card__value {
    font-size: 24px;
    font-weight: 800;
}

.page-section { padding: 28px 0; }

.section-head {
    margin-bottom: 20px;
    align-items: end;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 34px);
    letter-spacing: -.02em;
    color: #0f2745;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
}

.feature-main {
    padding: 24px;
    margin-bottom: 18px;
}

.feature-main__grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: center;
}

.feature-main__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
    background: #dbe4ef;
}

.feature-main__badge {
    display: inline-block;
    background: var(--surface-soft);
    color: var(--primary-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-main h3 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    color: #0f2745;
}

.feature-main p {
    margin: 0;
    color: #546578;
    font-size: 17px;
}

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

.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #dbe4ef;
}

.news-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.news-card__badge {
    display: inline-block;
    background: var(--surface-soft);
    color: var(--primary-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.news-card__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #0f2745;
}

.news-card__excerpt {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.news-card__meta {
    margin-top: auto;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

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

.series-card {
    padding: 20px;
}

.series-card small {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 800;
}

.series-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    color: #0f2745;
    line-height: 1.2;
}

.series-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.series-card__meta {
    margin-top: 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 14px;
}

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

.highlight-card {
    padding: 20px;
}

.highlight-card small {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 800;
}

.highlight-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    color: #0f2745;
    line-height: 1.2;
}

.highlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.footer {
    background: #0f243e;
    color: #dce8f3;
    padding: 42px 0;
    margin-top: 36px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 20px;
}

.footer h3,
.footer h4 {
    margin: 0 0 12px;
    color: #fff;
}

.footer p,
.footer a,
.footer li {
    color: rgba(220,232,243,.82);
    font-size: 14px;
}

.footer ul {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

@media (max-width: 1100px) {
    .hero__grid,
    .feature-main__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .news-grid,
    .series-grid,
    .highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .main-nav { display: none; }
    .menu-toggle { display: inline-flex; align-items: center; gap: 8px; }
}

@media (max-width: 760px) {
    .news-grid,
    .series-grid,
    .highlight-grid,
    .hero__cta-grid {
        grid-template-columns: 1fr;
    }

    .hero__main,
    .hero__side,
    .feature-main,
    .news-card__body,
    .series-card,
    .highlight-card {
        padding: 18px;
    }

    .brand__title { font-size: 24px; }
}


.news-card--mini .news-card__title {
    font-size: 20px;
    line-height: 1.2;
}

.news-card--mini .news-card__excerpt {
    font-size: 14px;
}

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

.press-home-grid .news-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #d8e3ef;
    box-shadow: 0 14px 34px rgba(17, 43, 74, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.press-home-grid .news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(17, 43, 74, .14);
}

.press-home-grid .news-card__image {
    height: 190px;
    aspect-ratio: auto;
    object-fit: cover;
}

.press-home-grid .news-card__body {
    padding: 18px;
    min-height: 310px;
}

.press-home-grid .news-card__badge {
    display: inline-flex;
    width: fit-content;
    background: #eaf3fc;
    color: #123f6b;
    border: 1px solid #d6e6f5;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 4px;
}

.press-home-grid .news-card__title {
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: #0f2745;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-home-grid .news-card__excerpt {
    color: #607086;
    font-size: 15px;
    line-height: 1.48;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-home-grid .news-card__meta {
    margin-top: auto;
    padding-top: 10px;
    color: #607086;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .press-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .press-home-grid {
        grid-template-columns: 1fr;
    }

    .press-home-grid .news-card__image {
        height: 210px;
    }

    .press-home-grid .news-card__body {
        min-height: auto;
    }
}
/* ═══════════════════════════════════════
   WIDGET DOCK — griglia servizi in home
═══════════════════════════════════════ */
.widget-dock {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    align-items: stretch; /* colonne stessa altezza */
}

.widget-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* il widget PHP occupa tutto lo spazio della colonna */
.widget-col > .atti-widget {
    flex: 1;
}

/* wrapper iframe: stessa card del widget PHP */
.iframe-widget-wrap {
    flex: 1;
    border-radius: var(--radius-lg, 18px);
    overflow: hidden;
    border: 1px solid var(--border, #d8e3ef);
    box-shadow: var(--shadow, 0 12px 30px rgba(17,43,74,.08));
    background: var(--surface, #fff);
    /* altezza minima uguale al widget atti */
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.iframe-widget-wrap iframe {
    flex: 1;
    width: 100%;
    border: none;
    display: block;
    /* altezza iniziale — verrà aggiornata dal postMessage */
    min-height: 420px;
    border-radius: 0; /* il radius è sul wrapper */
}

@media (max-width: 700px) {
    .widget-dock {
        grid-template-columns: 1fr;
    }
    .iframe-widget-wrap {
        min-height: 380px;
    }
}
/* =========================================================
   FIX MENU MOBILE + RUBRICHE COMPATTE — Ticronometro
   ========================================================= */

@media (min-width: 981px) {
    .mobile-menu,
    .mobile-menu.is-open {
        right: -340px !important;
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .mobile-overlay,
    .mobile-overlay.is-open {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    body.menu-open {
        overflow: auto !important;
    }
}

body.menu-open {
    overflow: hidden;
}

.series-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}

.series-card {
    padding: 16px;
    min-height: 0;
}

.series-card small {
    margin-bottom: 7px;
    font-size: 11px;
}

.series-card h3 {
    font-size: 18px;
    line-height: 1.18;
    margin-bottom: 6px;
}

.series-card p {
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-card__meta {
    margin-top: 8px;
    font-size: 13px;
}

.series-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.series-grid--compact .series-card {
    padding: 14px;
}

.series-grid--compact .series-card h3 {
    font-size: 17px;
}

@media (max-width: 760px) {
    .series-grid,
    .series-grid--compact {
        grid-template-columns: 1fr;
    }

    .series-card {
        padding: 15px;
    }
}
/* Titoli H1 più compatti in tutto il sito */
/* =====================================================
   RIDUZIONE GLOBALE TITOLI H1 TICRONOMETRO
===================================================== */

.article-card h1,
article.article-card h1,
.page .article-card h1 {
    font-size: clamp(24px, 3vw, 34px) !important;
    line-height: 1.15 !important;
}


/* =====================================================
   RUBRICHE HOME — versione moderna tipo dashboard
===================================================== */

.home-series-section {
    padding-top: 30px;
}

.home-series-panel {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 39, 69, .08);
    display: grid;
    gap: 22px;
}

.home-series-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.home-series-eyebrow {
    display: inline-flex;
    width: fit-content;
    background: #dcecfb;
    color: #123f6b;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 10px;
}

.home-series-head h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: .98;
    color: #0f2745;
    letter-spacing: -.055em;
}

.home-series-head p {
    margin: 8px 0 0;
    color: #5f7087;
    font-size: 17px;
    max-width: 760px;
}

.home-series-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #123b67, #1b5c97);
    color: #ffffff;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(18, 59, 103, .18);
}

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

.series-card-link {
    display: block;
    min-width: 0;
}

.series-grid--modern .series-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
    padding: 18px;
    background: linear-gradient(145deg, #f8fbff, #eef5fc);
    border: 1px solid #d9e7f4;
    border-radius: 20px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.series-grid--modern .series-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: rgba(36, 116, 190, .08);
    transition: transform .18s ease, background .18s ease;
}

.series-grid--modern .series-card:hover {
    transform: translateY(-3px);
    border-color: #b8d4ee;
    box-shadow: 0 18px 34px rgba(15, 39, 69, .11);
}

.series-grid--modern .series-card:hover::after {
    transform: scale(1.12);
    background: rgba(36, 116, 190, .13);
}

.series-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.series-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #123b67, #1b5c97);
    color: #ffffff;
    font-weight: 950;
    font-size: 18px;
    box-shadow: 0 10px 22px rgba(18, 59, 103, .16);
}

.series-card__label {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #d9e7f4;
    color: #326494;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.series-grid--modern .series-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #0f2745;
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -.025em;
}

.series-grid--modern .series-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #5f7087;
    font-size: 14px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-card__footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.series-grid--modern .series-card__meta {
    margin: 0;
    color: #123f6b;
    font-size: 13px;
    font-weight: 950;
}

.series-card__arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #d9e7f4;
    color: #123f6b;
    font-weight: 950;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.series-grid--modern .series-card:hover .series-card__arrow {
    transform: translateX(3px);
    background: #123f6b;
    color: #ffffff;
}

@media (max-width: 1180px) {
    .series-grid.series-grid--modern {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .home-series-panel {
        padding: 22px;
    }

    .series-grid.series-grid--modern {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-series-panel {
        padding: 18px;
    }

    .home-series-head {
        align-items: flex-start;
    }

    .home-series-button {
        width: 100%;
    }

    .series-grid.series-grid--modern {
        grid-template-columns: 1fr;
    }

    .series-grid--modern .series-card {
        min-height: auto;
    }
}
.press-home-wrapper {
    background: #ffffff;
    border: 1px solid #d8e3ef;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(15, 39, 69, .08);
}

.press-home-wrapper .section-head {
    margin-bottom: 22px;
}


/* =====================================================
   STAMPA LOCALE HOME — wrapper visibile stile dashboard
===================================================== */

.press-home-wrapper {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(15, 39, 69, .08);
    display: grid;
    gap: 22px;
}

.press-home-wrapper .section-head {
    margin-bottom: 0;
}

.press-home-eyebrow {
    display: inline-flex;
    width: fit-content;
    background: #dcecfb;
    color: #123f6b;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 10px;
}

.press-home-wrapper .section-head h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: .98;
    color: #0f2745;
    letter-spacing: -.055em;
}

.press-home-wrapper .section-head p {
    margin: 8px 0 0;
    color: #5f7087;
    font-size: 17px;
    max-width: 850px;
}

.press-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #123b67, #1b5c97);
    color: #ffffff;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(18, 59, 103, .18);
}

.press-home-wrapper .press-home-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.press-home-wrapper .news-card {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fbff, #ffffff);
    border: 1px solid #d9e7f4;
    box-shadow: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.press-home-wrapper .news-card:hover {
    transform: translateY(-4px);
    border-color: #b8d4ee;
    box-shadow: 0 18px 34px rgba(15, 39, 69, .11);
}

.press-home-wrapper .news-card__image {
    height: 180px;
    aspect-ratio: auto;
    object-fit: cover;
}

.press-home-wrapper .news-card__body {
    padding: 18px;
    min-height: 295px;
}

.press-home-wrapper .news-card__badge {
    display: inline-flex;
    width: fit-content;
    background: #eaf3fc;
    color: #123f6b;
    border: 1px solid #d6e6f5;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 900;
}

.press-home-wrapper .news-card__title {
    font-size: 21px;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: #0f2745;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-home-wrapper .news-card__excerpt {
    color: #607086;
    font-size: 15px;
    line-height: 1.48;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-home-wrapper .news-card__meta {
    margin-top: auto;
    padding-top: 10px;
    color: #607086;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .press-home-wrapper .press-home-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .press-home-wrapper {
        padding: 18px;
    }

    .press-home-button {
        width: 100%;
    }

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

    .press-home-wrapper .news-card__body {
        min-height: auto;
    }
}
.press-home-wrapper {
    background: #ffffff;
    border: 1px solid #d8e3ef;
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(15, 39, 69, .08);
}

.press-home-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 22px;
}

.press-home-eyebrow {
    display: inline-flex;
    background: #dcecfb;
    color: #123f6b;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 10px;
}

.press-home-head h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 54px);
    line-height: .98;
    color: #0f2745;
    letter-spacing: -.055em;
}

.press-home-head p {
    margin: 8px 0 0;
    color: #5f7087;
    font-size: 17px;
}

.press-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #123b67, #1b5c97);
    color: #fff;
    font-weight: 950;
}