.rallyon-drivers{
    display:flex;
    flex-direction:column;
    gap:18px;
    margin:30px 0;
}

.rallyon-driver-card{
    display:flex;
    align-items:center;
    background:#fff;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    overflow:hidden;
    transition:.2s;
}

.rallyon-driver-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.rallyon-driver-bar{
    width:8px;
    align-self:stretch;
    background:#d30000;
    flex-shrink:0;
}

.rallyon-driver-name{
    flex:0 0 300px;
    padding:26px 28px;
    font-size:22px;
    font-weight:700;
    line-height:1.3;
    color:#111;
}

.rallyon-driver-vehicle{
    flex:1;
    display:flex;
    align-items:center;
    gap:18px;
    padding-right:30px;
    font-size:20px;
    color:#333;
}

.rallyon-brand-logo{
    width:34px;
    height:34px;
    object-fit:contain;
    flex-shrink:0;
}

.rallyon-driver-license{
    flex:0 0 170px;
    text-align:center;
    font-size:18px;
    font-weight:500;
    color:#555;
}

.rallyon-driver-gallery{
    flex:0 0 170px;
    display:flex;
    justify-content:center;
    padding-right:20px;
}

.rallyon-driver-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:135px;
    height:42px;
    border:2px solid #d30000;
    border-radius:8px;
    background:#d30000;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.rallyon-driver-button:hover{
    background:#b60000;
    border-color:#b60000;
    color:#fff;
}

@media(max-width:900px){

    .rallyon-driver-card{
        flex-direction:column;
        align-items:stretch;
    }

    .rallyon-driver-bar{
        width:100%;
        height:8px;
    }

    .rallyon-driver-name,
    .rallyon-driver-vehicle,
    .rallyon-driver-license,
    .rallyon-driver-gallery{
        width:100%;
        flex:auto;
        padding:18px 22px;
        text-align:left;
    }

    .rallyon-driver-gallery{
        padding-top:0;
    }

    .rallyon-driver-button{
        width:100%;
    }

}