.vacc26,
.vacc26 * { box-sizing: border-box; }

.vacc26 {
    position: fixed;
    inset: 0;
    z-index: 4206969;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacc26-dim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

/* ── Modal ── */
.vacc26-modal {
    position: relative;
    z-index: 420;
    width: min(90vw, 567px);
    aspect-ratio: 567 / 478;
    overflow: hidden;
    font-family: 'Mulish', Arial, sans-serif;
}

.vacc26-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.vacc26-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 25%, rgba(0,0,0,1) 100%),
        radial-gradient(ellipse at 72% 30%, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 70%, transparent 100%);
    z-index: 1;
}

/* ── Close ── */
.vacc26-x {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 5;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: block;
}
.vacc26-x img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.vacc26-x .vacc26-x-hover { display: none; }
.vacc26-x:hover .vacc26-x-hover { display: block; }
.vacc26-x:hover .vacc26-x-default { display: none; }

/* ── Content ── */
.vacc26-body {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: clamp(22px, 4%, 42px) clamp(28px, 5.5%, 52px);
}

/* Row 1: headline — right-aligned */
.vacc26-headline {
    align-self: flex-end;
    text-align: right;
    line-height: 1;
}

.vacc26-h1 {
    font-size: clamp(14px, 3.1vw, 35px);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

.vacc26-h2 {
    font-size: clamp(16px, 3.5vw, 40px);
    font-weight: 900;
    color: #ED1B34;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* Row 2: tagline + body copy */
.vacc26-mid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 45%;
}

.vacc26-tagline {
    font-size: clamp(9px, 1.8vw, 21px);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.12em;
    margin: 0;
    line-height: 1.4;
}

.vacc26-copy {
    font-size: clamp(9px, 1.1vw, 12px);
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.7;
    max-width: 90%;
    font-weight: 100;
}

/* Row 3: dates + CTA */
.vacc26-bottom {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    margin-top: 30px;
}

.vacc26-dates {
    border-left: 8px solid #ED1B34;
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-self: stretch;
}

.vacc26-dates p {
    margin: 0;
    font-size: clamp(10px, 1.1vw, 13px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.19em;
}

.vacc26-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ED1B34;
    color: #fff;
    font-family: 'Mulish', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(11px, 4.4vw, 25px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 5px 10px;
}

.vacc26-cta:hover {
    background: #c2152a;
    color: #fff;
    text-decoration: none;
}

/* ── Scale ── */
@media (min-width: 601px) and (max-width: 960px) {
    .vacc26-modal {
        width: 90vw;
        aspect-ratio: 567 / 478;
        max-height: 90vh;
    }
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .vacc26-modal {
        width: 92vw;
        aspect-ratio: unset;
        min-height: 360px;
        max-height: 88vh;
    }

    .vacc26-overlay {
        background: linear-gradient(to bottom,
            rgba(0,0,0,0.80) 0%,
            rgba(0,0,0,0.50) 45%,
            rgba(0,0,0,0.72) 100%);
    }

    .vacc26-body {
        padding: 16px 16px;
    }

    .vacc26-h1 { font-size: 20px; }
    .vacc26-h2 { font-size: 24px; }

    .vacc26-mid {
        padding-left: 0;
    }

    .vacc26-tagline {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .vacc26-copy {
        font-size: 10px;
        max-width: 100%;
    }

    .vacc26-bottom {
        align-self: flex-end;
    }

    .vacc26-dates p {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .vacc26-cta {
        font-size: 11px;
        padding: 8px 18px;
    }
}
