.news {
	margin-top:40px;
}
@media (min-width: 62em) {
	.news {
		margin-top:44px;
	}
}
.news__item {
  height: 430px;
}
@media (min-width: 62em) {
  .news__item {
    min-height:100%;
	aspect-ratio: 1 / 1;
	height: auto;
  }
}
.news__item:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 75%;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.news__inner {
  z-index: 1;
  padding: 24px 60px 24px 14px;
}
@media (min-width: 62em) {
  .news__inner {
    padding: 28px 100px 28px 24px;
  }
}
@media (min-width: 88.25em) {
  .news__inner {
    padding-right: 200px;
  }
}
.news__link {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 198, 21, 0.24);
}
.news__link:hover .img-bg {
  transform: scale(1.05);
}
.news__link img {
  transition: transform 0.3s;
}
.news__date {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 20px;
}
.news__title {
  font-size: 20px;
  text-transform: uppercase;
}
.news__icon {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 50px;
}