:root {
  --v10-color-primary: #2280bd;
  --swiper-theme-color: #2280bd;
  --header_active_bg_color: #2280bd;
  --header_active_color: #fff;
  --header_font_color: #fff;
  --border_color: #E8E8E8;
  --box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  --float-zIndex: 1000100;
  --float-mask-zIndex: 1000050;
  --fancybox-zIndex: 1000000;
  --header-zIndex: 999999;
  --mobile-header-height: 60px;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.search-form-for-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-form-for-section-header > input {
  width: 12em;
  padding: 8px 16px;
  box-sizing: border-box;
  border: 1px solid #DEE5ED;
  border-radius: 4px;
  font-size: 14px;
  color: #222;
  background: #FBF9FA;
  outline: none;
  transition: border-color 0.2s;
}
.search-form-for-section-header > input::-moz-placeholder {
  color: #999;
}
.search-form-for-section-header > input::placeholder {
  color: #999;
}
.search-form-for-section-header > input:focus {
  border-color: var(--v10-color-primary);
}
.search-form-for-section-header .search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 18px;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  background: var(--v10-color-primary);
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.search-form-for-section-header .search-btn:hover {
  opacity: 0.85;
}
.search-form-for-section-header .br-mobile {
  display: none;
}
@media (max-width: 990px) {
  .search-form-for-section-header {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .search-form-for-section-header > input {
    width: 10em;
    font-size: 13px;
    padding: 6px 12px;
  }
  .search-form-for-section-header .br-mobile {
    display: inline;
  }
}

.page-content-flow {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 0 20px;
  gap: 20px;
}
@media (max-width: 990px) {
  .page-content-flow {
    padding: 0 0 10px;
  }
}

.news-list-item-container-2 {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  border: 1px solid #DEE5ED;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.news-list-item-container-2 .news-list-item-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 24px;
  background: transparent;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-wrapper {
    padding: 16px;
  }
}
.news-list-item-container-2 .news-list-item-content {
  flex: 1;
  min-width: 0;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-heading {
  margin-bottom: 16px;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  overflow: hidden;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-content .news-list-item-title {
    font-size: 15px;
    line-height: 22px;
  }
}
.news-list-item-container-2 .news-list-item-content .news-list-item-title .news-list-item-title-link {
  color: #000;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-title .news-list-item-title-link:hover {
  color: var(--v10-color-primary);
  text-decoration: underline;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-title .news-list-item-hashtag {
  color: var(--v10-color-primary);
  text-decoration: none;
  font-size: 0.8em;
  line-height: 1.4;
  flex-shrink: 0;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-title .news-list-item-hashtag:hover {
  text-decoration: underline;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-content .news-list-item-title .news-list-item-hashtag {
    font-size: 13px;
  }
}
.news-list-item-container-2 .news-list-item-content .news-list-item-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-content .news-list-item-info {
    gap: 12px;
  }
}
.news-list-item-container-2 .news-list-item-content .news-list-item-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-date .news-list-item-date-icon {
  display: block;
  width: 17px;
  height: 17px;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-date .news-list-item-date-text {
  font-size: 14px;
  color: #5A6C8A;
  line-height: 1;
  white-space: nowrap;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-content .news-list-item-date .news-list-item-date-text {
    font-size: 12px;
  }
}
.news-list-item-container-2 .news-list-item-content .news-list-item-views {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #999;
  line-height: 1;
}
.news-list-item-container-2 .news-list-item-content .news-list-item-views .news-list-item-views-icon {
  display: block;
  width: 16px;
  height: 16px;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-content .news-list-item-views {
    font-size: 12px;
  }
}
.news-list-item-container-2 .news-list-item-media {
  flex-shrink: 0;
}
.news-list-item-container-2 .news-list-item-media .news-list-item-image-link {
  display: block;
  text-decoration: none;
}
.news-list-item-container-2 .news-list-item-media .news-list-item-image-wrapper {
  width: 200px;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 100/43;
}
@media (max-width: 990px) {
  .news-list-item-container-2 .news-list-item-media .news-list-item-image-wrapper {
    width: 120px;
  }
}
.news-list-item-container-2 .news-list-item-media .news-list-item-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-list-item-container-2 .news-list-item-media:hover .news-list-item-image {
  transform: scale(1.05);
}

.news-empty {
  padding: 60px 20px;
  text-align: center;
}
.news-empty p {
  font-size: 16px;
  color: #999;
  margin: 0;
}

.filter-area {
  display: flex;
  align-items: center;
  padding-top: 12px;
}
@media (max-width: 990px) {
  .filter-area {
    width: 100%;
  }
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.category-filter > li {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.category-filter > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 30px;
  padding: 0 14px;
  background: #f2f9f8;
  border-radius: 9999px;
  font-size: 14px;
  line-height: 1;
  color: #5A6C8A;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.category-filter > li > a:hover {
  color: #fff;
  background: var(--v10-color-primary);
}
.category-filter > li.is-active > a {
  color: #fff;
  background: var(--v10-color-primary);
}
@media (max-width: 990px) {
  .category-filter {
    gap: 8px;
  }
  .category-filter > li > a {
    height: 26px;
    padding: 0 10px;
    font-size: 13px;
  }
}

.category-filter.is-inline {
  gap: 6px;
}
.category-filter.is-inline > li > a {
  height: 28px;
  padding: 0 12px;
  font-size: 13px;
}
@media (max-width: 990px) {
  .category-filter.is-inline {
    display: none;
  }
}

.section-header-slot {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header-slot .header-search-form {
  display: flex;
  align-items: center;
}
.section-header-slot .header-search-form > input {
  width: 12em;
  padding: 6px 14px;
  box-sizing: border-box;
  border: 1px solid #DEE5ED;
  border-radius: 9999px;
  font-size: 14px;
  color: #222;
  background: #f2f9f8;
  outline: none;
  transition: border-color 0.2s;
}
.section-header-slot .header-search-form > input::-moz-placeholder {
  color: #999;
}
.section-header-slot .header-search-form > input::placeholder {
  color: #999;
}
.section-header-slot .header-search-form > input:focus {
  border-color: var(--v10-color-primary);
}
@media (max-width: 990px) {
  .section-header-slot {
    width: 100%;
  }
  .section-header-slot .header-search-form > input {
    width: 100%;
  }
}

.news-list-item-media.is-square .news-list-item-image-wrapper.is-square {
  width: 136px;
  aspect-ratio: 1/1;
  border-radius: 6px;
}
@media (max-width: 990px) {
  .news-list-item-media.is-square .news-list-item-image-wrapper.is-square {
    width: 80px;
    height: 80px;
  }
}