.bgs-easter-offer,
.bgs-easter-offer * {
    box-sizing: border-box;
}

.bgs-easter-offer {
    background: var(--bgs-easter-section-bg, #fff);
    padding-block: var(--bgs-easter-section-padding, 40px);
}

.bgs-easter-offer__banner {
    position: relative;
    width: min(calc(100% - 32px), var(--bgs-easter-max, 1200px));
    min-height: var(--bgs-easter-height, 420px);
    margin-inline: auto;
    overflow: hidden;
    border-radius: var(--bgs-easter-radius, 4px);
}

.bgs-easter-offer__image,
.bgs-easter-offer__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bgs-easter-offer__image {
    display: block;
    object-fit: cover;
}

.bgs-easter-offer__overlay {
    z-index: 1;
    background: var(--bgs-easter-overlay, #000);
    opacity: var(--bgs-easter-overlay-opacity, .15);
    pointer-events: none;
}

.bgs-easter-offer__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: min(90%, var(--bgs-easter-content-width, 700px));
    text-align: center;
    transform: translate(-50%, -50%);
}

.bgs-easter-offer__subtitle {
    margin: 0 0 10px;
    color: var(--bgs-easter-subtitle, #fff);
    font-size: .85rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bgs-easter-offer__headline {
    margin: 0 0 25px;
    color: var(--bgs-easter-headline, #fff);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    text-shadow: 0 2px 10px rgb(0 0 0 / .2);
}

.bgs-easter-offer__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border-radius: var(--bgs-easter-button-radius, 4px);
    background: var(--bgs-easter-button-bg, #fff);
    color: var(--bgs-easter-button-text, #1a1a1a);
    font-size: .85rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: box-shadow .2s ease, transform .2s ease;
}

.bgs-easter-offer__button:hover {
    color: var(--bgs-easter-button-text, #1a1a1a);
    box-shadow: 0 4px 15px rgb(0 0 0 / .2);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .bgs-easter-offer__banner {
        width: min(calc(100% - 32px), var(--bgs-easter-max, 1200px));
        min-height: min(var(--bgs-easter-height, 420px), 330px);
    }

    .bgs-easter-offer__subtitle {
        font-size: .7rem;
        letter-spacing: 1px;
    }

    .bgs-easter-offer__headline {
        font-size: clamp(1.75rem, 9vw, 2.2rem);
    }
}

@media (max-width: 390px) {
    .bgs-easter-offer__banner {
        min-height: min(var(--bgs-easter-height, 420px), 280px);
    }

    .bgs-easter-offer__content {
        width: 92%;
    }

    .bgs-easter-offer__subtitle {
        font-size: .62rem;
    }

    .bgs-easter-offer__headline {
        margin-bottom: 20px;
        font-size: 1.65rem;
    }
}
