/* section default */
.section{
    position: relative;
    display: grid;
    gap: 30px;
    width: 90%;
    max-width: 1093px;
    margin: 2rem auto 1rem auto;
    color: #000;
}
.section .title-wrapper > .title{
    color: #3db134;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 4.5px;
    margin: 0 auto;
}
.section .title-wrapper > .subtitle{
    color: #3db134;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin: 8px auto 0 auto;
    letter-spacing: 1px;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

.section .text{
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

@media (min-width: 769px){
    .section{
        gap: 40px;
    }
    .section .title-wrapper > .title{
        font-size: 32px;
        letter-spacing: 4px;
    }
    .section .title-wrapper > .subtitle{
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    .section .text{
        letter-spacing: 3px;
        line-height: 1.7;
    }
}

/* title */
@media (min-width: 769px){
    .title.section{
        margin-bottom: 3rem;
    }
    .title.section .subtitle{
        margin-top: 0;
    }
    .title.section .image-wrapper{
        position: absolute;
        right: 2%;
        top: -50px;
        width: 180px;
    }
}

/* page-link section -- */
.page-link-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.page-link-wrapper > .item > a{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #fff;
    color: #3db134;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #3db134;
}
.page-link-wrapper > .item.selected > a{
    background-color: #3db134;
    color: #fff;
}

@media (min-width: 769px) {
    .page-link.section{
        margin: 4.5rem auto 4rem auto;
        justify-content: center;
        align-items: center;
    }
    .page-link-wrapper > .item > a{
        font-size: 16px;
        padding: 10px 32px;
    }
}
/* -- page-link section */

/* news */
.list-news.section .section-title{
    font-size: 32px;
}
.list-news.section a:hover{
    text-decoration: none;
}
.news-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.news-wrapper > a{
    padding-top: 24px;
    border-top: 1px dashed #3db134;
}
.news-wrapper > a:last-child{
    padding-bottom: 24px;
    border-bottom: 1px dashed #3db134;
}
.news-item{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.news-header{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-end;
}
.news-date{
    font-size: 14px;
    color: #231815;
    font-weight: 600;
    letter-spacing: 1px;
}
.news-category{
    display: flex;
    flex-direction: row;
    gap: 2px;
}
.news-label{
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    border-radius: 40px;
    padding: 3px 15px;
}
.news-label.green{
    background-color: #3db134;
}
.news-label.orange{
    background-color: #de8f06;
}
.news-label.blue{
    background-color: #0066CC;
}
.news-title{
    font-size: 16px;
    color: #000000;
    font-weight: 300;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

@media (min-width: 769px) {

    .list-news.section > .news-wrapper{ grid-area: news-wrapper; }
    .list-news.section > .no-news-wrapper{ grid-area: news-wrapper; }
    .list-news.section > .pager{ grid-area: pager; }
    .list-news.section{
        grid-template-areas:
        "news-wrapper"
        "pager";
        grid-template-columns: 1fr;
    }
    .list-news.section .section-title {
        font-size: 40px;
        letter-spacing: 0.5vw;
    }
    .news-wrapper{
        position: relative;
        align-items: center;
    }
    .news-wrapper > a{
        position: relative;
        width: 100%;
    }
    .news-item{
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .news-header{
        align-items: center;
    }
    .news-category{
        flex-direction: column;
        min-width: 85px;
    }
}

.footer{
    margin-top: 90px;
}
@media (min-width: 769px){
    .footer{
        margin-top: 150px;
    }
}

.no-news-wrapper{
    position: relative;
    width: 90%;
    max-width: 1093px;
    margin: 0 auto;
    text-align: center;
    color: #999999;
}