.home-blog-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.home-blog-section .caption-text {
  margin-top: 0;
  margin-bottom: 16px;
}

.home-blog-section .heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.home-blog-section .section-title {
  font-family: Satoshi, sans-serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 72px; /* 112.5% */
  color: #F5F7FC;
}

.home-blog-section .buttons-wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
}

.home-blog-section .section-link {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 16px 16px 24px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  color: #2B4DFD;
  text-decoration: none;
  background-color: rgb(14 16 21 / 80%);
  border: none;
  border-radius: 40px;
  outline: none;
  transition-duration: 0.4s;
}

.home-blog-section .section-link path {
  stroke: currentcolor;
}

.home-blog-section .section-link:visited {
  color: #2B4DFD;
}

@media (hover: hover) and (pointer: fine) {
  .home-blog-section .section-link:hover {
    background-color: rgb(240 243 250 / 8%);
  }
}

.home-blog-section .home-blog-swiper-button-wrapper {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.home-blog-section .home-blog-swiper-button-prev,
.home-blog-section .home-blog-swiper-button-next {
  position: relative !important;
  top: initial !important;
  right: initial !important;
  bottom: initial !important;
  left: initial !important;
  display: flex !important;
  place-items: center !important;
  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #f5f7fc;
  background: rgb(14 16 21 / 80%);
  border-radius: 50%;
}

.home-blog-section .home-blog-swiper-button-next path,
.home-blog-section .home-blog-swiper-button-prev path {
  stroke: currentcolor;
}

.home-blog-section .home-blog-swiper-button-prev::after,
.home-blog-section .home-blog-swiper-button-next::after {
  content: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .home-blog-section .home-blog-swiper-button-next:hover,
  .home-blog-section .home-blog-swiper-button-prev:hover {
    background: rgb(240 243 250 / 8%);
  }
}

.home-blog-section .home-blog-item-link {
  text-decoration: none;
}

.home-blog-section .home-blog-item-image-wrapper {
  position: relative;
  height: 240px;
  padding: 4px;
  overflow: hidden;
  border-radius: 12px;
}

.home-blog-section .home-blog-item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.home-blog-section .home-blog-item-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 24px;
}

.home-blog-section .home-blog-item-data {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: 'liga' off;
  line-height: 24px; /* 150% */
  color: rgb(240 243 250 / 40%);
  text-align: center;
  text-decoration: none;
}

.home-blog-section .home-blog-item-title {
  padding: 0;
  margin: 0;
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
  color: #F5F7FC;
}

@media screen and (max-width: 1440px) {
  .home-blog-section {
    padding-top: clamp(40px, 0px + 8.3333vw, 120px);
    padding-bottom: clamp(40px, 0px + 8.3333vw, 120px);
  }

  .home-blog-section .section-title {
    font-size: clamp(40px, 28px + 2.5vw, 64px);
    line-height: 1.125;
  }
}

@media screen and (max-width: 768px) {
  .home-blog-swiper-button-wrapper {
    position: absolute;
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  .home-blog-section .buttons-wrapper {
    justify-content: space-between;
  }

  .home-blog-section .home-blog-swiper-button-prev {
    order: 1 !important;
  }

  .home-blog-section .section-link {
    order: 2;
  }

  .home-blog-section .home-blog-swiper-button-next {
    order: 3 !important;
  }

}

@media screen and (max-width: 480px) {
  .home-blog-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .home-blog-section .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .home-blog-section .home-blog-item-image-wrapper {
    height: 195px;
  }

  .home-blog-section .home-blog-swiper-button-prev,
  .home-blog-section .home-blog-swiper-button-next {
    width: 56px !important;
    height: 56px !important;
  }
}