.single_news .banner {
  width: 100%;
  height: 50vh;
  min-height: 20rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single_news .news_gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 17rem;
  gap: 1.75rem;
  padding: 4rem 0;
}

.single_news .news_gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.single_news .news_gallery__item.is-landscape {
  grid-row: span 1;
}

.single_news .news_gallery__item.is-portrait {
  grid-row: span 2;
}

.single_news .news_gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease;
  will-change: transform;
}

.single_news .news_gallery__item:hover img {
  transform: scale(1.08);
}

.single_news .latest_news {
  padding-top: 6rem;
}

.single_news .btn_wrapper {
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .single_news .news_gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 15rem;
  }
}

@media (max-width: 768px) {
  .single_news .banner {
    height: 100%;
  }
}

@media (max-width: 576px) {
  .single_news .news_gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
  }

  .single_news .news_gallery__item,
  .single_news .news_gallery__item.is-landscape,
  .single_news .news_gallery__item.is-portrait {
    grid-row: auto;
  }

  .single_news .news_gallery__item > img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
  }
}
