.mass-media {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 1170px;
  max-width: calc(100% - 385px);
  margin: 0 35px;

}

.mass-media__title {
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}

.mass-media__news-list {
  display: flex;
  flex-wrap: wrap;
}

.news {
  flex-basis: 50%;
  display: flex;
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 63, 100, 0.20);
}

.news:nth-child(-n + 2) {
  margin-top: 0;
}

.news:nth-child(odd) {
  padding-right: 20px;
}

.news:nth-child(even) {
  padding-left: 20px;
}

.news__img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  /* background-color: rgba(199, 199, 199, 0.20); */
}

.news__info {
  cursor: pointer;
}

.news__type {
  color: #A0978F;
  font-family: Gotham Pro;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.news__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

.news__date {
  color:  rgba(0, 63, 100, 0.50);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.news__to-news-arrow {
  background: url(../assets/images/arrow-icon.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.mass-media__news-item a {
  color: inherit;
  transition: all 0.3s;
}
.mass-media__news-item a:hover{
color: #A0978F;
}
@media (max-width: 1169px) {
  .mass-media {
    max-width: calc(100% - 15px * 2);
    gap: 20px;
  }

  .mass-media__title {
    font-size: 25px;
    line-height: 35px;
  }

  .news {
    padding: 20px 0 !important;
    flex-basis: 100%;
    gap: 10px;
    justify-content: space-between;
  }

  .news__title {
    font-size: 14px;
    line-height: 20px;
  }

  .news__info {
    flex-grow: 1;
  }

  .news__date {
    font-size: 14px;
    line-height: 20px;
  }

  .news__img {
    background-size: 100px;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
  }

}


.awards .mass-media {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.awards .mass-media__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.awards .mass-media__item {
  height: 152px;
  background-color: rgba(242, 235, 229, 0.50);
  border-radius: 12px;
  cursor: pointer;
}

.awards .mass-media__img {
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  mix-blend-mode: multiply
}

@media (max-width: 1169px) {
  .awards .mass-media {
    max-width: calc(100% - 15px * 2);
  }

  .awards .mass-media__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards .mass-media__item {
    height: 121px;
  }
}

.premie .mass-media {
  width: 1170px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.premie .mass-media__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.premie .mass-media__item {
  height: 152px;
  background-color: rgba(242, 235, 229, 0.50);
  border-radius: 12px;
  cursor: pointer;
}

.premie .mass-media__img {
  background-size: initial;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  mix-blend-mode: multiply;
  display: block;
  background-size: 80%;
}

@media (max-width: 1169px) {
  .premie .mass-media {
    max-width: calc(100% - 15px * 2);
  }

  .premie .mass-media__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .premie .mass-media__item {
    height: 121px;
  }
}