/* Стили для каталога городов */

.city-group {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 2rem;
}

.city-letter {
    font-size: 2rem;
    font-weight: bold;
    color: #495057;
    margin-bottom: 1rem;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.city-item {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.city-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.city-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.city-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.city-count {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .city-letter {
        font-size: 1.5rem;
    }
    
    .city-name {
        font-size: 1rem;
    }
}
