@charset "UTF-8";
.news-archive{
    padding: 15vh 0;
}

.section__title{
    padding: 50px 0;
    background-color: #FEF200;
}

.archive-news__list__box{
    margin-top: 150px;
}

.news__list{
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid #999;

    max-width: none;
    width: 100%;
}

.news__list:first-of-type{
    border-top: 1px solid #999;
}

.news__content{
    display: flex;
    align-items: flex-start;
}

.news__item:last-of-type{
    border-bottom: none;
}

.news__thumb{
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.news__thumb img{
    width: 200px;
    height: 200px;
}

.news__excerpt a:hover {
    opacity: 0.6;
}

.nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 30px;
}

.page-numbers{
    display: inline-block;
    font-size: 2rem;
    font-family: "Poppins-Black";
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding-left: 3px;
    background-color: #FEF200;
    border-radius: 100px;
    color: #616642;
    line-height: 0.5;
}

.current{
    color: #111;
    width: 50px;
    height: 50px;
}

.left-arrow{
    width: 40px;
    height: 40px;
    background-image: url(../images/left-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.right-arrow{
    width: 40px;
    height: 40px;
    background-image: url(../images/right-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.page-numbers:hover,.left-arrow:hover,.right-arrow:hover{
    opacity: 0.7;
    cursor: pointer;
}

@media screen and (max-width:1100px) {
    .news__list__box{
        width: 90%;
    }

    .archive-news__list__box{
        margin-top: 100px;
    }

    .news__content{
        flex-direction: column;
        gap: 5px;
    }
}