.news {
  width: 100%;
}

.news .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news_row {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}

.news h2 {
  max-width: 516px;
  width: 100%;
}

.news_desc {
  width: 100%;
  font-size: 14px;
}

.news_items {
  margin-top: 36px;
  display: flex;
  gap: 40px 30px;
}

.news_group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.news_group::before {
  content: attr(data-title);
  color: var(--Blue);
  font-family: "Onest";
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
}

.news_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news_group .news_item {
  flex-direction: row-reverse;
  position: relative;
  gap: 10px;
}

.img_wrap {
  width: 100%;
  aspect-ratio: 407 / 241;
  margin-bottom: 8px;
}

.news_group .img_wrap {
  aspect-ratio: 117 / 108;
  min-width: 117px;
  max-width: 117px;
  margin: 0;
}

.news_item_link {
  color: var(--Blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

.news_group .news_item_link {
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 25px;
}

.news_item_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: auto;
}

.news_item_date {
  margin-top: 8px;
  color: var(--Orange);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.news_group .news_item_date {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
}

@media (max-width: 992px) {
  .news_items {
    flex-wrap: wrap;
  }

  .news_group {
    width: 100%;
  }

  .news_group .news_item {
    width: 100%;
    flex-direction: row;
  }

  .news_group .news_item_date {
    left: 127px;
  }

  .news_item {
    width: calc(100% / 2 - (30px / 2));
  }
}

@media (max-width: 768px) {
  .news_desc {
    display: none;
  }

  .news_items {
    margin-top: 16px;
  }

  .news_item {
    width: 100%;
    gap: 12px;
  }

  .news_group .news_item {
    flex-direction: row-reverse;
  }

  .news_item_link {
    font-size: 16px;
  }

  .news_group .news_item_date {
    left: 0;
  }

  .img_wrap {
    aspect-ratio: 343 / 203;
    margin-bottom: 4px;
  }
}
