@charset "UTF-8";

/*==========================
news
==========================*/
.main{
    background-color: #FFFEF5;
    background-size: cover;
    align-items: center;
    background-position: center top;
}
.article{
    padding: 39px 7.2% 27px;
}

.news{
    padding: 19px 25px 0;
    gap: 14px;
    display: flex;
    flex-direction: column;
}

.news__item{
    display: flex;
    flex-direction: column;
}

.news__item time{
    color: #FFA200;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 133%; /* 18.62px */
    letter-spacing: 1.54px;
}

.news__item a{
    color: #333;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2.94px;
}

/* .pagenation */
.pagenation{
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 8px;
}

/* .pagenation::after{
    display: block;
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../images/pagenation-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
} */

.pagenation__item{
    line-height: 1;
}

.pagenation__item a{
    width: 24px;
    height: 24px;
    display: block;
    padding: 4px 9px 6px;
    text-align: center;
    font-size: 1.4rem;
}

.pagenation__item--current a{
    background-color: var(--primary-orange);
    color: #fff;
    border-radius: 5px;
}

@media screen and (min-width: 769px){
    .main{
        background-color: #FFFEF5;
    }
    .article{
        padding: 78px 5% 81px;
        font-size: 1.6rem;
        margin: 0 auto;
        max-width: 1280px;
    }

    .news{
        text-align: left;
        max-width: 869px;
        margin: 65px auto 0;
        padding: 19px 25px;
        border: 4px solid;
        border-right-color: var(--primary-orange);
        border-left-color: var(--primary-orange);
        border-top: transparent;
        border-bottom: transparent;
        gap: 53px;
    }

    .news__item{
        display: flex;
        flex-direction: row;
        gap: 65px;
    }

    .news__item a{
        font-size: 1.6rem;
    }

    .news__item a:hover{
        text-decoration: underline;
    }

    .news__item time{
        font-size: 1.6rem;
    }

    .pagenation{
        margin-top: 50px;
    }
}
