.products-page {
  background: #f5f7fa;
}
.products-inner {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0, 0, 0, 0);
}
.products-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, rgba(6, 10, 45, 0.45) 0%, rgba(6, 10, 45, 0.2) 50%, rgba(6, 10, 45, 0.1) 100%), url("/assets/products/hero.png") center center / cover no-repeat;
}
.products-hero-inner {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding-top: 200px;
}
.products-hero h1 {
  margin: 0 0 26px;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}
.products-hero p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
}
.products-content {
  padding-bottom: 94px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 67px;
}
.product-card {
  display: flex;
  min-width: 0;
  min-height: 484px;
  overflow: hidden;
  color: inherit;
  background: #fff;
  box-shadow: none;
  transition: box-shadow 0.24s ease, transform 0.24s ease;
  flex-direction: column;
}
a.product-card {
  cursor: pointer;
}
a.product-card:hover,
a.product-card:focus-visible {
  outline: 0;
  box-shadow: 0 18px 28px rgba(73, 92, 129, 0.18);
  transform: translateY(-4px);
}
.product-visual {
  display: block;
  height: 322px;
  overflow: hidden;
  background: #dce9ff;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-copy {
  display: block;
  padding: 28px 28px 30px;
}
.product-title {
  display: block;
  margin-bottom: 18px;
  color: #212123;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.product-desc {
  display: block;
  color: #5e6270;
  font-size: 14px;
  line-height: 21px;
}
@media (max-width: 1480px) {
  .products-grid {
    gap: 32px;
  }
}
@media (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 980px) {
  .products-page {
    background: #f5f7fa;
  }
  .products-inner,
  .products-hero-inner {
    width: calc(100% - 32px);
  }
  .breadcrumb {
    display: none;
  }
  .products-hero {
    height: 275.5px;
    background: linear-gradient(90deg, rgba(5, 10, 45, 0.5), rgba(5, 10, 45, 0.12)), url("/assets/products/hero.png") center center / cover no-repeat;
  }
  .products-hero-inner {
    padding-top: 115px;
    padding-left: 12px;
  }
  .products-hero h1 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.2;
  }
  .products-hero p {
    font-size: 13px;
    line-height: 18px;
  }
  .products-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .product-card {
    min-height: 0;
    border-radius: 0;
  }
  .product-visual {
    height: auto;
    aspect-ratio: 439 / 322;
  }
  .product-copy {
    padding: 18px 16px 20px;
  }
  .product-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
  }
  .product-desc {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 520px) {
  .products-inner,
  .products-hero-inner {
    width: calc(100% - 24px);
  }
  .products-grid {
    gap: 15px;
  }
}
