.brand-auto {
	margin-bottom: 50px;
}
.car-brand-title {
    margin: 0;
    font-size: 14px !important;
    font-weight: 500;
    color: #222;
    line-height: 1.3;
    text-align: center;
}

.car-brands-grid-simple {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    margin: 30px 0;
}
.car-brand-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border: 1px solid #eee;
	border-radius: 5px;
	transition: all 0.2s ease;
}

.car-brand-item:hover {
	
    color: white !important;
    border-color: red;
    transform: translateY(-3px);
}

.car-brand-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.car-brand-item span {
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

/* Планшеты */
@media (max-width: 1024px) {
    .car-brands-grid-simple {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Смартфоны */
@media (max-width: 768px) {
    .car-brands-grid-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}
