.zs-banner {
  position: relative;
}

.zs-banner-swiper {
  width: 100%;
  height: auto;
}

.zs-banner-swiper .swiper-wrapper,
.zs-banner-swiper .swiper-slide {
  height: auto;
}

.zs-banner-slide {
  position: relative;
  overflow: hidden;
}

.zs-banner-media {
  aspect-ratio: 8 / 3;
}

.zs-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.zs-banner-pagination.swiper-pagination {
  bottom: 24px;
}

.zs-banner-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.zs-banner-pagination .swiper-pagination-bullet-active {
  background: #d7b36e;
}

.zs-company-section {
  padding: 80px 0;
  background: #fffcf7;
}

.zs-company-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
}

.zs-company-media {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.zs-company-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.zs-company-media:hover img {
  transform: scale(1.04);
}

.zs-company-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(20, 20, 20, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.zs-company-play::before,
.zs-company-play::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: zs-company-play-pulse 2.2s ease-out infinite;
}

.zs-company-play::after {
  animation-delay: 1.1s;
}

.zs-company-play:hover {
  background: rgba(20, 20, 20, 0.66);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) scale(1.04);
}

.zs-company-play-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #b88022;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.zs-company-play-icon svg {
  width: 26px;
  height: 26px;
  margin-left: 3px;
}

.zs-video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.zs-video-modal[hidden] {
  display: none;
}

.zs-video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.78);
}

.zs-video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 40px));
  padding: 14px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.zs-video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #1f1f1f;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.zs-video-modal-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.zs-video-modal-title {
  margin: 0 44px 10px 2px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #1f1f1f;
}

.zs-video-modal-body {
  position: relative;
  background: #111111;
  overflow: hidden;
  border-radius: 12px;
  line-height: 0;
}

.zs-video-modal-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  background: #000000;
}

.zs-video-modal-frame[hidden],
.zs-video-modal-empty[hidden] {
  display: none !important;
}

.zs-video-modal-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 24px;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
}

@keyframes zs-company-play-pulse {
  0% {
    opacity: 0.65;
    transform: scale(0.95);
  }

  70% {
    opacity: 0;
    transform: scale(1.16);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

.zs-company-title {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: #1f1f1f;
}

.zs-company-text {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}

.zs-company-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 42px;
}

.zs-company-stat strong {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 7px;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: #d7b36e;
}

.zs-company-stat .zs-counter {
  display: inline-block;
  font-size: 56px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: #d7b36e;
}

.zs-company-stat strong em {
  display: inline-block;
  margin-top: 10px;
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  color: #d7b36e;
}

.zs-company-stat span {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
}

.zs-company-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 176px;
  min-height: 50px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(90deg, #efcb82 0%, #b88022 100%);
  box-shadow: 0 10px 24px rgba(184, 128, 34, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.zs-company-button:hover {
  background: linear-gradient(90deg, #f4d796 0%, #c98b24 100%);
  box-shadow: 0 16px 30px rgba(184, 128, 34, 0.34);
  transform: translateY(-2px);
}

.zs-company-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  line-height: 1;
}

.zs-company-button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
}

.zs-company-button:hover .zs-company-button-icon svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .zs-company-grid {
    grid-template-columns: 1fr;
  }

  .zs-company-media img {
    aspect-ratio: 1.35 / 1;
  }

  .zs-company-content {
    max-width: 100%;
  }

  .zs-company-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .zs-company-title {
    font-size: 40px;
  }

  .zs-company-text {
    font-size: 16px;
  }

  .zs-company-stat strong {
    font-size: 48px;
  }

  .zs-company-stat strong em {
    font-size: 16px;
  }

  .zs-company-stat span {
    font-size: 16px;
  }

  .zs-company-button {
    font-size: 16px;
  }

  .zs-company-play {
    width: 84px;
    height: 84px;
  }

  .zs-company-play-icon {
    width: 52px;
    height: 52px;
  }

  .zs-video-modal-dialog {
    width: min(920px, calc(100vw - 32px));
  }
}

@media (max-width: 767px) {
  .zs-company-section {
    padding: 48px 0;
  }

  .zs-company-title {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .zs-company-text {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.85;
  }

  .zs-company-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .zs-company-stat strong {
    margin-bottom: 4px;
    font-size: 40px;
  }

  .zs-company-stat span {
    font-size: 18px;
  }

  .zs-company-button {
    width: 100%;
    max-width: 192px;
    font-size: 18px;
  }

  .zs-company-play {
    width: 72px;
    height: 72px;
  }

  .zs-company-play-icon {
    width: 46px;
    height: 46px;
  }

  .zs-company-play-icon svg {
    width: 22px;
    height: 22px;
  }

  .zs-video-modal {
    padding: 18px 12px;
  }

  .zs-video-modal-dialog {
    width: min(100%, calc(100vw - 32px));
    padding: 12px;
    border-radius: 14px;
  }

  .zs-video-modal-close {
    top: 6px;
    right: 6px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .zs-video-modal-title {
    margin: 0 34px 8px 2px;
    font-size: 20px;
  }

  .zs-video-modal-empty {
    min-height: 220px;
    font-size: 16px;
  }

}

.zs-gallery-section {
  padding-top: 88px;
  background: #ffffff;
}

.zs-gallery-title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #1f1f1f;
}

.zs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 380px;
  gap: 18px;
}

.zs-gallery-card {
  position: relative;
  overflow: hidden;
  background: #f4f1eb;
  border-radius: 0;
}

.zs-gallery-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.zs-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.06) 0%, rgba(19, 19, 19, 0.3) 100%);
  pointer-events: none;
}

