.news-section{
    padding: 90px 0 100px;
    background-color: RGBA(247, 249, 250, 1);
}
.news-section .news-list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 35px;
}
.news-section .pagination{
    margin-top: 40px;
}
.news-details-section{
    padding: 90px 0 100px;
}
.news-details-section .layout-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.news-details-section .layout-wrapper .article-content{
    width: 68.75%;
}
.news-details-section .layout-wrapper .section-title{
    text-align: left;
    line-height: 1.33;
}
.news-details-section .layout-wrapper .article-date{
font-family: Montserrat;
font-weight: 400;
font-size: 15px;
color: #3A444A;
line-height: 1;
opacity: 0.5;
margin-top: .66em;
display: block;
}
.news-details-section .layout-wrapper .article-body{
    margin-top: 30px;
    padding: 37px 0 60px;
    border-top: 1px solid rgba(58, 68, 74, .2);
    border-bottom: 1px solid rgba(58, 68, 74, .2);
font-family: MontserratLight;
font-size: 16px;
color: #3A444A;
line-height: 26px;
}
.news-details-section .layout-wrapper .article-body *{
    all: revert;
}
.news-details-section .layout-wrapper .article-body img{
    max-width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}
.news-details-section .layout-wrapper .article-pagination{
    margin-top: 25px;
}
.news-details-section .layout-wrapper .article-pagination a{
    display: block;
font-family: MontserratLight;
font-size: 16px;
color: #686868;
line-height: 26px;
transition: all .6s;
}
.news-details-section .layout-wrapper .article-pagination a:hover{
    color: rgba(223, 5, 21, 1);
}
.news-details-section .layout-wrapper .sidebar{
    position: sticky;
    width: 25%;
    top: 131px;
}
.news-details-section .layout-wrapper .other-news-list{
    margin-top: 35px;
}
.news-details-section .layout-wrapper .update-card:not(:last-child){
    margin-bottom: 40px;
}
@media (max-width:1440px) {
    .news-details-section .layout-wrapper .sidebar{
        width: 28%;
    }
}
@media (max-width:1199px) {
    .news-details-section .layout-wrapper{
        flex-direction: column;
        gap: 40px;
    }
    .news-details-section .layout-wrapper .sidebar,
     .news-details-section .layout-wrapper .article-content{
        width: 100%;
    }
    .news-details-section .layout-wrapper .other-news-list{
        margin-top: 25px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 28px;
    }
    .news-details-section .layout-wrapper .update-card:not(:last-child){
        margin-bottom: 0;
    }
    .news-section,
    .news-details-section{
        padding: 75px 0;
    }
    .news-section .news-list{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:1024px) {
    .news-section,
   .news-details-section{
        padding: 65px 0;
    }
    .news-details-section .layout-wrapper .article-body{
        margin-top: 25px;
        padding: 10px 0 30px;
    }
}
@media (max-width: 768px) {
    .news-section .pagination{
        margin-top: 30px;
    }
    .news-section,
   .news-details-section{
        padding: 55px 0;
    }
    .news-section .news-list{
        grid-template-columns: repeat(1, 1fr);
    }
    .news-details-section .layout-wrapper .other-news-list{
        grid-template-columns: repeat(1,1fr);
    }
    
}
@media (max-width: 500px) {
    .news-details-section .layout-wrapper .article-body{
        padding: 10px 0 20px;
    }
    .news-section .pagination{
        margin-top: 25px;
    }
    .news-section,
   .news-details-section{
        padding: 45px 0;
    }
}