.newsPagination {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px 15px 70px;
  box-sizing: border-box;
}
.newsPagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.newsPagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.newsPagination__link, .newsPagination__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #d7dde3;
  background: #fff;
  color: #242a31;
  font-family: Arial, "Noto Sans TC";
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.newsPagination__link:hover, .newsPagination__link:focus, .newsPagination__next:hover, .newsPagination__next:focus {
  border-color: #00a7c4;
  color: #00a7c4;
  box-shadow: 0 8px 18px rgba(0, 167, 196, 0.16);
  text-decoration: none;
}
.newsPagination__link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.newsPagination__link.is-active {
  border-color: #117576;
  background: #117576;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 167, 196, 0.22);
  pointer-events: none;
}
.newsPagination__item--ellipsis {
  min-width: 54px;
  color: #117576;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 6px;
}
.newsPagination__next {
  min-width: 158px;
  height: 50px;
  padding: 0 34px;
  border-radius: 999px;
  gap: 8px;
}
.newsPagination__next span {
  font-size: 32px;
  line-height: 1;
  margin-top: -5px;
}
@media screen and (max-width: 576px) {
  .newsPagination {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 15px 44px;
    -webkit-overflow-scrolling: touch;
  }
  .newsPagination__list {
    gap: 10px;
    min-width: max-content;
    margin: 0 auto;
  }
  .newsPagination__link {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .newsPagination__item--ellipsis {
    min-width: 34px;
    font-size: 24px;
    letter-spacing: 3px;
  }
  .newsPagination__next {
    min-width: 112px;
    height: 50px;
    padding: 0 18px;
    font-size: 21px;
  }
  .newsPagination__next span {
    font-size: 24px;
  }
}
/*# sourceMappingURL=news.css.map */
