.btnNews {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: auto;

    .button_viewMore {
        padding: 0;
        width: fit-content;
        border-radius: 40px;
        -webkit-border-radius: 40px;
        -moz-border-radius: 40px;
        -ms-border-radius: 40px;
        -o-border-radius: 40px;
        color: var(--main-yellow);
        background-color: transparent;
        font-size: clamp(16px, 1.6vw, 22px);
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 12px;
        border: none;
        transition: .5s all ease;
        -webkit-transition: .5s all ease;
        -moz-transition: .5s all ease;
        -ms-transition: .5s all ease;
        -o-transition: .5s all ease;
        text-decoration: none;
    }

    .button_viewMore:hover {
        text-decoration: underline;
    }
}

.content_page {
    .container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 64px;

        .card_news {
            border-radius: 24px;
            -webkit-border-radius: 24px;
            -moz-border-radius: 24px;
            -ms-border-radius: 24px;
            -o-border-radius: 24px;
            overflow: hidden;
            max-width: calc(100% / 2 - 31px);
            flex: 1 1 100%;
            @media(max-width:886px){
                max-width: 100%;    
            }
            .headerCardNews {
                height: 347px;
                width: 100%;
                overflow: hidden;

                img {
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                    transition: .5s all ease;
                    -webkit-transition: .5s all ease;
                    -moz-transition: .5s all ease;
                    -ms-transition: .5s all ease;
                    -o-transition: .5s all ease;
                }
            }
            .bodyCardNews {
                padding: 27px 30px;
                border: 1px solid var(--main-yellow);
                border-top: 0;
                border-bottom-left-radius: 24px;
                border-bottom-right-radius: 24px;
                flex: 1;
                display: flex;
                flex-direction: column;
                gap: 6px;




                .dateNews {
                    font-size: clamp(16px, 1.6vw, 20px);
                    font-weight: 400;
                    line-height: 24px;
                    color: var(--secondary-black);
                    margin-bottom: 6px;
                }

                .title_card {
                    font-size: clamp(16px, 1.6vw, 24px);
                    font-weight: 700;
                    line-height: 37.5px;
                    color: var(--main-blue);
                    cursor: pointer;
                    text-decoration: none;
                }

                .description_card {
                    font-size: clamp(16px, 1.6vw, 20px);
                    font-weight: 400;
                    line-height: 37.5px;
                    color: var(--secondary-black);
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    line-clamp: 2;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
            }
        }
    }

    @media (max-width:992px) {
        & {
            justify-content: center;
        }

        .card_news {
            width: 100%;
            max-width: 600px;
        }
    }
}


.pagination {
    .container {
        display: flex;
        justify-content: center;
        gap: 10px;

        span {
            a {
                border: 1px solid var(--main-blue);
                height: 40px;
                width: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                padding-top: 2px;
                border-radius: 50%;
                -webkit-border-radius: 50%;
                -moz-border-radius: 50%;
                -ms-border-radius: 50%;
                -o-border-radius: 50%;
                transition: .5s all ease;
                -webkit-transition: .5s all ease;
                -moz-transition: .5s all ease;
                -ms-transition: .5s all ease;
                -o-transition: .5s all ease;
                cursor: pointer;
                text-decoration: none;
                color: var(--main-blue);

                &:not(.active):hover,
                &.active {
                    background-color: var(--main-blue);
                    color: #FFF;
                }
            }
        }
    }
}