.zs-news-body {
  overflow-x: hidden;
  background: #ffffff;
  color: var(--zs-news-text);
}

:root {
  --zs-news-theme: #317dc9;
  --zs-news-text: #333333;
  --zs-news-muted: #8b8b8b;
  --zs-news-border: #eeeeee;
  --zs-news-surface: #ffffff;
  --zs-news-breadcrumb-bg: #eeeeee;
}

.zs-news-main {
  background: #ffffff;
}

.zs-news-breadcrumb {
  background: #021a3d url("../img/blog_banner.png") center/100% 100% no-repeat;
  border-top: 0;
}

.zs-news-breadcrumb__inner {
  min-height: 0;
  aspect-ratio: 1024 / 342;
  display: flex;
  align-items: flex-end;
}

.zs-news-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0 0 28px;
  list-style: none;
  flex-wrap: wrap;
}

.zs-news-breadcrumb__list li {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.zs-news-breadcrumb__list a {
  color: #ffffff;
  text-decoration: none;
}

.zs-news-breadcrumb__sep {
  color: rgba(255, 255, 255, 0.8);
}

.zs-news-breadcrumb__list li:last-child {
  color: #ffffff;
}

.zs-news-content {
  padding: 26px 0 34px;
}

.zs-news-layout {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.zs-news-aside {
  flex: 0 0 280px;
  width: 280px;
}

.zs-news-primary {
  min-width: 0;
  flex: 1;
}

.zs-news-panel {
  margin-bottom: 24px;
}

.zs-news-panel__heading {
  background: var(--zs-news-theme);
}

.zs-news-panel__heading h2 {
  margin: 0;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 700;
}

.zs-news-category-list {
  margin: 0;
  padding: 14px 0 0;
  list-style: none;
}

.zs-news-category-list li {
  border-bottom: 1px solid var(--zs-news-border);
}

.zs-news-category-list a {
  display: block;
  padding: 14px 2px 14px 0;
  color: var(--zs-news-text);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.zs-news-category-list a.is-active {
  color: var(--zs-news-theme);
}

.zs-news-category-list a:hover {
  color: var(--zs-news-theme);
}

.zs-news-featured {
  margin-top: 0.85rem;
}

.zs-news-featured__arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 1.75rem;
  margin: 0.2rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.zs-news-featured__arrow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 4px solid #d4d4d4;
  border-bottom: 4px solid #d4d4d4;
}

.zs-news-featured__arrow--prev::before {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.zs-news-featured__arrow--next::before {
  transform: translate(-50%, -70%) rotate(45deg);
}

.zs-news-featured__arrow.swiper-button-disabled {
  opacity: 0.45;
  cursor: default;
}

.zs-news-featured__swiper {
  height: 35rem;
  overflow: hidden;
}

.zs-news-featured .swiper-slide {
  height: auto !important;
}

.zs-news-featured__item {
  display: grid;
  grid-template-columns: 4.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

.zs-news-featured__thumb {
  display: block;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.zs-news-featured__thumb img,
.zs-news-featured__thumb-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.zs-news-featured__thumb img {
  object-fit: cover;
}

.zs-news-featured__thumb-placeholder {
  background: linear-gradient(135deg, #ececec 0%, #dadada 100%);
}

.zs-news-featured__title {
  margin: 0;
  color: #3f454d;
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 400;
  transition: color 0.3s ease;
}

.zs-news-featured__item:hover .zs-news-featured__title {
  color: var(--zs-news-theme);
}

.zs-news-page-title {
  margin: 0 0 12px;
  color: #222222;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.zs-news-list {
  display: block;
}

.zs-news-item {
  border-bottom: 1px solid var(--zs-news-border);
}

.zs-news-item__inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 0;
}

.zs-news-item__media {
  flex: 0 0 256px;
  width: 256px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid var(--zs-news-border);
  border-radius: 5px;
  background: #ffffff;
}

.zs-news-item__media a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.zs-news-item__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.zs-news-item:hover .zs-news-item__media img {
  transform: scale(1.08);
}

.zs-news-item__body {
  min-width: 0;
  flex: 1;
}

.zs-news-item__title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

.zs-news-item__title a {
  color: var(--zs-news-theme);
  text-decoration: none;
}

.zs-news-item__title a:hover {
  text-decoration: none;
}

.zs-news-item__meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #aaaaaa;
  font-size: 14px;
  line-height: 1.4;
}

.zs-news-item__meta svg {
  flex: 0 0 22px;
  width: 22px;
  height: 20px;
  fill: #aaaaaa;
}

.zs-news-item__desc {
  margin: 15px 0 18px;
  color: var(--zs-news-text);
  font-size: 16px;
  line-height: 1.8;
}

.zs-news-item__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  margin-left: auto;
  padding: 8px 26px;
  border: 1px solid var(--zs-news-theme);
  border-radius: 999px;
  background: var(--zs-news-theme);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  float: right;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.zs-news-item__more:hover {
  background: #2569ad;
  border-color: #2569ad;
  color: #ffffff;
}

.zs-news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  text-align: center;
}

.zs-news-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-news-pagination li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zs-news-pagination a,
.zs-news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 3px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  box-shadow: none;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.zs-news-pagination a {
  color: #333333;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.zs-news-pagination a:hover,
.zs-news-pagination a.is-active,
.zs-news-pagination .active a,
.zs-news-pagination .active span,
.zs-news-pagination .current,
.zs-news-pagination .current a,
.zs-news-pagination .current span {
  border-color: #3f86d1;
  background: #3f86d1;
  color: #ffffff;
}

.zs-news-pagination span {
  color: #333333;
  font-size: 14px;
}

.zs-news-pagination .disabled,
.zs-news-pagination .disabled a,
.zs-news-pagination .disabled span {
  color: #a8a8a8;
  background: #f7f7f7;
  border-color: #e3e3e3;
  cursor: default;
  opacity: 1;
}

.zs-news-pagination .total,
.zs-news-pagination .pages,
.zs-news-pagination .count,
.zs-news-pagination .summary,
.zs-news-pagination .zs-news-pagination__summary {
  min-width: auto;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: #333333;
}

.zs-news-pagination .ellipsis,
.zs-news-pagination .dot,
.zs-news-pagination .dots {
  min-width: auto;
  padding: 0 4px;
  border: 0;
  background: transparent;
}

@media (max-width: 1199px) {
  .zs-news-layout {
    gap: 24px;
  }

  .zs-news-aside {
    flex-basis: 260px;
    width: 260px;
  }

  .zs-news-featured__swiper {
    height: 35rem;
  }
}

@media (max-width: 1080px) {
  .zs-news-layout {
    flex-direction: column;
  }

  .zs-news-aside {
    width: 100%;
    flex-basis: auto;
  }

  .zs-news-item__media {
    flex-basis: 220px;
    width: 220px;
  }
}

@media (max-width: 992px) {
  .zs-news-page-title {
    font-size: 34px;
  }

  .zs-news-item__inner {
    padding: 26px 0;
  }

  .zs-news-item__title {
    font-size: 20px;
  }

  .zs-news-item__desc {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .zs-news-breadcrumb__inner {
    min-height: 0;
  }

  .zs-news-content {
    padding: 20px 0 28px;
  }

  .zs-news-panel__heading h2 {
    padding: 12px 14px;
    font-size: 20px;
  }

  .zs-news-featured__swiper {
    height: 27rem;
  }


  .zs-news-page-title {
    font-size: 30px;
  }

  .zs-news-item__inner {
    flex-direction: column;
    gap: 14px;
  }

  .zs-news-item__media {
    width: 100%;
    flex-basis: auto;
  }

  .zs-news-item__title {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .zs-news-item__desc {
    margin: 12px 0 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .zs-news-item__more {
    float: none;
  }
}
