/* --- css/fleet.css --- */
.fleet-grid { 
    display: grid; 
    /* ИЗМЕНЕНО: auto-fit заменен на auto-fill */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 30px; 
}

.filter-btns { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 25px; background: transparent;
    border: 1px solid var(--text-muted); color: var(--text-muted);
    cursor: pointer; transition: var(--transition);
    text-transform: uppercase; font-weight: 600;
}
.filter-btn.active, .filter-btn:hover {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.3);
}

.car-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 145, 0, 0.1);
    overflow: hidden;
}
.car-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.car-card:hover img { transform: scale(1.05); }
.car-info { padding: 20px; }

/* НОВЫЙ СТИЛЬ ДЛЯ СТАТИСТИКИ (СТОЛБИКОМ) */
.car-stats {
    display: flex; /* Используем flex для расположения строк */
    flex-direction: column; /* Располагаем элементы вертикально */
    margin-top: 15px; padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    font-size: 0.9rem;
}
.stat-item {
    display: flex;
    justify-content: space-between; /* Выравнивает название и значение по краям */
    margin-bottom: 5px;
}
.stat-item strong {
    color: var(--accent-primary); /* Акцент на название поля */
    font-weight: 600;
}
.stat-item span {
    color: var(--text-muted); /* Оттенок для значения */
}