/* applicability.css – стили только для страницы применяемости */
.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-y: auto;
    flex: 1;
    padding-right: 10px;
}

.app-column {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
}

.app-column h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-blue);
    border-bottom: 2px solid var(--dark-blue);
    padding-bottom: 5px;
}

.engine-list {
    font-size: 16px;
    line-height: 1.6;
}

.engine-list strong {
    color: var(--dark-blue);
}

.model-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.vin-note {
    background: rgba(70,130,180,0.15);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    border-left: 3px solid var(--accent-blue);
}

@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .app-grid {
        grid-template-columns: 1fr;
    }
}