body{
    background: #f7f7f7;
}
.banner{
    position: relative;
    background: url(../img/news-detail-banner.jpg) no-repeat;
    background-size: cover;
    min-height: 18vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 50px;
}

.title-writer-date{
    width: 100%;
    margin: 0 auto;
    color: #ffffff;
}
.title-writer-date h1{
    font-size: 48px;
    color: #f08400;
}
.title-writer-date .writer-date{
    gap: 20px;
    font-family: robotoregular;
    font-size: 20px;
    margin-top: 20px;
    text-transform: uppercase;
}
.news-content {
 gap: 60px;
 align-items: flex-start;
}
.news-content .left-con{
    font-family: robotoregular;
    line-height: 2;
   
}
.news-content .left-con .content{
    background: #ffffff;
    padding: 30px;
}
.news-content .left-con ul{
    background: #ffffff;
    margin-top: 30px;
    padding: 30px;
    line-height: 2.5;
}
.news-content .left-con ul li span{
    color: #f08400;
    font-family: robotomedium;
    position: relative;
    padding-left: 30px;
}
.news-content .left-con ul li:first-child span:before{
    content: "";
    background: url(../img/arrow-left.png) no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
}
.news-content .left-con ul li:last-child span:after{
    content: "";
    background: url(../img/arrow-right.png) no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
}
/* .news-content .left-con .content img:not(:first-child){
      margin: 20px 0;
}*/
.news-content .left-con .content p{
    margin: 30px 0;
} 
.news-content .right-con{
    min-width: 390px;
    padding: 20px;
    background-color: #ffffff;
}
.news-content .right-con h2{
    margin-top:30px;
    padding: 30px 0;
    border-top: 1px dashed #bbbbbb;
    font-size: 24px;
    color: #333333;
    text-transform: uppercase;
    font-family: Bebas;
}
.news-content .right-con .popular{
    font-family: robotomedium;
}
.news-content .right-con .popular ul li{
    line-height: 2;
    margin-bottom: 30px;
}
.news-content .right-con .popular ul li p{
    margin: 20px 0;
}

@media (max-width:1400px){
    .title-writer-date h1{
        font-size: clamp(40px,3.5vw,48px);
    }
    .news-content{
        gap: clamp(30px,4vw,60px);
    }
}

@media (max-width:1080px){
    .news-content{
        gap: 20px;
    }
    .title-writer-date h1{
        font-size: clamp(32px,4vw,40px);
    }
    .title-writer-date .writer-date{
        font-size: 18px;
    }
}
@media (max-width:768px){
    .news-content .right-con{
        max-width: 50%;
        min-width: 50%;
    }
     .title-writer-date .writer-date{
        font-size: 16px;
    }
    .news-content .left-con .content,.news-content .right-con,.news-content .left-con ul{
        padding: 15px;
    }
    .news-content .left-con .content p{
        margin: 15px 0;
    }
}

@media (max-width:500px){
    .news-content{
        flex-wrap: wrap;
    }
    .news-content .left-con, .news-content .right-con{
        width: 100%;
        max-width: 100%;
    }
}