.auto036-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);
    gap: 30px;
}

.auto036-card {
    background: #FF6B35;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: .25s ease;
    text-align: center;
}

.auto036-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.auto036-cover {
    width: 100%;
    object-fit: cover;
}

.auto036-title {
    font-size: 18px;
    margin: 15px 0 5px;
    color: white;
    margin-top: 10px !important;
}

.auto036-button {
    display: inline-block;
    margin-top: 10px;
    background: #000000;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: .2s;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 15px !important;
}

.auto036-button:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #FF6B35;
}

@media (max-width: 1024px) {
    .auto036-grid {
        --cols: 2 !important;
    }
}

@media (max-width: 600px) {
    .auto036-grid {
        --cols: 1 !important;
    }
}
