/*==========================================
News List
==========================================*/

.newsListSection{
    padding:100px 0;
    background:#f7f7f7;
}

/*==========================
Heading
==========================*/

.newsListHeading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.newsListHeading span{
    display:inline-block;
    color:var(--orange);
    font-size:13px;
    font-weight:900;
    letter-spacing:.22em;
    margin-bottom:12px;
}

.newsListHeading h2{
    font-size:42px;
    color:#222;
    line-height:1.3;
    margin:0 0 18px;
}

.newsListHeading p{
    color:#666;
    line-height:2;
    margin:0;
}

/*==========================
List
==========================*/

.newsListWrap{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.newsListItem{
    display:grid;
    grid-template-columns:360px 1fr;
    background:#fff;
    border:1px solid #e8e8e8;
    transition:.35s;
    border-radius: 30px;
    overflow: hidden;
}

.newsListItem:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/*==========================
Image
==========================*/

.newsListPhoto{
    display:block;
    overflow:hidden;
    background:#ddd;
    aspect-ratio:4/3;
}

.newsListPhoto img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.newsListItem:hover .newsListPhoto img{
    transform:scale(1.06);
}

/*==========================
Content
==========================*/

.newsListContent{
    padding:38px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.newsListDate{
    color:var(--orange);
    font-size:14px;
    font-weight:800;
    letter-spacing:.08em;
    margin-bottom:14px;
}

.newsListContent h3{
    font-size:30px;
    color:#222;
    line-height:1.4;
    margin:0 0 18px;
    transition:.3s;
}

.newsListItem:hover h3{
    color:var(--orange);
}

.newsListContent p{
    color:#666;
    line-height:2;
    margin:0 0 28px;
}

.newsListMore{
    display:inline-flex;
    align-items:center;
    width:max-content;
    color:#222;
    font-weight:800;
    letter-spacing:.05em;
    transition:.3s;
}

.newsListMore:after{
    content:"→";
    margin-left:10px;
    transition:.3s;
}

.newsListItem:hover .newsListMore{
    color:var(--orange);
}

.newsListItem:hover .newsListMore:after{
    margin-left:18px;
}

/*==========================
Pagination
==========================*/

.newsListPage{
    margin-top:70px;
    display:flex;
    justify-content:center;
    gap:10px;
}

.newsListPage a{
    min-width:46px;
    height:46px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border:1px solid #ddd;
    color:#333;
    font-weight:800;
    transition:.3s;
}

.newsListPage a:hover,
.newsListPage a.active{
    background:var(--yellow);
    border-color:var(--yellow);
    color:#111;
}

/*==========================================
1200
==========================================*/

@media(max-width:1200px){

.newsListItem{
    grid-template-columns:320px 1fr;
}

.newsListContent{
    padding:32px;
}

.newsListContent h3{
    font-size:26px;
}

}

/*==========================================
992
==========================================*/

@media(max-width:992px){

.newsListItem{
    grid-template-columns:280px 1fr;
}

.newsListContent{
    padding:28px;
}

.newsListContent h3{
    font-size:24px;
}

.newsListContent p{
    margin-bottom:22px;
}

}

/*==========================================
768
==========================================*/

@media(max-width:768px){

.newsListSection{
    padding:70px 0;
}

.newsListHeading{
    margin-bottom:40px;
}

.newsListHeading h2{
    font-size:32px;
}

.newsListItem{
    grid-template-columns:1fr;
}

.newsListPhoto{
    aspect-ratio:16/9;
}

.newsListContent{
    padding:26px;
}

.newsListContent h3{
    font-size:24px;
}

.newsListPage{
    margin-top:45px;
    flex-wrap:wrap;
}

}

/*==========================================
480
==========================================*/

@media(max-width:480px){

.newsListHeading h2{
    font-size:28px;
}

.newsListHeading p{
    font-size:14px;
}

.newsListContent{
    padding:22px;
}

.newsListDate{
    font-size:13px;
}

.newsListContent h3{
    font-size:21px;
}

.newsListContent p{
    font-size:14px;
    line-height:1.9;
}

.newsListPage a{
    min-width:42px;
    height:42px;
    padding:0 14px;
    font-size:13px;
}

}