#contenedor-caceres{
    grid-template-columns: none;
}
#contenedor-actividades{
    margin-left: 16%;
}
.comarcasProvincia{
    width:33%;
}
.falsos-titulos{
    font-size: 1.17em;
    font-weight: bold;
}
#bloque-enlaces .grid-container {
    grid-template-columns: repeat(1, 1fr);
}
.acordeon-lugar .acordeon {
    margin: 10px 5px;
}

/* Tarjeta unificada estilo piscinas/rutas */
.lugar-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    transition: transform .2s ease;
    display: flex;
    flex-direction: column;
}

.lugar-card:hover {
    transform: scale(1.02);
}

.lugar-card-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.lugar-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.caption {
    padding: 16px;
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media (min-width: 1200px) {
    #bloque-enlaces .enlaces{
        height: auto;
    }
    .enlaces .imagen-pequena img {
        width: 100%;
        height: 100%;
        cursor: pointer;
        border: 1px solid transparent;
        border-radius: 15px;
    }
    .enlaces .imagen-pequena:first-child {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }
    .enlaces .imagen-pequena:first-child img{
        height: 100%;
        width: 100%;
        border-left
    }
    .enlaces .imagen-pequena:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .enlaces .imagen-pequena:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    #bloque-enlaces .grid-container{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-content: center;
    }
}

/* Estilos para móviles medianos */
@media only screen and (max-width: 768px) {
    .caption {
        font-size: 1.5rem;
        padding-bottom: 15px;
        max-width: 90%;
    }
    .lugar-container, .piscinas-container {
        padding: 3%;
    }
}