.zs-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.zs-gallery-card:hover img {
  transform: scale(1.04);
}

.zs-gallery-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.42);
  backdrop-filter: blur(4px);
}

.zs-gallery-card-a {
  grid-column: 1 / span 4;
  grid-row: span 1;
}

.zs-gallery-card-b {
  grid-column: 5 / span 4;
  grid-row: span 1;
}

.zs-gallery-card-c {
  grid-column: 9 / span 4;
  grid-row: span 1;
}

.zs-gallery-card-d {
  grid-column: 1 / span 6;
  grid-row: span 1;
}

.zs-gallery-card-e {
  grid-column: 7 / span 6;
  grid-row: span 1;
}

.zs-products-section {
  padding: 88px 0 96px;
  background: #ffffff;
}

.zs-products-title {
  margin-bottom: 48px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #1f1f1f;
}

.zs-products-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.zs-products-swiper {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.zs-products-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 38%;
  z-index: 5;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 2px solid #CCC;
  border-radius: 50%;
  color: #b7b7b7;
  background: #ffffff;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.zs-products-prev {
  left: -58px;
}

.zs-products-next {
  right: -58px;
}

.zs-products-nav:hover {
  color: #8b8b8b;
  border-color: rgba(31, 31, 31, 0.28);
  transform: translateY(-2px);
}

.zs-products-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  line-height: 1;
}

