.single-news {
  padding-top: 150px;
  padding-bottom: 150px;
}
.single-news--wrapper {
  background-color: white;
  border-radius: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.single-news--content {
  display: grid;
  gap: 96px;
}
.single-news--text {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.single-news--text h1 {
  font-size: 32px;
  font-weight: 500;
}
.single-news--text h4 {
  font-size: 16px;
  font-weight: 500;
}
.single-news--text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.single-news--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.news-gallery {
  margin-top: 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;
  align-items: start;
}
.news-gallery .gallery-image {
  border-radius: 16px;
  overflow: hidden;
}
.news-gallery .gallery-image img {
  width: 100%;
  height: auto;
}

/* RESPONSIVE */

@media (min-width: 640px) {
}
@media (min-width: 768px) {
  .single-news--text h1 {
    font-size: 40px;
    font-weight: 500;
  }
  .single-news--text h4 {
    font-size: 16px;
    font-weight: 500;
  }
}
@media (min-width: 1024px) {
  .single-news--content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-news--text h1 {
    font-size: 64px;
    font-weight: 500;
  }
  .single-news--text h4 {
    font-size: 18px;
    font-weight: 500;
  }
  .single-news--text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
