@media screen and (min-width: 769px) {
  #newsPage .section {
    padding: 60px 240px 120px;
  }
  #newsPage .filter-area {
    display: flex;
    width: 100%;
  }
  #newsPage .filter-area .inner {
    width: 40%;
    margin-right: 80px;
  }
  #newsPage .filter-area .section-title {
    font-size: 20px;
  }
  #newsPage .filter-area .filter-buttons {
    display: flex;
    gap: 10px;
    flex-flow: wrap;
  }
  #newsPage .filter-area .filter-buttons .btn-filter {
    padding: 8px 16px;
    border: 2px solid #26C4A6;
    border-radius: 30px;
    background: #fff;
    color: #26C4A6;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
  }
  #newsPage .filter-area .filter-buttons .btn-filter.is-active {
    background: #26C4A6;
    color: #fff;
  }
  #newsPage .news-contents {
    margin-top: 10px;
    width: 100%;
  }
  #newsPage .news-contents .inner {
    width: 100%;
    margin-right: 0px;
  }
  #newsPage .news-list {
    border-top: 2px solid #333;
  }
  #newsPage .news-list .news-item {
    border-bottom: 2px solid #333;
    font-family: "Noto Sans", sans-serif;
    padding-bottom: 20px;
    margin-top: 40px;
  }
  #newsPage .news-list .news-item a {
    transition: opacity 0.3s;
  }
  #newsPage .news-list .news-item a:hover {
    opacity: 0.6;
  }
  #newsPage .news-list .news-item .meta {
    display: flex;
    align-items: center;
    width: 250px;
    flex-shrink: 0;
    font-family: "Noto Sans", sans-serif;
  }
  #newsPage .news-list .news-item .meta time {
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
  }
  #newsPage .news-list .news-item .meta .news-tag {
    color: #26C4A6;
    font-size: 12px;
    font-weight: bold;
  }
  #newsPage .news-list .news-item .news-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    margin-top: 20px;
    font-family: "Noto Sans", sans-serif;
  }
  #newsPage .news-list:first-child {
    border: none;
  }
  #newsPage .load-more {
    text-align: center;
    margin-top: 60px;
  }
  #newsPage .load-more .btn-more {
    display: inline-block;
    padding: 15px 80px;
    background: #26C4A6;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #newsPage .section {
    padding: 0;
  }
  #newsPage .filter-area .section-title {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #26C4A6;
    padding-bottom: 10px;
    margin: 60px 0px 20px;
    width: 100%;
    padding-left: 20px;
  }
  #newsPage .filter-area .filter-buttons {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
    width: 100%;
    border-bottom: 2px solid #26C4A6;
    padding: 0 20px;
    padding-bottom: 20px;
  }
  #newsPage .filter-area .filter-buttons .btn-filter {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 6px 16px;
    border: 2px solid #26C4A6;
    border-radius: 20px;
    color: #26C4A6;
    font-weight: bold;
    font-size: 13px;
  }
  #newsPage .filter-area .filter-buttons .btn-filter.is-active {
    background: #26C4A6;
    color: #fff;
  }
  #newsPage .news-contents {
    margin-top: 40px;
  }
  #newsPage .news-list {
    padding: 0 20px;
  }
  #newsPage .news-list .news-item {
    border-bottom: 2px solid #333;
    margin-top: 30px;
    padding-bottom: 10px;
  }
  #newsPage .news-list .news-item a {
    display: block;
  }
  #newsPage .news-list .news-item .meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: "Noto Sans", sans-serif;
  }
  #newsPage .news-list .news-item .meta time {
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
  }
  #newsPage .news-list .news-item .meta .news-tag {
    font-size: 11px;
    color: #26C4A6;
    font-weight: bold;
  }
  #newsPage .news-list .news-item .news-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
  }
  #newsPage .load-more {
    padding: 0 20px;
    width: 240px;
    height: 50px;
    margin: 40px auto 60px;
  }
  #newsPage .load-more .btn-more {
    height: 50px;
    width: 100%;
    background: #26C4A6;
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
  }
}