@media (min-width: 1025px) {
  .page-news__result-list {
    margin-bottom: 12rem;
  }
}
@media (max-width: 1024px) {
  .page-news__result-list {
    margin-bottom: 8rem;
  }
}

.page-news__result-list__item {
  min-width: 0;
}

.page-news__filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  background-color: var(--color-bg-blue);
  border-bottom: 1px solid var(--color-border-gray);
  border-radius: 1.2rem;
}
@media (min-width: 1025px) {
  .page-news__filters {
    column-gap: 3rem;
    padding: 3rem;
    margin-top: 13rem;
  }
}
@media (max-width: 1024px) {
  .page-news__filters {
    column-gap: 1rem;
    padding: 2rem;
    margin-top: 7.5rem;
  }
}

.page-news__filter {
  position: relative;
  display: flex;
  column-gap: 1px;
}
@media (min-width: 1025px) {
  .page-news__filter {
    height: 4.8rem;
  }
}
@media (max-width: 1024px) {
  .page-news__filter {
    height: 4rem;
  }
}

.page-news__filter__select {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  font-size: 16px;
  cursor: pointer;
  background-color: var(--color-white);
  opacity: 0;
  letter-spacing: 0.04em;
}

.page-news__filter__txt {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--color-primary);
  text-align: center;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border-gray);
  border-radius: 0.4rem;
  letter-spacing: 0.04em;
}
@media (min-width: 1025px) {
  .page-news__filter__txt {
    font-size: 1.6rem;
  }
}
@media (max-width: 1024px) {
  .page-news__filter__txt {
    font-size: 1.4rem;
  }
}

.page-news__filter__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background-color: var(--color-secondary);
  border-radius: 0.4rem;
}
@media (min-width: 1025px) {
  .page-news__filter__icon {
    width: 4.8rem;
  }
}
@media (max-width: 1024px) {
  .page-news__filter__icon {
    width: 4rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .page-news__filter:is(:hover, :focus-within) .page-news__filter__icon .c-icon-arrow-bottom-type2:not(.c-icon-arrow-no-slide) use {
    animation: c-icon-arrow-bottom-slide var(--duration) var(--ease-out-cubic);
  }
}