
.clients-slider {
  margin-bottom: 64px;
}

.clients-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.clients-slider__slide {
    width: auto;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 160px !important;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
}

.clients-slider__logo {
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.clients-slider__navigation .swiper-button-next,
.clients-slider__navigation .swiper-button-prev {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
}

.clients-slider__navigation .swiper-button-next:after,
.clients-slider__navigation .swiper-button-prev:after {
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;

    width: 56px;
    height: 56px;

    border-radius: 50%;
    background-color: #599d86;

    background-position: center;
    background-repeat: no-repeat;
}

.clients-slider__navigation .swiper-button-prev:after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='18' viewBox='0 0 10 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 1L1 9L9 17' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.clients-slider__navigation .swiper-button-next:after {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='18' viewBox='0 0 10 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L9 9L1 17' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.clients-slider__navigation .swiper-button-disabled:after {
    opacity: 0.5;
    cursor: default;
}

.clients-slider__title--wrapper {
    max-width: 690px;
    height: 112px;

    display: flex;
    align-items: end;

    margin-bottom: 64px;
}

.clients-slider__title {
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
}

.clients-slider__name {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #6B7280; /* можно заменить на var(--text-secondary) */
}

@media screen and (max-width: 1281px) {
    .clients-slider__title--wrapper {
        margin-bottom: 40px;
        height: auto;
    }

    .clients-slider__title {
        font-size: 24px;
    }
}


@media (max-width: 768px) {
  .clients-slider {
    margin-bottom: 40px;
  }
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;

    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);

    white-space: nowrap;
    border: 0;
}

@media screen and (max-width: 767px) {
    .clients-slider__navigation {
        display: none;
    }
}