.zs-product2-hero {
  width: 100%;
}

.zs-product2-hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.zs-news-list {
  padding: 78px 0 96px;
  background: #f7f7f7;
}

.zs-news-list-title {
  margin: 0 0 36px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1f1f1f;
}

.zs-news-list-wrap {
  background: transparent;
}

.zs-news-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e7e7e7;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.zs-news-item:last-child {
  margin-bottom: 0;
}

.zs-news-item:hover {
  border-color: #d7b36e;
  transform: translateY(-4px);
}

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

.zs-news-item-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zs-news-item:hover .zs-news-item-media img {
  transform: scale(1.05);
}

.zs-news-item-body {
  min-width: 0;
}

.zs-news-item h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
}

.zs-news-item h3 a {
  color: #2a2a2a;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.zs-news-item:hover h3 a,
.zs-news-item h3 a:hover {
  color: #d7b36e;
  transform: translateX(2px);
}

.zs-news-item-date {
  position: relative;
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.4;
  color: #949494;
}

.zs-news-item-date::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'><path fill='%23b5b5b5' d='M768 128h64c35.2 0 64 28.8 64 64v640c0 35.2-28.8 64-64 64H192c-35.2 0-64-28.8-64-64V192c0-35.2 28.8-64 64-64h64V64h64v64h384V64h64v64zM192 320v512h640V320H192z'/></svg>") center center / contain no-repeat;
}

.zs-news-item-excerpt {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
}

.zs-news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  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: 42px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #d8d8d8;
  border-radius: 4px;
  font-size: 18px;
  line-height: 1;
  color: #2d2d2d;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.2s ease;
}

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

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

.zs-news-pagination .pagination .disabled span,
.zs-news-pagination .pagination .disabled a {
  color: #666666;
  background: #ffffff;
  border-color: #d8d8d8;
  pointer-events: none;
}

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

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

@media (max-width: 991px) {
  .zs-news-list {
    padding: 62px 0 74px;
  }

  .zs-news-list-title {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .zs-news-item {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

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

  .zs-news-pagination {
    margin-top: 30px;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .zs-news-list {
    padding: 46px 0 54px;
  }

  .zs-news-list-title {
    margin-bottom: 22px;
    font-size: 28px;
  }

  .zs-news-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .zs-news-item h3 {
    margin-bottom: 8px;
    font-size: 19px;
  }

  .zs-news-item-date {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .zs-news-item-excerpt {
    font-size: 14px;
    line-height: 1.8;
  }

  .zs-news-item-media img {
    aspect-ratio: 1 / 0.7;
  }

  .zs-news-pagination {
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 8px;
  }

  .zs-news-pagination a,
  .zs-news-pagination .pagination a,
  .zs-news-pagination .pagination span {
    min-width: 36px;
    height: 32px;
    font-size: 16px;
  }
}
