/* Pre-Festive Bonanza strip banner — TEMPORARY campaign asset.
   Everything for this banner lives in assets/pre-festive-strip/.
   Removal: delete this folder + the single include in includes/header.php. */

.pf-strip {
    display: block;
    width: 100%;
    line-height: 0;
    background-color: #0b2a6b;
}

.pf-strip__img {
    display: block;
    width: 100%;
    height: auto;
    /* Mobile / tablet art is 1080x120 — reserve the box so the strip
       does not shift the header while the image is still loading. */
    aspect-ratio: 1080 / 120;
}

/* Desktop art is 1920x100 and is swapped in by <picture> at the same
   breakpoint the header uses for its desktop layout. */
@media (min-width: 992px) {
    .pf-strip__img {
        aspect-ratio: 1920 / 100;
    }
}
