.vbp-box {
    margin: 18px 0 24px;
    border-radius: 22px;
    overflow: hidden;
    background: #eef2f7;
    border: 1px solid #d6dae1;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.vbp-box__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(180deg, #fafafa 0%, #eceff3 100%);
    border-bottom: 1px solid #d6dae1;
}

.vbp-box__controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
}

.vbp-box__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #c0c8d4;
}

.vbp-box__address {
    min-width: 0;
    flex: 1 1 auto;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d8dee8;
    color: #475569;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbp-box__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.76);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.vbp-box__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 24px 18px;
    background:
        radial-gradient(circle at top right, rgba(148, 163, 184, 0.22), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.vbp-box__badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.vbp-box__title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.15;
    color: #111827;
}

.vbp-box__image {
    display: block;
    width: min(100%, 560px);
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.14);
    object-fit: cover;
}

.vbp-box__preview {
    max-width: 580px;
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.55;
}

.vbp-box__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    background: #f8fafc;
}

.vbp-box__note {
    margin: 0;
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
}

.vbp-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.vbp-box:hover .vbp-box__button,
.vbp-box:focus-within .vbp-box__button {
    background: #000000;
}

@media (max-width: 640px) {
    .vbp-box {
        border-radius: 18px;
    }

    .vbp-box__header {
        flex-wrap: wrap;
    }

    .vbp-box__address {
        order: 3;
        width: 100%;
    }

    .vbp-box__body {
        min-height: 0 !important;
        padding: 20px 16px;
    }

    .vbp-box__title {
        font-size: 22px;
    }

    .vbp-box__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .vbp-box__button {
        width: 100%;
    }
}