.zs-products-nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.zs-product-card {
  text-align: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.zs-product-link {
  display: block;
}

.zs-product-image {
  overflow: hidden;
  margin-bottom: 26px;
  padding: 8px;
  background: #ffffff;
}

.zs-product-image img {
  width: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
  /* aspect-ratio: 3/ 2; */
  /* object-fit: cover; */
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
}

.zs-product-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

.zs-product-card:hover {
  transform: translateY(-4px);
}

.zs-product-card:hover .zs-product-image img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .zs-gallery-title {
    margin-bottom: 32px;
    font-size: 40px;
  }

  .zs-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 340px;
  }

  .zs-gallery-card-a,
  .zs-gallery-card-b,
  .zs-gallery-card-c,
  .zs-gallery-card-d,
  .zs-gallery-card-e {
    grid-column: span 1;
    grid-row: span 1;
  }

  .zs-gallery-card-e {
    grid-column: 1 / -1;
  }

  .zs-products-section {
    padding: 72px 0 80px;
  }

  .zs-products-title {
    margin-bottom: 36px;
    font-size: 40px;
  }

  .zs-products-slider-wrap {
    gap: 18px;
    padding: 0 44px;
  }

  .zs-products-nav {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .zs-products-nav-icon {
    width: 14px;
    height: 14px;
  }

  .zs-products-prev {
    left: -18px;
  }

  .zs-products-next {
    right: -18px;
  }

  .zs-product-name {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .zs-gallery-section {
    padding: 8px 0 14px;
  }

  .zs-gallery-title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .zs-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
    gap: 14px;
  }

  .zs-gallery-card-a,
  .zs-gallery-card-b,
  .zs-gallery-card-c,
  .zs-gallery-card-d,
  .zs-gallery-card-e {
    grid-column: auto;
  }

  .zs-gallery-label {
    left: 14px;
    bottom: 14px;
    min-height: 30px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .zs-products-section {
    padding: 56px 0 60px;
  }

  .zs-products-title {
    margin-bottom: 28px;
    font-size: 32px;
  }

  .zs-products-slider-wrap {
    gap: 12px;
    padding: 0 34px;
  }

  .zs-products-nav {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .zs-products-nav-icon {
    width: 12px;
    height: 12px;
  }

  .zs-products-prev {
    left: -6px;
  }

  .zs-products-next {
    right: -6px;
  }

  .zs-product-image {
    margin-bottom: 18px;
  }

  .zs-product-name {
    font-size: 16px;
    line-height: 1.45;
  }
}

.zs-why-section {
  padding: 84px 0 96px;
  background: #fffcf7;
}

.zs-why-title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #1f1f1f;
}

.zs-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.zs-why-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zs-why-card {
  min-height: 220px;
}

.zs-why-card-image {
  overflow: hidden;
}

.zs-why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.zs-why-feature:hover .zs-why-card-image img {
  transform: scale(1.04);
}

.zs-why-card-copy {
  padding: 25px;
  background: linear-gradient(135deg, #b88634 0%, #dfbf7c 100%);
  color: #ffffff;
}

.zs-why-card-copy h3 {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
}

.zs-why-card-copy p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
}

.zs-cert-section {
  padding: 56px 0 28px;
  background: #ffffff;
}

.zs-cert-title {
  margin-bottom: 28px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #1f1f1f;
}

.zs-cert-slider {
  position: relative;
}

.zs-cert-swiper {
  overflow: hidden;
  padding: 4px 0;
}

.zs-cert-swiper .swiper-wrapper {
  align-items: flex-start;
}

.zs-cert-slide {
  height: auto;
  display: flex;
  align-items: flex-start;
}

.zs-cert-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border: 1px solid rgba(31, 31, 31, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #7a7a7a;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.zs-cert-prev {
  left: -72px;
}

.zs-cert-next {
  right: -72px;
}

.zs-cert-nav:hover {
  color: #1f1f1f;
  border-color: rgba(31, 31, 31, 0.3);
  transform: translateY(-2px);
}

.zs-cert-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.zs-cert-nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.zs-cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 12px;
}

.zs-cert-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #ece3d2;
}

.zs-cert-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.zs-cert-item:hover .zs-cert-media img {
  transform: scale(1.04);
}

.zs-cert-card-title {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #1f1f1f;
}

@media (max-width: 991px) {
  .zs-why-section {
    padding: 72px 0 80px;
  }

  .zs-why-title {
    margin-bottom: 32px;
    font-size: 40px;
  }

  .zs-why-grid {
    grid-template-columns: 1fr;
  }

  .zs-why-feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zs-why-card {
    min-height: 240px;
  }

  .zs-why-card-copy {
    padding: 22px 20px;
  }

  .zs-why-card-copy h3 {
    font-size: 26px;
  }

  .zs-why-card-copy p {
    font-size: 16px;
  }

  .zs-cert-section {
    padding: 48px 0 24px;
  }

  .zs-cert-title {
    margin-bottom: 24px;
    font-size: 40px;
  }

  .zs-cert-nav {
    width: 42px;
    height: 42px;
    margin-top: -21px;
  }

  .zs-cert-nav-icon {
    width: 13px;
    height: 13px;
  }

  .zs-cert-prev {
    left: -20px;
  }

  .zs-cert-next {
    right: -20px;
  }

  .zs-cert-item {
    gap: 10px;
  }

  .zs-cert-media {
    padding: 10px;
  }

  .zs-cert-card-title {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .zs-why-section {
    padding: 56px 0 60px;
  }

  .zs-why-title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .zs-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zs-why-feature {
    grid-template-columns: 1fr;
    background: #ffffff;
  }

  .zs-why-card-image {
    order: 1;
  }

  .zs-why-card-copy {
    order: 2;
  }

  .zs-why-card {
    min-height: auto;
  }

  .zs-why-card-image img {
    aspect-ratio: 1.2 / 1;
  }

  .zs-why-card-copy {
    padding: 20px 18px;
  }

  .zs-why-card-copy h3 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .zs-why-card-copy p {
    font-size: 18px;
    line-height: 1.7;
  }

  .zs-cert-section {
    padding: 40px 0 20px;
  }

  .zs-cert-title {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .zs-cert-nav {
    width: 36px;
    height: 36px;
    margin-top: -18px;
  }

  .zs-cert-nav-icon {
    width: 12px;
    height: 12px;
  }

  .zs-cert-prev {
    left: -8px;
  }

  .zs-cert-next {
    right: -8px;
  }

  .zs-cert-item {
    gap: 8px;
  }

  .zs-cert-media {
    padding: 8px;
  }

  .zs-cert-card-title {
    font-size: 16px;
  }
}

.zs-news-section {
  padding: 84px 0 100px;
  background: #ffffff;
}

.zs-news-title {
  margin-bottom: 42px;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  color: #1f1f1f;
}

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

.zs-news-main-link,
.zs-news-item-link {
  display: block;
  transition: transform 0.25s ease;
}

.zs-news-main-image {
  overflow: hidden;
  margin-bottom: 18px;
}

.zs-news-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18 / 0.78;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.zs-news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: #8f8f8f;
}

.zs-news-meta::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #cfcfcf;
}

