/* Стили для меню навигации по маршрутам Калининградской области */

.routes-container {
    margin: 20px 0;
}

.routes-category {
    margin-bottom: 40px;
}

.routes-category h2 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.routes-category .routes-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    background: transparent;
    padding: 0;
}

.routes-category .routes-links a {
    background: #f1f5f9;
    padding: 8px 16px;
    border-radius: 30px;
    color: #1e3a8a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
}

.routes-category .routes-links a:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

@media (max-width: 720px) {
    .routes-category h2 {
        font-size: 20px;
    }
    .routes-category .routes-links a {
        font-size: 12px;
        padding: 6px 12px;
    }
}