.catalog-categories .swiper {
  padding-bottom: 21px;
}
.catalog-categories .swiper .swiper-slide {
  display: flex;
  gap: 10px;
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 15px;
  height: auto;
}
@media screen and (min-width: 1440px) {
  .catalog-categories .swiper .swiper-slide {
    padding: 20px;
    gap: 20px;
  }
}
.catalog-categories .swiper .swiper-slide .cat-image {
  display: flex;
  width: 50%;
  max-width: 100px;
  border-radius: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.catalog-categories .swiper .swiper-slide nav {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 4px;
  max-height: 25vh;
  flex-grow: 1;
  overflow: auto;
}
@media screen and (min-width: 1024px) {
  .catalog-categories .swiper .swiper-slide nav {
    gap: 8px;
  }
}
.catalog-categories .swiper .swiper-slide nav li a {
  text-decoration: none;
  display: flex;
  font-size: 0.8em;
  opacity: 0.8;
}
.catalog-categories .swiper .swiper-slide nav li:first-child a {
  font-weight: bold;
  font-size: 1em;
}