.s_news {
  padding: 40px 0;
}

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

.news_top__box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.news_link__box {
  display: flex;
  align-items: end;
}

.news_link {
  color: var(--blue-F9);
  font-weight: 500;
  position: relative;
  padding-right: 32px;
  font-size: clamp(14px, 3vw, 16px);
}

.news_link:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 7.00012L6 18.0001' stroke='%238D31F9' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M11 6H17C17.4714 6 17.7071 6 17.8536 6.14645C18 6.29289 18 6.5286 18 7V13' stroke='%238D31F9' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news_container {
  position: relative;
}

.s_news .news_item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--grey-FA);
  border-radius: 24px;
  padding: 10px;
  min-height: 422px;
  max-height: 422px;
}

.news_item__top {
  display: flex;
}

.news_item__img {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: auto;
  max-height: 200px;
  display: block;
}

.news_item__bot {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 192px;
}

.news_item__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
}

.news_item__title {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 500;
}

.news_item__text {
  color: var(--grey-93);
  font-size: clamp(14px, 3vw, 16px);
}

.news_item__date_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news_item__tag {
  color: var(--blue-F9);
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
}

.news_item__date {
  font-size: clamp(14px, 3vw, 16px);
  color: var(--grey-93);
}

.news_container .news_main_pagination {
  display: none;
  bottom: 0;
  top: unset;
  height: 3px;
  justify-content: center;
  align-items: center;
}

.news_container .news_main_pagination .swiper-pagination-bullet {
  height: 3px;
  width: 46px;
  border-radius: 9999px;
  background: var(--grey-F1);
  opacity: 1;
  margin: 0 5px;
}

.news_container .news_main_pagination .swiper-pagination-bullet-active {
  background: var(--blue-F9);
}

@media (max-width: 1050px) {
  .news_container {
    padding-bottom: 13px;
  }

  .news_container .news_main_pagination {
    display: flex;
  }
}

@media (max-width: 798px) {
  .news_top__box {
    flex-direction: column;
    justify-content: unset;
    gap: 10px;
  }

  .news_item__bot {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .s_news {
    padding: 20px 0;
  }

  .news {
    gap: 16px;
  }
}