.city-cards-container {
    display: flex;
    flex-wrap: wrap;
	gap: 20px;
}

.city-card {
    flex: 1 1 calc(33.33% - 20px);
    /* margin-right: 5px; */
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: white;
    text-decoration: none;
    position: relative;
    border-radius: 8px;
    box-sizing: border-box;
    transition: transform 0.3s;
}

.city-card:hover {
    transform: scale(1.05);
}

.city-card-title {
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para mayor legibilidad */
    padding: 10px;
    width: 100%; /* Ancho completo para el texto */
    text-align: center; /* Centrar el texto */
    color: white;
}

@media (max-width: 768px) {
    .city-card {
        flex: 1 1 100%;
        height: 250px;
    }
}





