.header__noticia {
    position: relative;
    float: left;
    width: 100%;
}

.header__noticia img {
    width: 100%;
    height: 584px;
    object-fit: cover;
}

.header__noticia__contenido {
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, #1E112C 26%, rgba(30, 17, 44, 0) 100%);
    top: 0px;
    height: 100%;
}

.header__noticia__informacion {
    padding: 50px;
}

.noticia__titulo {
    color: var(--amarillo);
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    word-wrap: break-word;
    margin-bottom: 100px;
    margin-top: 50px;
}

.noticia__autor {
    color: var(--blanco);
    font-size: 20px;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 25px;
}

.noticia__fecha {
    color: var(--amarillo);
    font-size: 20px;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 25px;
}

.noticia__compartir {
    width: 215px;
    background: var(--blanco);
    border-radius: 5px;
    border: 0px;
    padding: 10px;
    margin-bottom: 25px;
    color: #000 !important;
    font-size: 18px;
    font-weight: 700;
    word-wrap: break-word;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    text-decoration: none !important;
}

.contenido__noticia{
    padding: 60px 40px;
    position: relative;
    float: left;
    width: 100%;
}

.contenido__noticia__texto {
    font-size: 15px;
    color: black;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 100px;
}

/* Noticias*/


.noticias__lista {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.noticias__tituloprincipal{
    color: #01002F;
    font-size: 20px;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 30px;
    text-align: center;
}

.noticias__item {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    width: 31.5%;
}


.noticias__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.noticias__informacion {
    position: absolute;
    width: 100%;
    bottom: 0px;
    background: rgba(153, 61, 134, 0.60);
    padding: 10px;
}

.noticias__titulo {
    color: var(--blanco);
    font-size: 16px;
    font-weight: 700;
    word-wrap: break-word;
    margin-bottom: 10px;
    color: var(--blanco);
    text-transform: uppercase;
}

.noticias__autor {
    color: var(--blanco);
    font-size: 16px;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 10px;
}

.noticias__fecha {
    color: var(--amarillo);
    font-size: 16px;
    font-weight: 700;
    word-wrap: break-word
}

.contenido__noticia__texto p {
    margin-bottom: 5px;
}


@media only screen and (max-width: 768px) and (min-width: 300px)  {

    .header__noticia {
        height: 212px;
    }

    .header__noticia img {
        object-fit: cover;
        height: 100%;
    }

    .header__noticia__informacion {
        padding: 15px;
    }

    .noticia__titulo {
        font-size: 16px;
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .noticia__autor {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .noticia__fecha {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .noticia__compartir {
        width: 96px;
        padding: 5px;
        margin-bottom: 25px;
        font-size: 13px;
        font-weight: 700;
    }

    .contenido__noticia {
        padding: 15px 15px;
    }

    .contenido__noticia__texto {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .noticias__item {
        width: 100%;
    }

    .header__noticia img {
        height: 211px;
    }
}