.static-products-fallback {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: auto;
  margin: 36px var(--containerGutter, 25px) 0;
}

body.is-view .block-450966741 .static-products-fallback {
  gap: var(--smallGap, 25px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.static-product-card {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.static-product-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}

.static-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.static-product-card__name {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
}

.static-product-card__description {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.72;
  white-space: pre-line;
}

.static-product-card__more {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  margin-top: auto;
}

@media (max-width: 767px) {
  .static-products-fallback {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.is-view .block-450966741 .static-products-fallback {
    grid-template-columns: 1fr;
  }
}
