/* OXBikers Motorcyclist Support V14 */
.ox-rider-support {
    padding: 92px 0;
    background:
        radial-gradient(circle at 100% 0%, rgba(244,123,32,.11), transparent 28%),
        #f5f5f2;
}

.ox-rider-support-shell {
    display: grid;
    grid-template-columns: minmax(320px, .92fr) minmax(0, 1.28fr);
    min-height: 610px;
    overflow: hidden;
    border: 1px solid #e2e2dd;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(18, 20, 24, .10);
}

.ox-rider-support-visual {
    position: relative;
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(20,20,20,.92), rgba(20,20,20,.58)),
        url('../images/inner-banner.jpg') center/cover no-repeat;
}

.ox-rider-support-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 65%, rgba(255,255,255,.08)),
        linear-gradient(180deg, transparent 58%, rgba(0,0,0,.55));
}

.ox-rider-support-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    background: rgba(17,19,22,.78);
    color: #fff;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

.ox-rider-support-badge i {
    color: var(--ox-orange, #f47b20);
}

.ox-rider-support-content {
    padding: 58px 58px 48px;
}

.ox-rider-support-content h2 {
    max-width: 700px;
    margin: 0 0 17px;
    color: #17191c;
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.08;
}

.ox-rider-support-intro {
    max-width: 760px;
    margin: 0 0 31px;
    color: #60656c;
    font-size: 17px;
    line-height: 1.75;
}

.ox-rider-support-benefits {
    display: grid;
    gap: 12px;
}

.ox-rider-support-benefits article {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 17px 18px;
    border: 1px solid #e5e5e1;
    border-radius: 13px;
    background: #fbfbf9;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.ox-rider-support-benefits article:hover {
    transform: translateX(4px);
    border-color: rgba(244,123,32,.55);
    background: #fff;
}

.ox-rider-support-benefits article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 12px;
    background: rgba(244,123,32,.12);
    color: var(--ox-orange, #f47b20);
    font-size: 18px;
}

.ox-rider-support-benefits h3 {
    margin: 0 0 5px;
    color: #1c1e21;
    font-size: 17px;
}

.ox-rider-support-benefits p {
    margin: 0;
    color: #6b7077;
    font-size: 14px;
    line-height: 1.6;
}

.ox-rider-support-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.ox-rider-support-actions .ox-btn {
    gap: 9px;
}

.ox-support-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #222 !important;
    font-weight: 800;
    text-decoration: none !important;
}

.ox-support-text-link i {
    color: var(--ox-orange, #f47b20);
    transition: transform .2s ease;
}

.ox-support-text-link:hover i {
    transform: translateX(4px);
}

.ox-rider-support-note {
    display: flex;
    gap: 8px;
    margin-top: 22px;
    color: #7a7f85;
    line-height: 1.5;
}

.ox-rider-support-note i {
    margin-top: 3px;
    color: var(--ox-orange, #f47b20);
}

@media (max-width: 991px) {
    .ox-rider-support-shell {
        grid-template-columns: 1fr;
    }

    .ox-rider-support-visual {
        min-height: 390px;
    }

    .ox-rider-support-content {
        padding: 44px 40px;
    }
}

@media (max-width: 640px) {
    .ox-rider-support {
        padding: 58px 0;
    }

    .ox-rider-support-shell {
        min-height: 0;
        border-radius: 16px;
    }

    .ox-rider-support-visual {
        min-height: 260px;
    }

    .ox-rider-support-badge {
        left: 18px;
        bottom: 18px;
    }

    .ox-rider-support-content {
        padding: 32px 22px;
    }

    .ox-rider-support-content h2 {
        font-size: 31px;
    }

    .ox-rider-support-benefits article {
        grid-template-columns: 42px 1fr;
        padding: 15px;
    }

    .ox-rider-support-benefits article > span {
        width: 42px;
        height: 42px;
    }

    .ox-rider-support-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .ox-rider-support-actions .ox-btn {
        width: 100%;
    }

    .ox-support-text-link {
        justify-content: center;
    }
}
