
.locales_card{
    display: grid;
    grid-template-columns: repeat(3 , 1fr);
    gap:10px;
}

.locales_card img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 15px;
}

.locales_card h2{
font-family: var(--fuente_cinco);
font-size:25px;
}
.locales_card .unidad{
    background: rgb(255 255 255 / 50%);
    border-radius: 20px;
    opacity: 1;
}
.locales_card .contenido{
    padding: 0 20px;

}
.locales_card  ul{
    list-style:none;
}
@media(max-width:1200px){
.locales_card{
    
    grid-template-columns: repeat(2 , 1fr);
    gap:20px;
   
}
}