@charset "utf-8";

.news_title_wrpper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_title {
  font-size: 28px;
  font-weight: 600;
}
.news_filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.news_filter_wrapper {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.news_filter_label {
  margin-right: 8px;
  font-weight: 600;
}
.news_filter_select_wrapper {
  margin-left: auto;
  position: relative;
  border: solid 1px #dce2e8;
  border-radius: 42px;
  font-weight: 500;
  line-height: 40px;
  width: 200px;
}
.news_filter_select {
  box-sizing: border-box;
  width: 100%;
  padding: 0 48px 0 24px;
  cursor: pointer;
}
.news_filter_select_arrow {
  position: absolute;
  top: 16px;
  right: 24px;
  pointer-events: none;
}
.news_filter_select_arrow::before,
.news_filter_select_arrow::after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  position: absolute;
  background-color: #1b2228;
}
.news_filter_select_arrow::before {
  transform: rotate(45deg);
}
.news_filter_select_arrow::after {
  transform: rotate(-45deg);
  left: -5px;
}

@media screen and (max-width: 1040px) {
  .news_title_wrpper {
    display: block;
  }
  .news_filter {
    margin-top: 24px;
  }
  .news_filter_wrapper {
    margin-left: 0px;
  }
}

@media screen and (max-width: 640px) {
  .news_filter {
    justify-content: flex-start;
  }
  .news_filter_wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .news_filter_select_wrapper {
    margin-top: 8px;
  }
}

@media screen and (max-width: 480px) {
  .news_title_wrpper {
    display: block;
  }
  .news_title {
    font-size: 24px;
  }
  .news_filter_wrapper {
    display: block;
    margin: 24px 0 0;
    flex: 1 1 200px;
  }
  .news_filter_label {
    margin: 0 0 8px;
  }
  .news_filter {
    margin: 0;
  }
  .news_filter_wrapper {
    max-width: 200px;
  }
  .news_filter_select_wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .news_filter {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
  }
  .news_filter_wrapper {
    flex: 0 0 auto;
    margin: 0;
  }
}
