@media screen and (min-width: 951px) {
  .news {
    width: 100%;
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  grid-column-gap: 5.6%;
	  grid-row-gap: 60px;
    position: relative;
    z-index: 1;
  }

  .news__item {
    width: 100%;
    position: relative;
  }
}

@media screen and (max-width: 950px) {
  .news {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .news__item {
    width: 47.2%;
    position: relative;
    margin-bottom: 5.6%;
  }
}

@media screen and (max-width: 530px) {
  .news__item {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
}

.news__image {
  width: 100%;
  margin-bottom: 15px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  overflow: hidden;
}

.news__image img {
  width: 100%;
  height: auto;
}

.news__info {
  width: 100%;
  padding: 0 clamp(20px, 2.5rem, 40px);
  padding-bottom: clamp(20px, 4rem, 60px);
  position: relative;
}

.news__date {
  width: 100%;
  margin-bottom: 15px;
  font-size: clamp(12px, 1rem, 16px);
  color: var(--text-color-secondary);
}

.news__name {
  width: 100%;
  margin-bottom: 30px;
}

.news__name a {
  text-decoration: none;
  font-size: clamp(16px, 1.125rem, 18px);
  font-weight: bold;
  color: var(--text-color-accent);
}

.news__link {
  position: absolute;
  bottom: clamp(20px, 2.5rem, 40px);
  left: clamp(20px, 2.5rem, 40px);
  font-size: clamp(12px, 1rem, 16px);
  color: var(--text-color-accent);
}