.media-press-grid {
  padding: 70px 0 100px;
  background: #182c42;
}

.media-press-grid__wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-press-grid__item-image {
  height: 330px;
  object-fit: cover;
}

.media-press-grid__item-content {
  min-height: 50px;
}

.single-media-press__video-bg {
  min-height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  background-position: center;
}

.single-media-press__title {
  color: white;
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .single-media-press__video-bg {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .media-press-grid {
    padding: 50px 0;
  }

  .media-press-grid__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .media-press-grid__item-image {
    height: 240px;
  }
}

@media (max-width: 640px) {
  .single-media-press__video-bg {
    min-height: 220px;
  }

  .single-media-press__title {
    margin: 10px 0;
    font-size: 30px;
  }
}
