/*news*/
#news-wrap{
    padding-top:170px;
    padding-bottom: 100px;
}

#news-wrap .inner{
    max-width: 900px;
    margin: 0 auto;
}

#news-wrap h2{
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 170px;
    letter-spacing: 5px;
}

#news-wrap .news-flex{
    display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 40px;
}

#news-wrap .news-flex .news-single{
    width: 273px;
    margin-bottom: 50px;
}

#news-wrap .news-flex .news-single a.news-btn{
    background: #F0F0F0;
    padding: 10px 20px;
    width: 166px;
    display: block;
    margin: 0;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    position: relative;
    transition: background-position 0.3s ease;
    text-align: center;
}
#news-wrap .news-flex .news-single a.news-btn:after {
    content: '';
    display: inline-block;      
    margin-left: 10px;
    width: 15px;
    height: 8px;
    background: url('../images/common/blk-btn-arrow.png') no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
}

#news-wrap .news-flex .news-single a.news-btn:hover:after {
    transform: translateX(3px);
}

#news-wrap span.news-category{
    font-size: 13px;
    padding-left: 1rem;
}

.single-wrap h1{
        text-align: left;
        font-size: 28px;
        font-weight: 400;
        margin-bottom: 100px;
        letter-spacing: 5px;
}

.single-wrap h2{
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 100px;
    letter-spacing: 5px;
}

.single-wrap{
    padding-top:170px;
    padding-bottom: 100px;
}

.single-wrap .inner{
    max-width: 900px;
    margin: 0 auto;
}

.single-wrap .post-thumbnail img{
    width: 100%;
    max-width: 580px;
    margin: 50px auto;
    display: block;
}


.single-wrap .entry-content a.back-to-list{
    background: #F0F0F0;
    padding: 10px 20px;
    width: 240px;
    display: block;
    margin: 80px auto 0;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    position: relative;
    transition: background-position 0.3s ease;
    text-align: center;
}
.single-wrap .entry-content a.back-to-list:before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 8px;
    background: url(../images/common/blk-btn-arrow-back.png) no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
 
}

.single-wrap .entry-content a.back-to-list:hover:before {
    transform: translateX(-3px);
}


@media (max-width: 768px) {
    #news-wrap .inner {
            width: 90%;
    padding:40px 10px;
        }
        #news-wrap {
            padding-top: 30px;
            padding-bottom: 0;
        }
        #news-wrap h2{
            margin-bottom: 80px;
        }
        #news-wrap .news-flex .news-single {
            width: 100%;
            max-width: 265px;
            margin: 0 auto 50px;
          }
        #news-wrap .news-thumbnail img {
            width: 100%;
        }
        #news-wrap .news-info{
            margin-top:15px;
        }
        #news-wrap .news-flex .news-single a.news-btn {
            width: 166px;
            margin: 10px auto;
        }
        .single-wrap {
            padding-top: 30px;
            padding-bottom: 0;
        }
        .single-wrap .inner{
            width: 90%;
    padding:40px 10px;
        }
        .single-wrap h1 {
            font-size: 22px;
         }
    }
