.news__block {
  margin-bottom: 20px;
}

.news__title {
  position: relative;
  display: block;
  width: 100%;
  color: #000;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 24px;
  text-align: center;
}

.news__title::after,
.news__title::before {
  content: '';
  position: absolute;
  width: 30%;
  height: 2px;
  background: #d3d3d3;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news__title::after {
  left: auto;
  right: 0;
}

.news__images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news__img {
  width: 100%;
  max-width: 30%;
  max-height: 60px;
}

@media (width <= 620px) {
  .news__title::after,
  .news__title::before {
    content: none;
  }
}

@media (width <= 432px) {
  .news__images {
    justify-content: center;
  }

  .news__img {
    max-width: 100%;
  }
}
