.lsb-promobox1 {
    position: relative;
    width: 100vw;
    min-height: 620px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsb-promobox1-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.lsb-promobox1-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.20) 0%,
            rgba(255,255,255,0.10) 45%,
            rgba(255,255,255,0.00) 100%
        );
    z-index: 2;
}

.lsb-promobox1-content {
    position: relative;
    z-index: 3;
    width: min(1180px, 92%);
    padding: 80px 20px;
    color: #111111;
}

.lsb-promobox1-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border: 1px solid #c9a646;
    color: #111111;
    background: rgba(255,255,255,0.75);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lsb-promobox1-content h2 {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(36px, 5vw, 74px);
    line-height: 1.05;
    font-weight: 600;
    color: #111111;
}

.lsb-promobox1-content h2::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin-top: 22px;
    background: #c9a646;
}

.lsb-promobox1-content p {
    max-width: 740px;
    margin: 0 0 34px;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.75;
    color: #222222;
}

.lsb-promobox1-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 34px;
    background: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.lsb-promobox1-btn:hover {
    background: #c9a646;
    border-color: #c9a646;
    color: #111111;
}

@media (max-width: 768px) {
    .lsb-promobox1 {
        min-height: 560px;
    }

    .lsb-promobox1-overlay {
        background: transparent;
    }

    .lsb-promobox1-content {
        width: 92%;
        padding: 60px 0;
    }

    .lsb-promobox1-content p {
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .lsb-promobox1 {
        min-height: 520px;
    }

    .lsb-promobox1-label {
        font-size: 11px;
        padding: 7px 14px;
    }

    .lsb-promobox1-btn {
        width: 100%;
    }
}