.autosconto-ai-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
gap:20px;
}

.autosconto-card{
background:#fff;
border-radius:14px;
overflow:hidden;
box-shadow:0 4px 14px rgba(0,0,0,.08);
transition:.25s;
}

.autosconto-card:hover{

    transform:translateY(-5px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.12);

}

.autosconto-card img{
width:100%;
height:190px;
object-fit:cover;
display:block;
}

.autosconto-card-body{
padding:15px;
}

.autosconto-card h3{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin: 0 0 16px;
    height: 28px;
}

.autosconto-price{
font-size:28px;
font-weight:700;
margin-bottom:15px;
}

.autosconto-specs{

    font-size:14px;

    color:#666;

    line-height:1.6;

}

.autosconto-title{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}

.autosconto-price-wrapper{
    margin:12px 0;
}

.autosconto-price-old{
    font-size:16px;
    color:#8a8a8a;
    text-decoration:line-through;
    margin-bottom:4px;
}

.autosconto-price{

    font-size:20px;
    font-weight:800;
    color:#111;
    margin:12px 0;

}

.autosconto-price{

    border-bottom:1px solid #ececec;

    padding-bottom:14px;

    margin-bottom:14px;

}

.autosconto-card{
    position:relative;
}

.autosconto-badge{

    position:absolute;

    top:12px;

    left:12px;

    background:#ff4d14;

    color:#fff;

    font-size:13px;

    font-weight:700;

    padding:7px 14px;

    border-radius:6px;

    text-transform:uppercase;

    z-index:50;

    letter-spacing:.4px;

    box-shadow:0 4px 12px rgba(0,0,0,.18);

}

.autosconto-badge.available{

    background:#18a957;

}

.autosconto-badge.sold{

    background:#ff4d14;

}

.autosconto-badge.available{
    background:#18a957;
}



.autosconto-badge.sold{
    background:#d62828;
}

@media(max-width:1024px){

    .autosconto-ai-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .autosconto-ai-grid{

        grid-template-columns:1fr;

        gap:16px;

    }

    .autosconto-card img{

        height:220px;

    }

}

.autosconto-card-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.autosconto-card-link:hover{
    color:inherit;
    text-decoration:none;
}

.autosconto-card-link .autosconto-card{
    transition:.2s ease;
    cursor:pointer;
}

.autosconto-card-link:hover .autosconto-card{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,0,0,.12);
}

.autosconto-card h3{

    font-size:18px;
    line-height:1.4;
    margin:0 0 12px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

.autosconto-available,
.autosconto-sold{
    margin:5% 0;
}

.autosconto-ai-content{
    width:100%;
    max-width:none;
    margin:70px 0;
}

.autosconto-ai-content h2{
    margin:60px 0 20px;
}

.autosconto-ai-content h3{
    margin-top:15px;
}

.autosconto-ai-content p{
    max-width:calc(100% - 20px);
    margin:0 10px 18px;
    line-height:1.8;
    font-size:19px;
}

.autosconto-ai-wrapper{
    max-width:1380px;
    margin:0 auto;
    padding:0 30px;
    box-sizing:border-box;
}

.autosconto-ai-wrapper h2{

    font-size:30px;
    font-weight:700;
    margin-top:70px;
    margin-bottom:25px;

}

.autosconto-available,
.autosconto-sold,
.autosconto-ai-content{
    max-width:1380px;
    margin:10px auto;
}

.autosconto-ai-button a,
.autosconto-ai-button-bottom a{

    display:inline-block;
    background:#f36b21;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    transition:.25s;
}

.autosconto-ai-button a:hover,
.autosconto-ai-button-bottom a:hover{

    background:#db5b17;
    transform:translateY(-2px);

}

.autosconto-ai-intro{
    
    margin:0 0 50px;
}

.autosconto-ai-intro p{
    margin:0 0 18px;
    line-height:1.8;
    font-size:20px;
}

.autosconto-ai-header{
    margin-top:60px;
}

..autosconto-faq{
    margin:70px 0;
}

.autosconto-faq h2{
    font-size:42px;
    margin-bottom:30px;
}

.autosconto-faq-item{
    border-bottom:1px solid #e5e5e5;
}

.autosconto-faq-question{
    width:100%;
    background:#fff;
    border:0;
    cursor:pointer;
    text-align:left;
    font-size:21px;
    font-weight:600;
    padding:24px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.autosconto-faq-question:hover{
    color:#ff6b00;
}

.faq-arrow{
    font-size:32px;
    font-weight:300;
    transition:.25s;
    flex-shrink:0;
    margin-left:20px;
}

.autosconto-faq-answer{
    display:none;
    padding:0 0 25px;
    line-height:1.9;
    font-size:18px;
    color:#555;
}

.autosconto-faq-item.active .autosconto-faq-answer{
    display:block;
}

.autosconto-faq-item.active .faq-arrow{
    transform:rotate(45deg);
}