/* Plano con recuadro negro */
.map-img {
    width: 100%;
    height: 400px;
    /* misma altura que el mapa */
    object-fit: cover;
    border: 3px solid black;
    /* recuadro negro */
    border-radius: 6px;
    display: block;
}

/* Google Maps con recuadro negro */
.map-frame {
    width: 100%;
    height: 400px;
    /* misma altura que el plano */
    border: 3px solid black;
    border-radius: 6px;
    display: block;
}

/* Contenido de cada card */
.card-content {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Títulos clickeables */
.map-title-link {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.map-title-link:hover {
    color: blue;
    text-decoration: underline;
}

/* Subtítulos */
.map-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}

/* Responsive */
@media screen and (max-width: 600px) {

    .map-img,
    .map-frame {
        height: 250px;
    }

    .map-title-link {
        font-size: 1.2rem;
    }

    .map-subtitle {
        font-size: 0.9rem;
    }

    .card-content {
        min-height: auto;
    }
}