.jumbo__block {
    --jumbo-bg-desktop: none;
    --jumbo-bg-mobile: var(--jumbo-bg-desktop);
    --jumbo-text: #ffffff;
    --jumbo-primary: #cf1827;
    --jumbo-primary-hover: #e12635;
    --jumbo-secondary: #ffc928;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    color: var(--jumbo-text);
    background-color: #04101c;
    background-image:
        var(--jumbo-bg-desktop);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
    min-height: 80vh;
}

.jumbo__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.24) 100%);
    pointer-events: none;
}

.jumbo__media {
    display: none;
}

.jumbo__box {
    position: relative;
    z-index: 1;
    min-height: 600px;
    min-height: 82vh;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 56px;
}

.jumbo__content {
    width: min(100%, 62%);
    text-align: left;
}

.jumbo__title {
    margin: 0;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #ffffff !important;
    text-wrap: balance;
}

.jumbo__description {
    max-width: 650px;
    margin-top: 28px;
    font-size: clamp(1.1rem, 1.2vw, 1.4rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.jumbo__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.jumbo__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 58px;
    padding: 16px 28px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.jumbo__button:hover,
.jumbo__button:focus-visible {
    transform: translateY(-2px);
}

.jumbo__button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.jumbo__button--primary {
    background-color: var(--jumbo-primary);
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(207, 24, 39, 0.22);
}

.jumbo__button--primary:hover,
.jumbo__button--primary:focus-visible {
    background-color: var(--jumbo-primary-hover);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(207, 24, 39, 0.3);
}

.jumbo__button--secondary {
    background-color: rgba(2, 8, 15, 0.48);
    border-color: rgba(255, 201, 40, 0.88);
    color: var(--jumbo-secondary);
    backdrop-filter: blur(2px);
}

.jumbo__button--secondary:hover,
.jumbo__button--secondary:focus-visible {
    background-color: var(--jumbo-secondary);
    border-color: var(--jumbo-secondary);
    color: #09131d;
    box-shadow: 0 18px 36px rgba(255, 201, 40, 0.18);
}

@media (max-width: 991px) {
    .jumbo__block {
        background-position: center center;
        background-image:
            linear-gradient(180deg, rgba(4, 10, 19, 0.8) 0%, rgba(4, 10, 19, 0.78) 38%, rgba(4, 10, 19, 0.9) 100%),
            var(--jumbo-bg-desktop);
    }

    .jumbo__box {
        min-height: 520px;
        padding: 72px 24px;
    }

    .jumbo__content {
        width: min(100%, 72%);
    }
}

@media (max-width: 767px) {
    .jumbo__block {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        background-image: none;
        background-color: #04101c;
    }

    .jumbo__overlay {
        display: none;
    }

    .jumbo__media {
        display: block;
        min-height: 260px;
        background-image:
            linear-gradient(180deg, rgba(4, 10, 19, 0.08) 0%, rgba(4, 10, 19, 0.16) 58%, rgba(4, 10, 19, 0.48) 100%),
            var(--jumbo-bg-mobile);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }

    .jumbo__box {
        min-height: 0;
        padding: 28px 18px 48px;
    }

    .jumbo__content {
        width: 100%;
    }

    .jumbo__title {
        font-size: clamp(2.3rem, 10vw, 3.5rem);
        line-height: 0.98;
        text-align: center;
    }

    .jumbo__description {
        margin-right: auto;
        margin-left: auto;
        margin-top: 20px;
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .jumbo__actions {
        gap: 14px;
        margin-top: 28px;
    }

    .jumbo__button {
        width: 100%;
        min-width: 0;
        min-height: 54px;
        padding: 15px 20px;
    }
}
