/* CONTENEDOR GENERAL */

.noticias-container {
    padding-top: 140px;
    max-width: 1200px;
    min-height: 60vh;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* TÍTULO */

.titulo-noticias {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 55px;
}

.titulo-noticias h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--azul-oscuro);
    font-size: 3.2rem;
    letter-spacing: 1px;
    text-align: center;
}

.logo-titulo-noticias {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.linea {
    width: 100%;
    height: 8px;
    background: var(--amarillo);
    margin-top: 15px;
}

/* FOOTER */

.redes img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* ANIMACIÓN */

@keyframes flotarLogo {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media(max-width: 768px) {

    .titulo-noticias {
        flex-direction: column;
        text-align: center;
    }

    .titulo-noticias h1 {
        font-size: 2.1rem;
    }

    .logo-titulo-noticias {
        width: 65px;
        height: 65px;
    }

}