/* bedots_promo UI block */
.bedots-promo {
    padding: 40px 0;
    background: #fff;
}

.bedots-promo__banner {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border-radius: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
}

.bedots-promo__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.bedots-promo__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 48px 52px;
    color: #fff;
}

.bedots-promo__small-title {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.bedots-promo__big-title {
    margin: 0 0 24px;
    color: #fff;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
}

.bedots-promo__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 6px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bedots-promo__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    color: #111;
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .bedots-promo {
        padding: 28px 0;
    }

    .bedots-promo__banner {
        min-height: 320px;
    }

    .bedots-promo__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    }

    .bedots-promo__content {
        max-width: 100%;
        padding: 32px 28px;
    }
}
