:root {
    --emsf-navy-1: #020B1D;
    --emsf-navy-2: #061B3C;
    --emsf-navy-3: #0A234A;
    --emsf-gold: #E4B84D;
    --emsf-silver: #E6E8EC;
    --emsf-white: #FFFFFF;
    --emsf-text: #152238;
    --emsf-muted: #657084;
    --emsf-background: #F4F6F9;
    --emsf-border: #DCE2EA;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--emsf-background);
    color: var(--emsf-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}
a { color: inherit; }

.emsf-container,
.emsf-header__inner,
.emsf-nav__inner,
.emsf-footer__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.emsf-header {
    position: relative;
    z-index: 1000;
    background: linear-gradient(90deg, var(--emsf-navy-1) 0%, var(--emsf-navy-2) 45%, var(--emsf-navy-3) 100%);
    color: var(--emsf-white);
}
.emsf-header__inner {
    display: flex;
    width: min(1500px, calc(100% - 96px));
    min-height: 130px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px 0;
}
.emsf-brand img {
    display: block;
    width: auto;
    max-width: min(100%, 650px);
    height: auto;
    max-height: 105px;
    object-fit: contain;
}
.emsf-brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.emsf-brand-block .emsf-partnership {
    margin: 0;
    font-size: 14px;
    text-align: center;
}

.emsf-header__right { text-align: right; }
.emsf-language-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 14px;
    margin-bottom: 18px;
}
.emsf-language-selector a {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    text-decoration: none;
}
.emsf-language-selector a:hover,
.emsf-language-selector a.is-active { color: var(--emsf-gold); }
.emsf-partnership { margin: 0; color: var(--emsf-white); font-size: 15px; }
.emsf-partnership strong { color: var(--emsf-gold); }

.emsf-nav { border-top: 1px solid rgba(255,255,255,.08); border-bottom: 2px solid var(--emsf-gold); }
.emsf-nav__inner { position: relative; }
.emsf-nav__list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.emsf-nav__list > li { position: relative; }
.emsf-nav__link {
    display: flex;
    min-height: 54px;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: var(--emsf-white);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}
.emsf-nav__link:hover,
.emsf-nav__link:focus-visible,
.emsf-nav__categories-button[aria-expanded="true"] {
    background: rgba(255,255,255,.07);
    color: var(--emsf-gold);
    outline: 0;
}
.emsf-nav__arrow { transition: transform 160ms ease; }
.emsf-nav__categories-button[aria-expanded="true"] .emsf-nav__arrow { transform: rotate(180deg); }
.emsf-nav__mobile-button { display: none; }

.emsf-mega-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    width: min(1120px, calc(100vw - 32px));
    transform: translateX(-50%);
    overflow: hidden;
    border: 1px solid rgba(228,184,77,.55);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    background: var(--emsf-navy-2);
    box-shadow: 0 18px 45px rgba(0,0,0,.38);
}
.emsf-mega-menu[hidden] { display: none; }
.emsf-mega-menu__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px 14px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.emsf-mega-menu__header strong { color: var(--emsf-gold); font-size: 17px; }
.emsf-mega-menu__header span { color: rgba(255,255,255,.7); font-size: 13px; }
.emsf-mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px 12px 18px;
}
.emsf-mega-menu__column { margin: 0; padding: 0 12px; list-style: none; }
.emsf-mega-menu__column + .emsf-mega-menu__column { border-left: 1px solid rgba(255,255,255,.1); }
.emsf-mega-menu__link {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--emsf-white);
    font-size: 14px;
    text-decoration: none;
}
.emsf-mega-menu__link:hover,
.emsf-mega-menu__link:focus-visible { background: rgba(228,184,77,.12); color: var(--emsf-gold); outline: 0; }

.emsf-main { padding: 42px 0 72px; }
.emsf-container--listing {
    width: calc(100% - 48px);
    max-width: none;
}

.emsf-listing-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
}

.emsf-listing-content {
    min-width: 0;
}

.emsf-adsense-column {
    width: 300px;
    min-height: 600px;
    position: sticky;
    top: 24px;
    align-self: start;
}
.emsf-infeed-ad {
    display: none;
}
.emsf-ad-placeholder {
    display: flex;
    min-height: 600px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px dashed var(--emsf-border);
    background: rgba(255, 255, 255, .55);
    color: var(--emsf-muted);
    font-size: 13px;
    text-align: center;
}
.emsf-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.emsf-eyebrow { color: #9A6D05; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 4px 0 0; font-size: clamp(28px, 5vw, 44px); line-height: 1.08; }
.emsf-news-list { display: grid; gap: 18px; }
..emsf-news-card {
    display: flex !important;
    gap: 24px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--emsf-border);
    border-radius: 10px;
    background: var(--emsf-white);
    box-shadow: 0 8px 24px rgba(2, 11, 29, .05);
}

.emsf-news-card__image-link {
    grid-column: 1;
    grid-row: 1 / span 4;
    display: block;
    width: 100%;
    max-width: 240px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px;
}

