.single-post #hero-int {
    background: url('../img/background-noticias.jpg') no-repeat center center;
}

#entradas-home {
    max-width: 2350px;
    margin: 0 auto;
    padding-bottom: 50px;
    background-image: url('../img/bars.svg');
    background-repeat: repeat-y;
    background-position: center;
}
#entradas-home h2 {
    text-align: right;
    text-transform: uppercase;
    background: url('../img/plane.svg') no-repeat right center;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 3.125rem;
    margin-right: -16px;
    margin-bottom: 70px;
    font-size: 1.5rem;
    line-height: 1;
}
#entradas-home span {
    color: var(--color-texto);
    margin-bottom: 10px;
    padding: 0 24px;
    display: block;
}
#entradas-home h3 {
    font-family: var(--font-secondary);
    padding: 0 20px 20px;
    min-height: 107px;
    margin: 0px;
}
#entradas-home .container:last-child {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
#entradas-home .container:last-child p {
    max-width: 366px;
}
#entradas-home .swiper-slide {
    width: 350px;
    min-height: 500px;
}
#entradas-home .swiper-slide img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 24px;
}
#entradas-home .swiper-slide a {
    display: block;
    background: white;
}
#entradas-home .swiper-slide a .oculto {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-primary);
    background-image: url('../img/mas-white.svg');
    background-repeat: no-repeat;
    background-position: right 24px bottom 24px;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px; 
}
#entradas-home .swiper-slide a .oculto span {
    color: white;
}
#entradas-home .swiper-slide a:hover .oculto,
#entradas-home .swiper-slide a:focus .oculto {
    opacity: 1;
    text-align: center;
}

@media (max-width: 1200px) {

    #entradas-home h2 {
        margin-right: inherit;
    }

}

@media (max-width: 768px) {

    #entradas-home .container:last-child {
        display: block;
        text-align: center;
    }
    #entradas-home .container:last-child p {
        max-width: inherit;
    }
    #entradas-home .container:last-child a {
        margin: 0 auto;
    }
    
}