.block_news {
  width: 100%;
  margin: 120px 0 60px 0;
}

.block_news .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 110px;
}

.block_news h2 {
  width: 100%;
}

.block_news_items {
  width: calc(100% / 2 - 10px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.block_news_item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.block_news_item.first {
  width: calc(100% / 2 - 100px);
}

.block_news__wrap {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 542 / 300;
  margin-bottom: 10px;
}

.block_news__wrap img {
  transition: var(--TransitionSlow);
}

.block_news__wrap:hover img {
  scale: 1.07;
}

.block_news_date {
  color: var(--Grey);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: -20px;
}

.block_news_title {
  color: var(--Grey);
  font-family: "EB-Garamond";
  font-size: calc(24px + 6 * ((100vw - 375px) / (1920 - 375)));
  font-weight: 600;
  line-height: 120%;
}

.block_news_desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.block_news_btn {
  background-color: transparent;
  color: var(--Grey);
  font-size: calc(16px + 2 * ((100vw - 375px) / (1920 - 375)));
  font-weight: 500;
  letter-spacing: 1.08px;
  padding: 14px 70px 14px 40px;
  width: max-content;
  outline: 1px solid var(--Grey);
  overflow: hidden;
  position: relative;
}

.block_news_btn span {
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  transition: var(--TransitionSlow);
}

.block_news_btn:hover span {
  right: -40px;
}

.block_news_btn:hover {
  color: var(--White);
}

@media screen and (max-width: 1024px) {
  .block_news .container {
    gap: 40px;
  }
  .block_news_item.first,
  .block_news_items {
    width: calc(100% / 2 - 20px);
  }
}

@media screen and (max-width: 768px) {
  .block_news {
    margin: 80px 0;
  }

  .block_news_items {
    gap: 40px;
  }

  .block_news_items .block_news_item:not(:first-of-type) {
    display: none;
  }

  .block_news_item.first,
  .block_news_items {
    width: 100%;
    gap: 20px;
  }

  .block_news__wrap {
    display: none;
  }

  .block_news_date {
    margin-bottom: -10px;
  }

  .block_news_btn {
    padding: 12px 40px;
    width: 100%;
    max-width: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: auto;
  }

  .block_news_btn span {
    position: static;
    transform: none;
  }
}
