.news-page {
  margin-top: 100px;
  padding: 0 16px;
}

.news-page__header {
  position: relative;
  margin-bottom: 50px;
}

.news-page__title {
  margin: 0;
  font-size: 24px;
  line-height: 110%;
}

.news-page__count {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  line-height: 110%;
  color: #21232580;
}

.news-page__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.news-page__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
}

.news-page__row:nth-child(even) {
  flex-direction: row-reverse;
}

.news-page__text {
  flex: 0 0 487px;
  width: 487px;
}

.news-page__item-title {
  margin: 0;
  font-size: 28px;
  line-height: 110%;
}

.news-page__item-desc {
  margin: 16px 0;
  font-size: 12px;
  color: #212325;
}

.news-page__item-date-row {
  display: flex;
  gap: 5px;
  margin-top: 16px;
}

.news-page__item-date-label {
  width: 240px;
  font-size: 12px;
  color: #212325;
}

.news-page__item-date-value {
  width: 240px;
  font-size: 12px;
  color: #212325;
}

.news-page__image {
  flex: 0 0 985px;
  width: 985px;
  height: 692px;
  overflow: hidden;
}

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

.news-page__button {
  display: none;
}

@media (max-width: 900px) {
  .news-page {
    padding: 0 32px;
  }

  .news-page__header {
    margin-bottom: 64px;
  }

  .news-page__title {
    font-size: 48px;
    line-height: 110%;
  }

  .news-page__count {
    font-size: 20px;
  }

  .news-page__list {
    gap: 0;
  }

  .news-page__row {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 32px;
    padding-top: 64px;
    border-top: 1px solid #ececec;
  }

  .news-page__list .news-page__row:first-child {
    padding-top: 0;
    border-top: none;
  }

  .news-page__row:nth-child(even) {
    flex-direction: column;
  }

  .news-page__text {
    flex: none;
    width: 100%;
  }

  .news-page__item-title {
    font-size: 32px;
  }

  .news-page__item-desc {
    margin: 16px 0 0 0;
    font-size: 24px;
  }

  .news-page__item-date-row {
    justify-content: flex-end;
    margin-top: 16px;
  }

  .news-page__item-date-label {
    display: none;
  }

  .news-page__item-date-value {
    width: auto;
    font-size: 24px;
  }

  .news-page__image {
    flex: none;
    width: 836px;
    max-width: 100%;
    height: 969px;
  }

  .news-page__button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    height: 67px;
    padding: 18px 30px;
    border-radius: 50px;
    background: #EFEFEF;
    white-space: nowrap;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .news-page {
    padding: 0 20px;
  }

  .news-page__title {
    font-size: 26px;
  }

  .news-page__count {
    font-size: 14px;
  }

  .news-page__row {
    padding-top: 32px;
    gap: 16px;
  }

  .news-page__item-title {
    font-size: 20px;
  }

  .news-page__item-desc {
    font-size: 15px;
  }

  .news-page__item-date-value {
    font-size: 14px;
  }

  .news-page__button {
    height: 44px;
    padding: 10px 20px;
    font-size: 16px;
  }
}