.shop-by-category-blocks-container-inner {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 5rem;
  text-align: center;
  justify-content: center;
  .shop-by-category-block-wrapper {
    width: calc(100% / 2 - 2rem);
    @media (min-width: 540px) {
      column-gap: 3rem;
      width: calc(100% / 2 - 3rem);
    }
    @media (min-width: 750px) {
      width: calc(100% / 3 - 3rem);
    }
    @media (min-width: 1200px) {
      width: calc(100% / 6 - 3rem);
    }
    .shop-by-category-image-wrapper {
      padding-bottom: 100%;
      position: relative;
      background-color: #f5f5f5;
      border-radius: 50%;
      overflow: hidden;
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 2rem;
        border-radius: 50%;
      }
    }
    .shop-by-category-link-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      column-gap: 1rem;
      font-weight: 500;
    }
  }
}
