.news-list-container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  padding: 64px 48px;
}

.news-list-wrapper {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  width: 100%;
  justify-content: start;
  flex-wrap: wrap;
}

.news-list-block {
  padding: 0 0 0 24px;
}

.news-list-block__header .pages-wrapper__h1 {
  margin: 0;
}

.news-list-block__list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.news-list-item {
  position: relative;
  height: 527px;
  flex: 0 0 calc(50% - 12px);
}

.news-list-item__image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 0 64px 0 0;
  overflow: hidden;
}

.news-list-item__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  transition: var(--transition-cond-2);
}

.news-list-item__detail-wrapper {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 24px;
  background: #F3F3F3;
}

.pages-container .news-list-item__title,
.news-list-item__title {
  font-family: Mulish;
  text-transform: none;
  font-size: 24px;
	font-weight: 200;
  line-height: 1.1;
  margin: 0 0 12px 0;
}

.pages-container.sale .news-list-item__title,
.sale .news-list-item__title,
.news-list-item_accent .news-list-item__title {
  color: var(--color-accent);
}

.news-list-item__link {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  text-transform: uppercase;
}

.news-list-item__link a {
  transition: var(--transition-cond);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 991px) {

  .pages-wrapper__header.news-list-block__header {
    margin-bottom: 32px;
  }
}

@media (min-width: 991px) and (max-width: 1080px) {
  .news-list-item {
    flex: 100%;
  }
}

@media (max-width: 1280px) {
  .news-list-item {
    height: 420px;
  }
}

@media screen and (max-width: 991px) {
  .news-list-block {
    padding: 0;
  }
  .pages-container .news-list-item__title,
  .news-list-item__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .news-list-item {
    flex: 100%;
  }
}
@media (hover:hover) {
  .news-list-item__link a:hover {
    color: rgba(0, 0, 0, .5);
  }
  .news-list-item:hover .news-list-item__image-wrapper img {
    transform: scale(1.05);
}
}


.pages-wrapper__h1,
.pages-wrapper__h1 * {
  font-weight: 300 !important; 
}


.news-list-item__link span,
.news-detail__date span,
.info-sidebar__wrapper span,
.news-detail-wrapper__header a,
.news-detail__link a,
.news-detail__desc {
  text-transform: initial !important;
	font-size: 16px;
}

.news-list-item__title {
  font-family: Mulish !important;
}