.zs-news-main {
  background: #fff;
  padding-top: calc(var(--zs-header-offset));
}

.zs-news-hero {
  padding: 0;
  background: #e8e8e8;
}

.zs-news-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 300px;
  padding: 28px 0;
}

.zs-news-hero-copy {
  width: 100%;
  text-align: center;
}

.zs-news-hero h2 {
  margin: 0;
  color: #202020;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.zs-news-breadcrumbs {
  margin: 12px 0 0;
  color: #7a7f86;
  font-size: 15px;
}

.zs-news-breadcrumbs a {
  color: #7a7f86;
}

.zs-news-breadcrumbs a:hover {
  color: #ef2b2d;
}

.zs-news-list-section {
  padding: 56px 0 84px;
}

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

.zs-news-item {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #e3e3e3;
  background: transparent;
  transition: padding 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.zs-news-item:hover {
  padding: 30px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
}

.zs-news-item-media {
  display: block;
  overflow: hidden;
}

.zs-news-item-media img {
  display: block;
  width: 100%;
  height: 254px;
  object-fit: cover;
}

.zs-news-item-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.zs-news-item-body h3 a {
  color: #202020;
}

.zs-news-item-body h3 a:hover {
  color: #ef2b2d;
}

.zs-news-item-date {
  margin: 0 0 12px;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.4;
}

.zs-news-item-excerpt {
  margin: 0;
  color: #737980;
  font-size: 16px;
  line-height: 1.7;
}

.zs-news-item-link {
  display: inline-block;
  margin-top: 18px;
  color: #ef2b2d;
  font-size: 14px;
  font-weight: 600;
}

.zs-news-item-link:hover {
  color: #b91f24;
}

.zs-news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 34px;
  text-align: center;
}

.zs-news-pagination a,
.zs-news-pagination .pagination a,
.zs-news-pagination .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #ef2b2d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background: #fff;
  transition: all 0.2s ease;
}

.zs-news-pagination a:hover,
.zs-news-pagination .pagination a:hover {
  color: #fff;
  background: #ef2b2d;
  border-color: #ef2b2d;
}

.zs-news-pagination a.is-active,
.zs-news-pagination .pagination .active span,
.zs-news-pagination .pagination .active a {
  color: #fff;
  background: #ef2b2d;
  border-color: #ef2b2d;
  font-weight: 700;
}

.zs-news-pagination .pagination .disabled span,
.zs-news-pagination .pagination .disabled a {
  color: #ccc;
  border-color: #eee;
  background: #f9f9f9;
  pointer-events: none;
}

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

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

@media (max-width: 767px) {
  .zs-news-hero-inner {
    min-height: 220px;
    justify-content: center;
    padding: 18px 0;
  }

  .zs-news-hero-copy {
    width: 100%;
  }

  .zs-news-hero h2 {
    font-size: 34px;
  }

  .zs-news-list-section {
    padding: 32px 0 56px;
  }

  .zs-news-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0;
  }

  .zs-news-item:hover {
    padding: 18px 14px;
  }

  .zs-news-item-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .zs-news-item-body h3 {
    font-size: 16px;
  }

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

  .zs-news-pagination {
    gap: 12px;
    padding-top: 28px;
    flex-wrap: wrap;
  }

  .zs-news-pagination a {
    font-size: 16px;
  }
}

