.news {
  margin-bottom: 100px;
}

.news .container {
  position: relative;
}

.news .news__inner {
  gap: 25px; 
  display: flex;
  border-radius: 10px;
  padding: 0;
	flex-wrap: wrap;
}

.news .news__inner .news__col {
	width: calc(33.33% - 20px);
  margin-bottom: 20px;
}

.news .news__inner .news__image {
  display: flex;
  height: 280px;
  border-radius: 10px;
  overflow: hidden;
}

.news .news__inner .news__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news .news__inner .news__date {
  color: #808080;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
}

.news__link {
  color: #404040;
  font-size: 18px;
  font-weight: 700;
  margin-top: 20px;
  display: block;
	text-transform: uppercase;
}

.news__inner_info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__section {
  color: #808080;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .news .news__inner {
    flex-wrap: wrap;
    margin: 20px 0px;
  }

  .news .news__inner .news__col {
    width: 100%;
  }
}