.content-block {
  margin-bottom: 48px;
}
@media (max-width: 1023px) {
  .content-block {
    margin-bottom: 32px;
  }
}
.content-block h1 {
  max-width: 800px;
  color: #0B1031;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.96px;
  margin-bottom: 32px;
}
@media (max-width: 1023px) {
  .content-block h1 {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
    margin-bottom: 24px;
  }
}
.content-block h2 {
  max-width: 800px;
  color: #0B1031;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .content-block h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.content-block h3, .content-block h4, .content-block h5, .content-block h6 {
  max-width: 800px;
  color: #0B1031;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 16px;
}
.content-block p {
  max-width: 800px;
  color: #121926;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 16px;
}
@media (max-width: 1023px) {
  .content-block p {
    font-size: 16px;
    line-height: 24px;
  }
}
.content-block p:last-child {
  margin-bottom: 0;
}
.content-block span {
  color: #121926;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 1023px) {
  .content-block span {
    font-size: 16px;
    line-height: 24px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 1023px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .product-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
.product-grid .product-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #E3E8EF;
  background: #FFF;
}
.product-grid .product-grid__item img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  -o-object-fit: none;
     object-fit: none;
}
.product-grid .product-grid__item h3 {
  color: #0B1031;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.single-product__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1280px) {
  .single-product__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .single-product__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .single-product__grid {
    grid-template-columns: 1fr;
  }
}

.single-product__grid--item.no-price {
  display: flex;
  flex-direction: column;
}

.single-product__grid--item.no-price h3 {
  flex-grow: 1;
}

.single-product__grid--item.no-price .product-button {
  margin-top: auto;
}
.single-product__grid .single-product__grid--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid #EEF2F6;
  background: #FFF;
  -webkit-box-shadow: 0 6px 20px 0 rgba(49, 46, 46, 0.06);
          box-shadow: 0 6px 20px 0 rgba(49, 46, 46, 0.06);
}
.single-product__grid .single-product__grid--item img {
  width: 100%;
  max-height: 256px;
  min-height: 256px;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  margin-bottom: 4px;
}
.single-product__grid .single-product__grid--item h3 {
  color: #0B1031;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}
.single-product__grid .single-product__grid--item .product-price {
  color: #0B1031;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 8px;
  margin-top: auto;
}
.single-product__grid .single-product__grid--item .product-price .amount bdi {
  color: #0B1031;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
}
.single-product__grid .single-product__grid--item .product-price .amount bdi span {
  color: #0B1031;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 30px;
}
.single-product__grid .single-product__grid--item .product-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  max-height: 48px;
  min-height: 48px;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: #364FF3;
  -webkit-box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
          box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}