.block-noticias {
    padding: 48px 0px 64px;
    background: linear-gradient(96.13deg, #E7F0FF 0%, #EBF3FF 100%), #FFFFFF;
}

.block-noticias h2 {
    text-align: center;
    font-weight: 700;
    color: #003886;
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 24px;
    text-transform: uppercase;

    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-noticias .link_container {
    margin-bottom: 30px;
}

.block-noticias .link_container .slick-dots {
    bottom: 0;
    border-radius: 49px;
    margin: 20px 0 0;
    position: relative;
    text-align: left;
    background-color: #FFFFFF;
}

.block-noticias .link_container .slick-dots li,
.block-noticias .link_container .slick-dots li button {
    width: 32px;
    height: 5px;
}

.block-noticias .link_container .slick-dots li button:before {
    opacity: 1;
    width: 32px;
    border-radius: 49px;
    background-color: #FFFFFF;
}

.block-noticias .link_container .slick-dots li.slick-active button:before {
    opacity: 1;
    background-color: #0F66E2;
}

.block-noticias .link_container .splide__arrows .splide__arrow {
    display: block;
    width: 40px;
    height: 40px;
    background-size: 20px;
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;

    top: 50%;
    cursor: pointer;
    position: absolute;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.block-noticias .link_container .splide__arrows .splide__arrow--prev {
    left: -42px;
    background-image: url(../img/prev_arrow.png);
}

.block-noticias .link_container .splide__arrows .splide__arrow--next {
    right: -42px;
    background-image: url(../img/next_arrow.png);
}

.block-noticias .link_container .noticia-item {
    display: block;
    padding: 0 10px;
}

.block-noticias .link_container .noticia-item .item {
    background: #FFFFFF;
    border-radius: 24px;
    text-decoration: none;
    padding: 16px 16px 32px;
}

.block-noticias .link_container .noticia-item .noticia-imge {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
}

.block-noticias .link_container .noticia-item .noticia-imge img {
    width: 100%;
    height: auto;
    display: block;
}

.block-noticias .link_container .noticia-item .noticia-text h3 {
    font-weight: 700;
    color: #003886;
    font-size: 24px;
    line-height: 116%;
    transition: color 0.3s ease;
}

.block-noticias .link_container .noticia-item .noticia-text .date {
    font-weight: 400;
    color: #2F2F2F;
    font-size: 20px;
    line-height: 24px;
    
    gap: 6px;
    display: flex;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    border: 1px solid #E8E8E8;
}

.cta-page-noticias {
    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto;
    padding: 10px 35px;
    border-radius: 24px;
    max-width: fit-content;
    border: 1px solid #003886;
    background: transparent;
    transition: all 0.3s ease;

    color: #003886;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    font-family: 'DIN Next LT Pro' !important;
}

@media (min-width: 992px) {
    .block-noticias .link_container .noticia-item:hover h3 {
        color: #FF8C01;
    }

    .cta-page-noticias:hover {
        color: #FFFFFF;
        background: #003886;
    }

    .block-noticias .link_container .splide__arrows .splide__arrow--prev:hover {
        background-image: url(../img/prev_arrow-active.png);
    }

    .block-noticias .link_container .splide__arrows .splide__arrow--next:hover {
        background-image: url(../img/next_arrow-active.png);
    }
}