.articles {
  position: relative;
  margin: 64px 0;
}

.articles__row {
  position: relative;
}

.articles__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.articles__more {
  position: absolute;
  top: 0;
  right: 16px;
}

.articles-item {
  position: relative;
  padding: 32px;
  min-height: 350px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  row-gap: 16px;
  border-radius: 24px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.articles-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(168deg, rgba(9, 8, 8, 0) 0%, #090808 100%), radial-gradient(circle, rgba(9, 8, 8, 0) 0%, #090808 100%);
}

.articles-item__date {
  position: relative;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.articles-item__inner {
  position: relative;
}

.articles-item__title {
  font-family: "Druk LCG", sans-serif;
  font-size: 32px;
  line-height: 1.2;
}

.articles-item__more {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .articles-item__title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .articles__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .articles-item {
    padding: 16px;
    min-height: 200px;
  }

  .articles-item__title {
    font-size: 20px;
  }
}