.compatible-alternators-wrapper{
    margin:30px 0;
}

.ca-title{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:10px;
}

.ca-description{
    text-align:center;
    color:#666;
    margin-bottom:25px;
    line-height:1.9;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
}

.compatible-alternators-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(180px, 220px));
    justify-content:start;
    gap:20px;
    direction:rtl;
}

.compatible-alternator-card{
    width:200px;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    overflow:hidden;
    transition:.3s;
}

.compatible-alternator-card:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.ca-image{
    display:block;
    padding:10px;
}

.ca-image img{
    width:100%;
    height:130px;
    object-fit:contain;
    display:block;
}

.ca-content{
    padding:12px;
    text-align:right;
}

.ca-content h3{
    margin:0 0 10px;
    font-size:15px;
    line-height:1.6;
}

.ca-content h3 a{
    color:#222;
    text-decoration:none;
}

.ca-badge{
    display:inline-block;
    padding:4px 10px;
    background:#f5f5f5;
    border-radius:30px;
    margin-bottom:10px;
    font-size:11px;
}

.ca-button{
    display:block;
    background:#0057b8;
    color:#fff !important;
    text-decoration:none;
    padding:8px;
    border-radius:6px;
    font-weight:600;
    font-size:13px;
    transition:.3s;
    text-align:center;
}

.ca-button:hover{
    opacity:.9;
}

@media(max-width:768px){

.compatible-alternators-grid{
        grid-template-columns:repeat(2, minmax(150px, 1fr));
    }

    .ca-image img{
        height:110px;
    }

    .ca-title{
        font-size:22px;
    }
}