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

.bedots-collections__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

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

.bedots-collections__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
}

.bedots-collections__content {
    position: relative;
    z-index: 2;
    padding: 36px 40px 40px;
    color: #fff;
}

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

.bedots-collections__title {
    margin: 0 0 22px;
    color: #fff;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
}

.bedots-collections__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    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-collections__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-collections {
        padding: 28px 0;
    }

    .bedots-collections__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bedots-collections__card {
        min-height: 440px;
    }

    .bedots-collections__content {
        padding: 28px 26px 32px;
    }
}
