.for-section {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 24px;
  margin-top: 80px;
  margin-bottom: 80px;
}

/* image */
.sets-image-wrapper {
  max-height: 691px;
  width: 100%;
  height: 1000%;
}

.sets-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

/* Products */
.for-products-grid .products {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 24px;
}

.for-products-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* View all link */
.sets-and-kits-products .view-all-link {
  text-align: end;
  margin-top: 0;
}

.sets-and-kits-products .view-all-link a {
  text-decoration: underline;
  color: var(--black1);
}

.sets-and-kits-products .view-all-link a:hover {
  color: var(--grey1);
}

@media (max-width: 1300px) {
  .for-section {
    grid-template-columns: 230px 1fr;
  }
}

@media (max-width: 1070px) {
  .for-section {
    grid-template-columns: 1fr;
  }

  .for-section > :first-child {
    order: 2;
  }

  .for-section > :last-child {
    order: 1;
  }
}

@media (max-width: 950px) {
  .for-products-grid .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .for-section {
    gap: 32px;
  }
  .for-products-grid .products li.product:last-child {
    grid-column: 1 / -1;
  }

  .for-products-grid {
    gap: 32px;
  }

  .for-products-grid .products li.product:last-child img {
    height: 320px;
  }

  .sets-and-kits-products .view-all-link {
    text-align: start;
  }

  .sets-image-wrapper {
    max-height: 318px;
  }
}
