.promotion-banners.seky-promotion-banners {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.promotion-banners-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.seky-promo-banner {
    width: 100%;
    position: relative;
}

/* Cap banner height while preserving 48:60 ratio so date % positioning stays aligned */
.seky-promo-banner.seky-promo-normal {
    aspect-ratio: 48 / 60;
    max-height: 600px;
    width: min(100%, calc(600px * 48 / 60));
    min-height: 0 !important;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: 0;
}

.promotion-banners-wrapper:not(.multiple-banners) .seky-promo-banner.seky-promo-normal {
    margin-left: auto;
    margin-right: auto;
}

.seky-promo-banner.seky-promo-static {
    overflow: hidden;
}

.seky-promo-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: var(--promo-date-top, 85%);
    margin: 0;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
}

.seky-promo-date.seky-promo-date-has-bg {
    padding: 0.245em 0.65em;
    background-color: var(--promo-date-bg, #000);
}

.seky-promo-date .seky-promo-date-label-text {
    display: inline-block;
}

.seky-promo-date .seky-promo-date-label-text.seky-promo-date-text-gradient {
    background-image: var(--promo-date-text-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.seky-promo-date.seky-promo-date-has-bg.seky-promo-date-bg-gradient {
    background-image: var(--promo-date-bg-gradient);
    background-color: transparent;
}

.seky-promo-date.seky-promo-date-has-text-shadow .seky-promo-date-label-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.seky-promo-date.seky-promo-date-has-bg.seky-promo-date-bg-has-shadow {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.promotion-banners-wrapper.multiple-banners .seky-promo-date {
    position: absolute !important;
}

.seky-promo-normal {
    display: flex;
    align-items: center;
    justify-content: center;
}

.seky-promo-static img {
    display: block;
    width: 100%;
    max-height: 600px;
    height: auto;
}

.seky-promo-image-mobile {
    display: none;
}

@media (max-width: 768px) {
    .seky-promo-image-desktop {
        display: none;
    }
    .seky-promo-image-mobile {
        display: block;
    }
    .seky-promo-normal {
        background-image: var(--bg-image-mobile, var(--bg-image-desktop)) !important;
    }
    .seky-promo-banner.seky-promo-mobile-date-config .seky-promo-date {
        top: var(--promo-date-top-mobile, var(--promo-date-top, 85%));
    }
}