.zs-news-date {
  font-size: 14px;
  line-height: 1;
  color: #8f8f8f;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.zs-news-main-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  color: #1f1f1f;
  transition: color 0.25s ease;
}

.zs-news-list {
  display: grid;
  gap: 28px;
}

.zs-news-item-link {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.zs-news-item-image {
  overflow: hidden;
}

.zs-news-item-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.84;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.zs-news-item-title {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.35;
  color: #1f1f1f;
  transition: color 0.25s ease;
}

.zs-news-item-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #7d7d7d;
}

.zs-news-main-link:hover,
.zs-news-item-link:hover {
  transform: translateY(-4px);
}

.zs-news-main-link:hover .zs-news-main-image img,
.zs-news-item-link:hover .zs-news-item-image img {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.zs-news-main-link:hover .zs-news-main-title,
.zs-news-item-link:hover .zs-news-item-title {
  color: #b88634;
}

.zs-news-main-link:hover .zs-news-date,
.zs-news-item-link:hover .zs-news-date {
  color: #b88634;
  letter-spacing: 0.4px;
}

.zs-sample-section {
  padding: 0 0 96px;
  background: #ffffff;
}

.zs-sample-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: url("../img/perfume-oil-banner.webp") center center / cover no-repeat;
}

.zs-sample-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.88) 45%, rgba(255, 255, 255, 0.62) 100%);
}

.zs-sample-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 56px 32px;
  text-align: center;
}

.zs-sample-title {
  margin: 0 0 28px;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.12;
  color: #1f1f1f;
}

.zs-sample-text {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.75;
  color: #7d7d7d;
}

.zs-sample-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: linear-gradient(90deg, #efcb82 0%, #b88022 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.zs-sample-button:hover {
  background: linear-gradient(90deg, #f4d796 0%, #c98b24 100%);
  box-shadow: 0 14px 28px rgba(184, 128, 34, 0.24);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .zs-news-section {
    padding: 72px 0 80px;
  }

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

  .zs-news-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .zs-news-item-link {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .zs-sample-section {
    padding-bottom: 80px;
  }

  .zs-sample-banner,
  .zs-sample-content {
    min-height: 320px;
  }

  .zs-sample-title {
    margin-bottom: 22px;
    font-size: 44px;
  }

  .zs-sample-text {
    max-width: 680px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .zs-news-section {
    padding: 56px 0 60px;
  }

  .zs-news-title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .zs-news-layout {
    gap: 24px;
  }

  .zs-news-main-image {
    margin-bottom: 14px;
  }

  .zs-news-meta {
    gap: 10px;
    margin-bottom: 8px;
  }

  .zs-news-meta::before {
    width: 34px;
  }

  .zs-news-main-title {
    font-size: 16px;
  }

  .zs-news-list {
    gap: 22px;
  }

  .zs-news-item-link {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .zs-sample-section {
    padding-bottom: 60px;
  }

  .zs-sample-banner,
  .zs-sample-content {
    min-height: 260px;
  }

  .zs-sample-content {
    padding: 40px 20px;
  }

  .zs-sample-title {
    margin-bottom: 16px;
    font-size: 32px;
  }

  .zs-sample-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .zs-sample-button {
    min-width: 136px;
    min-height: 46px;
    padding: 10px 22px;
    font-size: 16px;
  }

  .zs-news-item-title {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .zs-news-item-content p {
    font-size: 14px;
  }
}
