.no-js-banner {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    overflow: auto;
    padding: clamp(16px, 3vw, 48px);
    background: #f2f2f2;
    color: #111827;
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.no-js-banner__card {
    position: relative;
    isolation: isolate;
    display: grid;
    width: min(100%, 1180px);
    min-height: min(620px, calc(100vh - 32px));
    overflow: hidden;
    border: 1px solid rgba(0, 54, 119, 0.12);
    border-radius: clamp(24px, 3vw, 40px);
    background: #fbfaf6;
    box-shadow: 0 28px 70px rgba(0, 54, 119, 0.18);
}

.no-js-banner__card::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(251, 250, 246, 0.99) 0%, rgba(251, 250, 246, 0.96) 34%, rgba(251, 250, 246, 0.66) 55%, rgba(251, 250, 246, 0.08) 78%);
    content: "";
    pointer-events: none;
}

.no-js-banner__art {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.no-js-banner__content {
    position: relative;
    z-index: 2;
    align-self: center;
    width: min(100%, 540px);
    padding: clamp(32px, 6vw, 88px);
}

.no-js-banner__eyebrow {
    margin: 0 0 20px;
    color: #003677;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.no-js-banner__title {
    max-width: 510px;
    margin: 0;
    color: #003677;
    font-size: clamp(34px, 4.2vw, 60px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.99;
}

.no-js-banner__description {
    max-width: 430px;
    margin: 24px 0 0;
    color: #42516a;
    font-size: clamp(16px, 1.55vw, 19px);
    font-weight: 450;
    line-height: 1.5;
}

@media (max-width: 720px) {
    .no-js-banner {
        align-items: start;
        padding: 16px;
    }

    .no-js-banner__card {
        min-height: calc(100svh - 32px);
        border-radius: 24px;
    }

    .no-js-banner__card::after {
        background: linear-gradient(180deg, rgba(251, 250, 246, 0.99) 0%, rgba(251, 250, 246, 0.94) 46%, rgba(251, 250, 246, 0.42) 100%);
    }

    .no-js-banner__art {
        object-position: 68% center;
    }

    .no-js-banner__content {
        align-self: start;
        padding: clamp(32px, 10vw, 56px) clamp(24px, 8vw, 48px);
    }

    .no-js-banner__title {
        font-size: clamp(36px, 11vw, 50px);
    }
}
