.swiper-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  padding: 0;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.swiper-single-prev,
.swiper-single-next {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 35px;
  height: 35px !important;
  transition: background 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
  border: 1px solid transparent;
}
.swiper-single-prev::before,
.swiper-single-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  transition: border-color 0.4s ease;
}
.swiper-single-prev:hover,
.swiper-single-next:hover {
  background: #8cff5a !important;
  border-color: #8cff5a !important;
}
.swiper-single-prev:hover::before,
.swiper-single-next:hover::before {
  border-right-color: #ffffff !important;
  border-left-color: #ffffff !important;
}

.swiper-single-prev {
  background: #999999;
  border-color: #999999;
}
.swiper-single-prev::before {
  border-width: 10px 12px 10px 0;
  border-color: transparent #ffffff transparent transparent;
}

.swiper-single-next {
  background: #282828;
  border-color: #282828;
}
.swiper-single-next::before {
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #ffffff;
}

.custom-post-loop-swiper .swiper-slide {
  height: auto;
}
.custom-post-loop-swiper .swiper-slide [class*=col-] {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0 !important;
}
.custom-post-loop-swiper .swiper-slide .card,
.custom-post-loop-swiper .swiper-slide article {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/*# sourceMappingURL=swiper.css.map */