.partners-section {
      max-width: 1320px;
      width: 100%;
      margin:100px auto;
    }

    .partners-title {
      font-size: 30px;
      font-family: "GothamProMedium";
      text-align: center;
      margin-bottom:40px;
      color: #1e1e2a;
    }

    /* Кастомные стрелки — тёмно-серые, по центру вертикали */
    .partners-slider {
      position: relative;
      padding: 8px 4px;
    }

    /* Карточка клиники */
    .clinic-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.2s;
    }

    .clinic-logo {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: contain;
      background: #fff;
      border: 1px solid #d4d4d4;    /* лёгкая серая обводка */
      border-radius:10px;            /* закруглённые края */
      padding:0;
      transition: border-color 0.2s;
    }

    .clinic-card:hover .clinic-logo {
      border-color: #a0a0a0;
    }

    .clinic-name {
      margin-top: 12px;
      font-weight: 500;
      font-size: 1.1rem;
      color: #2c2c3a;
      line-height: 1.3;
      max-width: 90%;
    }

    /* Стили для стрелок Swiper — тёмно-серые, крупные, без фона */
    .swiper-button-next,
    .swiper-button-prev {
      color: #2e2e38 !important;       /* тёмно-серый */
      width: 48px;
      height: 48px;
      transition: opacity 0.2s, transform 0.1s;
      top: 50%;
      transform: translateY(-50%);
      margin-top: 0;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 44px;
      font-weight: 600;
      text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

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

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

    /* На очень узких экранах чуть сдвигаем, чтобы не наезжали на контент */
    @media (max-width: 600px) {
      .swiper-button-prev {
        left: -6px;
      }
      .swiper-button-next {
        right: -6px;
      }
    }

    /* Отключаем точки (pagination) — их нет по условию */
    .swiper-pagination {
      display: none;
    }

    /* Немного отступов для слайдов */
    .swiper-slide {
      height: auto;
      display: flex;
      justify-content: center;
      padding: 6px 6px 12px;
    }

    /* Адаптивная подстройка расстояния между слайдами */
    .swiper {
      padding: 8px 8px 16px;
    }

    /* Чтобы стрелки не перекрывали текст заголовка на мобильных */
    @media (max-width: 524px) {
      .partners-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
      }
    }

    /* Лёгкая тень для контейнера слайдера (опционально) */
    .swiper-slide {
      -webkit-tap-highlight-color: transparent;
    }