/* Blog section queries */

@media screen and (min-width:768px) {
  .blog-slider__slide-image--mobile {
    display: none;
  }

  .blog-slider__slide-image--desktop {
    display: block;
  }

  .blog-slider__container {
    padding: 50px;
    background:
      url("/data/img/blog-bg.png") center / cover no-repeat,
      linear-gradient(100.3deg, #2E2E92 -11.36%, #71A0FD 108.8%);
  }

  .blog-slider__title {
    font-size: 56px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 46px;
  }

  .blog-slider__slider-container {
    gap: 25px;
  }

  .blog-slider__slide-wrap {
    position: relative;
    padding: 50px 0 90px 30px;
    grid-template-columns: 1fr 0.7fr;

  }

  .blog-slider__slide-title {
    font-size: 40px;
  }

  .blog-slider__slide-description {
    font-size: 20px;
  }

  .blog-slider__slide-disclaimer {
    font-size: 16px;
    text-wrap: balance;
  }

  .blog-slider__slide-image-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: fit-content;
    z-index: 0;
  }

  .blog-slider__slide-content {
    position: relative;
    z-index: 1;
    padding: 0;
  }
}



@media screen and (min-width:500px) {
  .articles__list.swiper-wrapper {
    grid-template-columns: unset;
  }
}

@media screen and (min-width:768px) {
  .articles__wrapper {
    padding: 50px 50px 60px;
    gap: 54px;
  }

  .articles__title {
    font-size: 40px;
  }

  .articles__item-wrapper {
    padding: 30px;
  }

  .articles__item-title {
    font-size: 24px;
  }

  .articles__load-more--mobile {
    display: none;
  }

  .articles__pagination-container {
    margin-top: 50px;
  }

}
@media (max-width: 900px) {
    .articles__list-wrapper .swiper-wrapper {
        display: flex !important;
        flex-direction: column !important;
        transform: none !important;
        height: auto !important;
        gap: 0 !important;
    }

    .articles__list-wrapper .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .articles__list-wrapper .swiper-slide-active,
    .articles__list-wrapper .swiper-slide-active + .swiper-slide,
    .articles__list-wrapper .swiper-slide-active + .swiper-slide + .swiper-slide {
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        margin-bottom: 30px !important;
    }

    .articles__pagination-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px;
        margin-top: 20px !important;
        padding-bottom: 40px;
    }

    .articles__pagination-wrapper.swiper-pagination {
        display: none !important;
    }


    .articles__button {
        position: static !important;
        display: flex !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        background: #4A69BD !important;
        border-radius: 50% !important;
        color: white !important;
        cursor: pointer !important;
        z-index: 10;
        opacity: 1 !important;
    }


    .articles__button svg,
    .articles__button::after {
        color: white !important;
    }

    .articles__button.swiper-button-disabled {
        background: #DDE4F0 !important;
        color: #A0AEC0 !important;
        cursor: not-allowed !important;
        opacity: 0.7 !important;
    }
}

@media (max-width: 500px) {
    .articles__button {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }
    .articles__pagination-container {
        gap: 20px;
    }
}