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

.zs-news-page .zs-wrap {
  width: min(1200px, calc(100% - 40px));
}

.zs-news-page img,
.zs-news-page svg {
  display: block;
  max-width: 100%;
}

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

.zs-news-page h1,
.zs-news-page h2,
.zs-news-page h3,
.zs-news-page p,
.zs-news-page ul,
.zs-news-page li,
.zs-news-page form,
.zs-news-page input,
.zs-news-page textarea,
.zs-news-page select,
.zs-news-page button {
  margin: 0;
}

.zs-news-page ul {
  padding: 0;
  list-style: none;
}

.zs-news-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.zs-news-hero {
  position: relative;
}

.zs-news-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(16, 24, 40, 0.2), rgba(16, 24, 40, 0.2)), url("../img/news-hero.jpg") center/cover no-repeat;
}

.zs-news-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 240px;
  align-items: center;
}

.zs-news-hero h2 {
  color: #ffffff;
  font-family: "Montserrat", "Nunito Sans", Arial, sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.zs-news-archive {
  padding: 56px 0 88px;
}

.zs-news-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.zs-news-posts {
  min-width: 0;
}

.zs-news-post + .zs-news-post {
  margin-top: 44px;
}

.zs-news-post {
  position: relative;
  border: 1px solid #e6e9ef;
  background: #ffffff;
  overflow: visible;
  transition: box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1), transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.zs-news-post-media {
  position: relative;
}

.zs-news-post-media > a {
  display: block;
  overflow: hidden;
}

.zs-news-post-media img {
  width: 100%;
  height: auto;
}

.zs-news-post-cats {
  position: absolute;
  bottom: -15px;
  left: 22px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zs-news-post-cats a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  background: #0c5297;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.24s ease;
}

.zs-news-post-cats a:hover {
  background: #0c5297;
}

.zs-news-post-body {
  padding: 38px 22px 28px;
}

.zs-news-post-no-image .zs-news-post-media {
  position: static;
  height: 0;
}

.zs-news-post-no-image .zs-news-post-cats {
  top: -15px;
  bottom: auto;
  left: 22px;
}

.zs-news-post-no-image .zs-news-post-body {
  padding-top: 54px;
}

.zs-news-post-body h2 a {
  color: #1f2937;
  font-family: "Montserrat", "Nunito Sans", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  transition: color 0.24s ease;
}

.zs-news-post:hover {
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.zs-news-recent-posts a:hover,
.zs-news-widget-list a:hover,
.zs-news-pagination a:hover {
  color: #0c5297;
}

.zs-news-post-body h2 a:hover {
  color: #1f2937;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.zs-news-post-body p {
  margin-top: 18px;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

.zs-news-pagination {
  margin-top: 54px;
}

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

.zs-news-pagination .pagination li {
  display: flex;
  margin: 0;
  padding: 0;
}

.zs-news-pagination a,
.zs-news-pagination span,
.zs-news-pagination .pagination a,
.zs-news-pagination .pagination span {
  display: inline-flex;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e7ec;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

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

.zs-news-pagination .disabled span {
  border-color: #e4e7ec;
  background: #f8fafc;
  color: #98a2b3;
}

.zs-news-pagination .disabled a,
.zs-news-pagination .disabled span {
  pointer-events: none;
}

.zs-news-pagination-dots {
  border-color: transparent;
  background: transparent;
}

.zs-news-sidebar {
  min-width: 0;
}

.zs-news-widget + .zs-news-widget {
  margin-top: 38px;
}

.zs-news-widget {
  padding: 0;
  border: 0;
  background: transparent;
}

.zs-news-widget h3 {
  color: #111827;
  font-family: "Montserrat", "Nunito Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.zs-news-widget h3 {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.zs-news-widget h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 18px;
  height: 3px;
  background: #0c5297;
}

.zs-news-search-form {
  position: relative;
}

.zs-news-search-form input,
.zs-news-quote-form input,
.zs-news-quote-form textarea,
.zs-news-quote-form select {
  width: 100%;
  border: 1px solid #d8dde6;
  border-radius: 0;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.zs-news-search-form input {
  height: 40px;
  padding: 0 46px 0 14px;
  border: 0;
  background: #fafafa;
  color: #6b7280;
  font-size: 13px;
}

.zs-news-search-form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: #0c5297;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.24s ease;
}

.zs-news-search-form button:hover {
  background: #0a0f1f;
  color: #ffffff;
}

.zs-news-widget-list {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

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

.zs-news-widget-list a,
.zs-news-recent-posts a {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.24s ease;
  font-weight: 800;
}

.zs-news-widget-list span {
  display: block;
  margin-top: 2px;
  color: #9aa1ad;
  font-size: 14px;
  line-height: 1.6;
}

.zs-news-widget-list a {
  position: relative;
  display: inline-block;
  padding-left: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.9;
  text-transform: uppercase;
  transition: color 0.24s ease, padding-left 0.24s ease;
}

.zs-news-widget-list a::before {
  content: "//";
  position: absolute;
  top: 0;
  left: 0;
  color: #0c5297;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.zs-news-widget-list a:hover {
  padding-left: 18px;
  color: #0c5297;
}

.zs-news-widget-list a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.zs-news-recent-posts {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.zs-news-recent-posts li {
  display: grid;
  gap: 6px;
}

.zs-news-recent-posts time {
  color: #9aa1ad;
  font-size: 13px;
  line-height: 1.5;
}

.zs-news-recent-posts a:hover {
  color: #0c5297;
}

.zs-news-widget-quote h3 {
  margin-bottom: 18px;
  padding-bottom: 0;
  border-bottom: 0;
}

.zs-news-widget-quote h3::after {
  display: none;
}

.zs-news-quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.zs-news-quote-grid label {
  display: grid;
  gap: 8px;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.zs-news-quote-grid label.is-full {
  grid-column: 1 / -1;
}

.zs-news-quote-grid small {
  color: #9aa1ad;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.zs-news-quote-grid input,
.zs-news-quote-grid select {
  height: 42px;
  padding: 0 14px;
  border: 1px solid #b8bec8;
  border-radius: 4px;
  background: #ffffff;
  color: #1f2937;
  font-size: 15px;
  font-weight: 400;
}

.zs-news-quote-grid textarea {
  min-height: 154px;
  padding: 14px;
  border: 1px solid #b8bec8;
  border-radius: 4px;
  background: #ffffff;
  color: #1f2937;
  resize: vertical;
  font-size: 15px;
  font-weight: 400;
}

.zs-news-quote-grid strong {
  color: #ef4444;
}

.zs-news-quote-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}

.zs-news-quote-actions button {
  min-width: 140px;
  min-height: 50px;
  padding: 12px 26px;
  border: 0;
  background: #0c5297;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.24s ease;
}

.zs-news-quote-actions button:hover {
  background: #0c5297;
}

.zs-news-form-message {
  min-height: 20px;
  color: #16a34a;
  font-size: 13px;
  line-height: 1.5;
}

[data-news-page-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-news-page-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .zs-news-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .zs-news-sidebar {
    display: grid;
    gap: 24px;
  }

  .zs-news-widget + .zs-news-widget {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .zs-news-page .zs-wrap {
    width: min(100% - 24px, 1200px);
  }

  .zs-news-hero-inner {
    min-height: 190px;
  }

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

  .zs-news-archive {
    padding: 34px 0 56px;
  }

  .zs-news-post + .zs-news-post {
    margin-top: 32px;
  }

  .zs-news-post-cats {
    bottom: -14px;
    left: 14px;
    gap: 6px;
  }

  .zs-news-post-cats a {
    min-height: 28px;
    padding: 6px 10px;
    font-size: 10px;
  }

  .zs-news-post-body {
    padding: 32px 16px 22px;
  }

  .zs-news-post-no-image .zs-news-post-cats {
    top: -14px;
    bottom: auto;
    left: 14px;
  }

  .zs-news-post-no-image .zs-news-post-body {
    padding-top: 48px;
  }

  .zs-news-post-body h2 a {
    font-size: 24px;
  }

  .zs-news-post-body p {
    margin-top: 14px;
    font-size: 16px;
  }

  .zs-news-widget {
    padding: 0;
  }

  .zs-news-widget h3 {
    font-size: 18px;
  }

  .zs-news-quote-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .zs-news-quote-grid label.is-full {
    grid-column: auto;
  }
}