.emsf-news-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.emsf-news-card > :not(.emsf-news-card__image-link) {
    grid-column: 2;
}
.emsf-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 18px;
    color: var(--emsf-muted);
    font-size: 13px;
}
.emsf-category-badge {
    display: inline-flex;
    padding: 5px 9px;
    border: 1px solid rgba(228,184,77,.65);
    border-radius: 999px;
    color: #7D5900;
    font-weight: 700;
    text-decoration: none;
}
.emsf-news-card h2 { margin: 16px 0 8px; font-size: clamp(18px, 1.4vw, 22px); line-height: 1.25; }
.emsf-news-card h2 a { text-decoration: none; }
.emsf-news-card h2 a:hover { color: #0A4B9A; }
.emsf-news-card__subtitle { margin: 0 0 16px; color: #465267; }
.emsf-news-card__date {
    margin: 0 0 8px;
    color: var(--emsf-muted);
    font-size: 13px;
}
.emsf-read-more { color: #8B6300; font-weight: 700; text-decoration: none; }
.emsf-notice { padding: 20px; border: 1px solid var(--emsf-border); background: var(--emsf-white); }

.emsf-breadcrumbs { margin-bottom: 22px; color: var(--emsf-muted); font-size: 14px; }
.emsf-breadcrumbs a { color: #325A91; text-decoration: none; }
.emsf-article {
    padding: clamp(22px, 4vw, 48px);
    border: 1px solid var(--emsf-border);
    border-radius: 12px;
    background: var(--emsf-white);
}
.emsf-article__meta { display: flex; flex-wrap: wrap; gap: 12px 18px; color: var(--emsf-muted); }
.emsf-article h1 { margin: 14px 0; }
.emsf-article__subtitle { color: #465267; font-size: 18px; }
.emsf-article__body {
    margin-top: 28px;
    overflow-wrap: anywhere;
    font-family: Arial, Helvetica, sans-serif;
}

.emsf-article__body * {
    font-family: inherit !important;
}
.emsf-article__body img { max-width: 100%; height: auto; }
.emsf-article__body table { display: block; max-width: 100%; overflow-x: auto; }
.emsf-back-link {
    display: inline-block;
    margin-top: 28px;
    font-family: Arial, Helvetica, sans-serif !important;
    font-weight: 700;
    text-decoration: none;
}

.emsf-pagination { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.emsf-footer,
.emsf-footer * {
    font-family: Arial, Helvetica, sans-serif !important;
}
.emsf-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid #8B6300;
    border-radius: 6px;
    background: var(--emsf-white);
    color: #8B6300;
    font-weight: 700;
    text-decoration: none;
}

.emsf-pagination__link:hover {
    background: rgba(139, 99, 0, .08);
}

.emsf-pagination__link--current {
    background: #8B6300;
    color: var(--emsf-white);
}
.emsf-footer {
    padding: 28px 0;
    background: var(--emsf-navy-1);
    color: rgba(255,255,255,.75);
}

.emsf-footer__inner {
    text-align: center;
}

.emsf-footer p {
    margin: 0;
}


    @media (max-width: 900px) {
        .emsf-news-card {
            grid-template-columns: 1fr;
            row-gap: 16px;
        }

        .emsf-news-card__image-link {
            grid-column: 1;
            grid-row: auto;
            width: 100%;
            max-width: none;
        }

        .emsf-news-card > :not(.emsf-news-card__image-link) {
            grid-column: 1;
        }
    .emsf-container--listing {
        width: min(1180px, calc(100% - 32px));
    }

    .emsf-listing-layout {
        grid-template-columns: 1fr;
    }

        .emsf-adsense-column {
            display: none;
        }
        .emsf-infeed-ad {
            display: block;
            width: 100%;
        }
    .emsf-ad-placeholder {
        min-height: 120px;
    }
  
    .emsf-header__inner { min-height: auto; flex-direction: column; align-items: flex-start; }
    .emsf-header__right { width: 100%; text-align: left; }
    .emsf-language-selector { justify-content: flex-start; }
    .emsf-brand img { max-height: 72px; }
    .emsf-nav__mobile-button {
        display: flex;
        width: 100%;
        min-height: 52px;
        align-items: center;
        justify-content: space-between;
        border: 0;
        background: transparent;
        color: var(--emsf-white);
        font-weight: 700;
        text-transform: uppercase;
    }
    .emsf-nav__list { display: none; flex-direction: column; padding-bottom: 12px; }
    .emsf-nav__list.is-open { display: flex; }
    .emsf-nav__list > li { width: 100%; }
    .emsf-nav__link { width: 100%; justify-content: space-between; padding: 0 8px; }
    .emsf-mega-menu { position: static; width: 100%; transform: none; border: 0; border-radius: 0; box-shadow: none; }
    .emsf-mega-menu__header { display: none; }
    .emsf-mega-menu__columns { display: block; padding: 6px 0 10px 14px; }
    .emsf-mega-menu__column { padding: 0; }
    .emsf-mega-menu__column + .emsf-mega-menu__column { border-left: 0; }
}
@media (min-width: 901px) {
    .emsf-news-card {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        align-items: flex-start;
    }

    .emsf-news-card__image-link {
        flex: 0 0 240px;
        width: 240px;
    }

    .emsf-news-card__content {
        flex: 1;
        min-width: 0;
    }
}
.emsf-about-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}

.emsf-about-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 20px;
}

.emsf-about-menu__button {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--emsf-border);
    border-radius: 6px;
    background: var(--emsf-white);
    color: var(--emsf-navy-1);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.emsf-about-menu__button:hover,
.emsf-about-menu__button.is-active {
    border-color: #8B6300;
    background: rgba(139, 99, 0, .08);
    color: #8B6300;
}

.emsf-about-content {
    min-width: 0;
}
.emsf-about-panel {
    display: none;
}

.emsf-about-panel.is-active {
    display: block;
}
.emsf-contact-details {
    display: grid;
    gap: 20px;
    margin-bottom: 34px;
}

    .emsf-contact-details__block {
        padding: 20px;
        border: 1px solid #D4DAE3;
        border-radius: 8px;
        background: #F7F8FA;
    }


.emsf-contact-details__block h2 {
    margin: 0 0 14px;
    color: var(--emsf-navy-1);
}

.emsf-contact-details__block p {
    margin: 0 0 9px;
}

.emsf-contact-details__block p:last-child {
    margin-bottom: 0;
}

.emsf-contact-details__timezone {
    color: var(--emsf-muted);
    font-size: 14px;
}

    .emsf-contact-form-section {
        padding: 24px;
        border: 1px solid #D4DAE3;
        border-radius: 8px;
        background: #F7F8FA;
    }


.emsf-contact-form-section > h2 {
    margin: 0 0 22px;
    color: var(--emsf-navy-1);
}

.emsf-contact-form {
    display: grid;
    gap: 18px;
}
.emsf-contact-form--honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.emsf-contact-form__field {
    display: grid;
    gap: 7px;
}

.emsf-contact-form__field label {
    color: var(--emsf-navy-1);
    font-weight: 700;
}

.emsf-contact-form__field input,
.emsf-contact-form__field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #CBD3DE;
    border-radius: 6px;
    background: var(--emsf-white);
    color: var(--emsf-navy-1);
    font: inherit;
}

.emsf-contact-form__field textarea {
    min-height: 190px;
    resize: vertical;
}

.emsf-contact-form__field input:focus,
.emsf-contact-form__field textarea:focus {
    outline: 2px solid rgba(139, 99, 0, .22);
    border-color: #8B6300;
}

.emsf-contact-form__counter {
    margin: 0;
    color: var(--emsf-muted);
    font-size: 13px;
    text-align: right;
}

.emsf-contact-form__privacy {
    margin: 0;
    color: var(--emsf-muted);
    font-size: 13px;
    line-height: 1.5;
}

.emsf-contact-form__submit {
    justify-self: start;
    padding: 12px 20px;
    border: 1px solid #8B6300;
    border-radius: 6px;
    background: #8B6300;
    color: var(--emsf-white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.emsf-contact-form__submit:hover {
    background: #704f00;
    border-color: #704f00;
}

.emsf-contact-errors,
.emsf-contact-success {
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 6px;
}

.emsf-contact-errors {
    border: 1px solid #b42318;
    background: rgba(180, 35, 24, .07);
    color: #8a1c13;
}

.emsf-contact-errors ul {
    margin: 0;
    padding-left: 20px;
}

.emsf-contact-success {
    border: 1px solid #238636;
    background: rgba(35, 134, 54, .08);
    color: #176b2b;
}

.emsf-contact-success p {
    margin-bottom: 0;
}

.emsf-contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
@media (max-width: 900px) {
    .emsf-about-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .emsf-about-menu {
        position: static;
        width: 100%;
    }

    .emsf-about-content {
        width: 100%;
        min-width: 0;
    }

    .emsf-about-layout .emsf-adsense-column {
        width: 100%;
        min-width: 0;
    }

    .emsf-about-layout .emsf-ad-placeholder {
        min-height: 250px;
    }
}
.emsf-about-mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .emsf-about-mobile-menu {
        display: block;
        position: sticky;
        top: 0;
        z-index: 30;
        width: 100%;
        padding: 12px;
        border: 1px solid var(--emsf-border);
        border-radius: 8px;
        background: var(--emsf-white);
        box-shadow: 0 4px 12px rgba(0, 20, 50, .10);
    }

    .emsf-about-mobile-menu label {
        display: block;
        margin-bottom: 7px;
        color: #8B6300;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .emsf-about-mobile-select {
        width: 100%;
        padding: 12px 38px 12px 12px;
        border: 1px solid #8B6300;
        border-radius: 6px;
        background: var(--emsf-white);
        color: var(--emsf-navy-1);
        font: inherit;
        font-weight: 700;
        cursor: pointer;
    }

    .emsf-about-mobile-select:focus {
        outline: 2px solid rgba(139, 99, 0, .22);
        border-color: #8B6300;
    }

    .emsf-about-menu {
        display: none;
    }
}