/* bedots_collection_main UI block */
.bedots-collection-main {
    padding: 40px 0;
    background: #fff;
}

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

.bedots-collection-main__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0) 75%);
    pointer-events: none;
}

.bedots-collection-main__content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 48px 56px;
    color: #fff;
}

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

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

.bedots-collection-main__description {
    margin: 0 0 28px;
    max-width: 460px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.bedots-collection-main__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;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

    .bedots-collection-main__banner {
        min-height: 400px;
        align-items: flex-end;
    }

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

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