/* change swiper buttons to a circle with an arrow with black border and white background */
.swiper-button-next,
.swiper-button-prev {
  position: static !important; /* Remove absolute positioning */
  width: 24px;
  height: 28px;
  line-height: 1;
  border: 2px solid black;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  
}

.swiper-button-prev::after {
  font-size: 12px;
  color: black;
  margin-left: -3px; /* Adjust for better centering */
  font-weight: 900;
    font-family:swiper-icons;

}

.swiper-button-next::after {
  font-size: 12px;
  color: black;
  margin-left: 3px; /* Adjust for better centering */
  font-weight: 900;
    font-family:swiper-icons;

}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

/* Swiper Overrides */
.swiper-pagination {
  position: relative !important;
}

.swiper-pagination-bullet-active {
  background: #0b0b0b !important;
}

.recent-blog-swiper-wrapper,
.blog-swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recent-blog-swiper,
.blog-swiper {
  flex-grow: 1;
  min-width: 0;
}