.newsletters {
  max-width: 1140px;
  padding: 0 30px;
  margin-left: auto;
  margin-right: auto;
  color: #3D3E40;
}
.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
  margin-bottom: 30px;
}
.news-item {
  min-width: 0;
  min-height: 0;
}
.news-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.news-item__image {
  max-width: 100%;
  overflow: hidden;
  border: 2px solid #3D3E40;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .news-list {
    grid-template-columns: 1fr;
  }
  .news-item {
    font-size: 14px;
  }
  .news-item__image {
    margin-bottom: 15px;
  }
}
