

.category-background {
  height: 231px;
  width: 100vw;
  background-image: var(--background);
  position: absolute;
  z-index: -1;
  left: 0;
  background-size: cover;
}

.subcat .category-background {
  height: 102px;
}
.subcat .subcategories{
  margin-top: 50px;
}
.hiro {
  width: 100%;
  border-radius: 16px;
  overflow: hidden; 
  height: 205px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 104px;
}

.hiro .background {
  position: absolute;
  left: 0; 
  right: 0;
  bottom: 0;
  top: 0;
  background-image: var(--background);
  background-size: cover;
  background-position: 70% center;
  z-index: -1;
}

.hiro .content {
  width: 100%;
  max-width: 600px;
  background: linear-gradient(to right, var(--ccolor) 50%, transparent);
  height: 100%;
  position: absolute;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 110px 0 132px;
  box-sizing: border-box;
  gap: 3px;
  z-index: 1;
}

.hiro .content .shape {
  width: 353px;
  height: 353px;
  background-color: var(--ccolor);
  border-radius: 100%;
  position: absolute;
  left: -100px;
  top: 30px;
  z-index: -1;
  filter: blur(100px);
  pointer-events: none;
  user-select: none;
}

.hiro h3 {
  font-size: 34px;
  font-weight: lighter;
  margin: 0;
}
.hiro h1 {
  font-size: 34px;
  font-family: 'Syne', sans-serif;
  margin: 0;
  font-weight: 600;
}

.hiro .icon {
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: left;
  left: -22px;
  user-select: none;
  pointer-events: none;
}

.subcategories {
  margin-bottom: 44px;
}
.hiro.search-result {
  height: 78px;
  background-color: white;
  border: solid 1px #eaeaea;
  margin-bottom: 0px;
}

.hiro.search-result .content {
  width: 100%;
  padding: 20px 28px;
  color: black;
}

.hiro.search-result + .filter-top {
  border-top: none;
}

@media screen and (max-width: 800px) {
  .hiro .content {
  }
}
.pagination {
  margin: 0;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px;
}
.pagination a {
  display: inline;
}
.pagination a,.pagination span  {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  color: #000;
}

.pagination a, .pagination span  {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.pagination .current {
  background-color: #f8f8f8;
  color: black;
  font-weight: 500;
}
.pagination a:hover:not(.active) {
  background-color: #EAEAEA;
} 

.pagination a.page-numbers, span.page-numbers {
  width: 36px;
  height: 36px;
  padding: 0px;
  border-radius: 100px !important;
  line-height: 36px;
}
.pagination a.page-numbers.next,
.pagination a.page-numbers.prev {
  width: auto !important;
  padding: 0 12px;
}

.pagination .next, .pagination .prev {
  color: var(--grt);
}

.pagination a.next:hover, .pagination a.prev:hover {
  background-color: transparent;
  opacity: 0.7;
}

.pagination .next span, .pagination .prev span {
  font-size: 22px;
  padding: 0px;
  position: relative;
  top: -1px;
  color: var(--grt);
}

@media screen and (max-width: 600px) {
  .hiro {
    position: relative;
    left: -24px;
    width: 100vw;
    border-radius: 0px;
    height: 112px;
    margin-bottom: 45px;
  }
  .hiro .content {
    max-width: 400px;
    padding-left: 57px;
    padding-right: 57px;
    background: linear-gradient(to right, var(--ccolor) 33%, transparent);
  }
  .hiro .content .shape {
    width: 192px;
    height: 192px;
    left: -60px;
    top: 14px;
    filter: blur(50px);
    display: none;
  }
  .hiro .icon {
    height: 64px;
    width: 64px;
    left: -20px;
  }
  .hiro h3 {
    font-size: 18px;
  }
  .hiro h1 {
    font-size: 18px;
    /* max-width: 175px; */
    max-width: 100%;
  }
  .category-background {
    display: none;
  }

  .subcategories h2 {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .subcategories .indicators {
    display: none;
  }
  .subcategories .right {
    display: none;
  }


  .subcat .category-background {
    height: 56px;
    display: block !important;
  }
  .subcat .hiro {
    left: 0;
    width: auto;
    top: 14px;
    height: 52px;
    border-radius: 8px;
    margin-bottom: 13px;
  }
  .subcat .hiro .content {
    padding: 0px 13px;
  }
  .subcat .hiro .content h1 {
    max-width: 100%;
  }
}