* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.news-details{
    width: 95vw;
    margin: auto;
}
.news-details {
    display: flex;
    flex-wrap: wrap;
  }

  .news-details .row .col-lg-5,
  .news-details .row .col-lg-7 {
    flex: 1;
  }
  .news-details .row .col-lg-5 img {
    height: 100%;
    object-fit: cover;
  }
@media (max-width:1200px) {
    .news-details{
        width: 100vw;
    }
    .news-details .row .col-lg-5{
        margin-bottom: 5rem;
    }
     .news-details .row .col-lg-5,
    .news-details .row .col-lg-7 {
      flex: none;
      width: 100%;
    }

}
@media (max-width:767px) {
    .news-details .gap2{
        gap: 1.5rem;
    }
}
@media (max-width:600px) {
    .news-details .row .col-lg-5{
        padding:0 !important;
    }


}
@media (max-width:480px) {
    .news-details .row .col-lg-5{
        margin-bottom: 3rem;
    }


}
