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

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

.news__list__box{
    margin-top: 150px;
    padding: 0 5%;
}

.single-news__list{
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: none;
    margin: 150px 0;
    margin: 0 auto;
}

.news__thumb{
    width: 100%;
    height: auto;
}

.news__thumb img{
    width: 100%;
    height: auto;
}

.single-news__date{
    text-align: right;
    margin: 0;
}

.news__title{
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
}

.news__excerpt{
    text-align: center;
    line-height: 3;
}

.single-news__title__a{
    display: inline-block;
    margin: 0 auto;
    color: #bb8900;
    font-weight: 600;
    text-decoration: underline;
}

.single-news__title__a:hover{
    opacity: 0.7;
}

.more__btn{
    margin-top: 150px;
}

.more__btn p{
    text-align: center;
    font-size: 2rem;
}

@media screen and (max-width:768px) {
    .news__list__box{
        margin-top: 100px;
    }

    .more__btn{
        margin-top: 100px;
    }

    .more__btn p{
        font-size: 1.6rem;
    }
}