section .contenedorDestacados {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
}
section .contenedorDestacados .listadoDePublicaciones {
    display: flex;
    flex-wrap: wrap;
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    align-items: center;
    justify-content: center; 
    gap: 5px;
    margin-top: 15px;
}
section .contenedorDestacados .imagenPorDefecto {
    background-image: url('../images/default_196x309.jpg');
}
section .contenedorDestacados .imagenPublicarAqui {
    background-image: url('../images/publication_196x309.jpg');
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado  {
    width: 190px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: 190px 300px;
    background-position: 0 0;
    border-radius: 8px;
    border: 1px solid var(--color-de-fondo-04);
    cursor: pointer;
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a {
    display: block;
    width: 100%;
    height: 100%;
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a .conexion {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--color-fondo-fondo-05);
    margin-top: 10px;
    margin-left: 10px;
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a .conectado {
    animation: efectOnLine 3s infinite;
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a .desconectado {
    animation: efectOffLine 3s infinite;
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a .favorito {
    width: 30px;
    height: 30px;
    margin-left: calc(100% - 30px - 10px);
    margin-top: 10px;
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: 0 0;   
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a .activado {
    background-image: url('../images/favorite_on.png');
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado a .desactivado {
    background-image: url('../images/favorite_off.png');
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado .nombre {
    padding-top: 100%;
}
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado .nombre,
section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado .zona {
    width: 100%;
    text-align: center;
    line-height: 30px;
    text-shadow: 
        -1px -1px 0 #000,  
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000;
}
/* Animations */
@keyframes efectOnLine {
    0% {
        background-color: green;
    }
    25% {
        background-color: rgb(110, 240, 110);
    }
    50% {
        background-color: lightgreen;
    } 
    75% {
        background-color: rgb(110, 240, 110);
    }
    100% {
        background-color: green;
    }
}
@keyframes efectOffLine {
    0% {
        background-color: rgb(255, 0, 0);
    }
    25% {
        background-color: rgb(252, 94, 94);
    }
    50% {
        background-color: rgb(238, 144, 144);
    } 
    75% {
        background-color: rgb(252, 94, 94);
    }
    100% {
        background-color: rgb(255, 0, 0);
    }
}
@media (max-width:585px) {
    section .contenedorDestacados .listadoDePublicaciones .contenedorDestacado  {
        width: calc(50% - 10px); /* Ajusta el ancho al 50% */
        height: auto;
        aspect-ratio: 190 / 300; /* Mantiene la proporción de ancho/alto */
        background-size: 100% 100%; /* Hace que el fondo se ajuste al nuevo tamaño */
    }
}