.noticias__page > .content {
    display: flex;
    align-items: flex-start;
    margin: 3rem auto;
}
.noticias__page > .content .filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 250px;
    margin-right: 1rem;
}
.noticias__page > .content .filter img {
    width: 100%;
    height: auto;
}

.noticias__page > .content .filter .line {
    width: 100%;
    height: 2px;
    background-color: #e8231a;
    border-radius: 3px;
    margin: 1rem 0;
}

.noticias__page > .content .filter .items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}
.noticias__page > .content .filter .items a {
    color: #292929;
    text-decoration: none;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: .9rem;
    transition: .3s;
}
.noticias__page > .content .filter .items a + a {
    margin-top: .4rem;
}

.noticias__page > .content .filter .items a:hover,
.noticias__page > .content .filter .items a.active {
    color: #e8231a;
}


.noticias__page > .content .noticias {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.noticias__page > .content .noticias .content {
    /* margin-left: 1.5rem; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.noticias__page > .content .noticias .noticia {
    display: flex;
    flex-direction: column;
    width: calc(31% - 1rem);
    min-width: 250px;
    background-color: #fff;
    border-radius: 3rem 1rem 3rem 1rem;
    padding: 1.2rem 1rem;
    margin: .5rem;
    text-decoration: none;
    justify-content: flex-start;
}
.noticias__page > .content .noticias .noticia h5 {
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 1.2rem;
    text-align: justify;
    color: #e8231a;
}
.noticias__page > .content .noticias .noticia div.image {
    width: 100%;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 110%;
    border-radius: 1rem;
    margin-bottom: .5rem;
    transition: .3s;
}
.noticias__page > .content .noticias .noticia:hover div.image {
    background-size: auto 120%;
}

.noticias__page > .content .noticias .noticia p {
    color: #333;
    font-size: .9rem;
    font-family: "Calibri";
}



.noticias__view__page {
    margin: 3rem auto;
}
.noticias__view__page .content .noticia {
    background-color: #fff;
    border-radius: 2.5rem 1rem 2.5rem 1rem;
    padding: 1rem 0;
}
.noticias__view__page .content .noticia a.back {
    margin-left: 1.5rem;
    color: black;
    text-decoration: none;
    transition: .3s;
}
.noticias__view__page .content .noticia a.back:hover {
    color: #e8231a;
}
.noticias__view__page .content .noticia h2 {
    color: #e8231a;
    font-size: 2.88rem;
    text-align: center;
}
.noticias__view__page .content .noticia div.image {
    width: 100%;
    background-size: auto 110%;
    background-position: top center;
    background-repeat: no-repeat;
    transition: .3s;
}
.noticias__view__page .content .noticia:hover div.image {
    background-size: auto 130%;
}
.noticias__view__page .content .noticia p {
    color: #333;
    padding: 1rem;
    padding-bottom: 0;
    margin-bottom: 0;
    font-family: "Calibri";
}

.pagination__container ul.pagination {
    justify-content: center;
}
.pagination__container ul.pagination .page-item.active .page-link {
    background-color: #e8231a;
    border-color: #e8231a;
    color: #fff;
}
.pagination__container ul.pagination .page-item .page-link {
    color: red;
}



@media screen and (max-width: 991px), (orientation: portrait) {
    .noticias__page > .content {
        flex-direction: column;
        align-items: center;
    }
    .noticias__page > .content .filter {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    .noticias__page > .content .noticias .noticia {
        width: 85%;
    }
    .noticias__view__page .content .noticia h2 {
        font-size: 2.3rem;
        text-align: center;
    }
}




