.home-to-bla-wrp {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.home-to-bla-wrp .container-fluid {
  width: calc(1430px - 24px + (100vw - 1430px) / 2);
  margin-right: 0;
  padding: 0;
}

.home-to-bla-wrp h2 {
  margin: 0 0 31px;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.03em;
  color: #000000;
  max-width: 830px;
}

.home-bla-block img {
  width: 100%;
  border-radius: 24px;
}

/* Navigation arrows */
.home-to-bla-wrp .swiper-button-next,
.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #e8f8f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  color: #000;
  transition: background 0.3s, color 0.3s;
}

.home-to-bla-wrp .swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #151e1b;
  color: #fff;
}

.home-to-bla-wrp .swiper-button-next::after,
.home-to-bla-wrp .swiper-button-prev::after {
  content: "";
}

.home-to-bla-wrp .swiper-button-next::before {
  content: "\f105"; /* Font Awesome right arrow */
}

.home-to-bla-wrp .swiper-button-prev::before {
  content: "\f104"; /* Font Awesome left arrow */
}

/* Pagination bullets */
.home-to-bla-wrp .swiper-pagination {
  text-align: left;
  padding-top: 20px;
  padding-left: 10px;
}

.home-to-bla-wrp .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  margin: 0 5px;
  transition: background 0.3s;
}

.home-to-bla-wrp .swiper-pagination-bullet-active {
  background: #52a79b; /* Brand color */
}
.home-to-bla-wrp .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  display: none;
}

/* ----------------------------------------
   Mobile styles: shrink heading & fit slider
----------------------------------------- */
@media (max-width: 767px) {
  /* wrapper padding */
  .home-to-bla-wrp {
    padding: 48px 0;
  }

  /* full-width container */
  .home-to-bla-wrp .container-fluid {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }

  /* smaller heading */
  .home-to-bla-wrp h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* force slider to fill */
  .home-to-bla-slider,
  .swiper-container,
  .swiper-wrapper,
  .swiper-slide {
    width: 100%;
  }

  /* tighten up the image block */
  .home-bla-block {
    width: 100%;
  }
  .home-bla-block img {
    border-radius: 16px;
  }

  /* smaller, closer nav arrows */
  .home-to-bla-wrp .swiper-button-prev,
  .home-to-bla-wrp .swiper-button-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
    top: 45%;
  }
  .home-to-bla-wrp .swiper-button-prev {
    left: 8px;
  }
  .home-to-bla-wrp .swiper-button-next {
    right: 8px;
  }

  /* center pagination bullets */
  .home-to-bla-wrp .swiper-pagination {
    text-align: center;
    padding-top: 16px;
    padding-left: 0;
  }
}