 .certificate-slider {
    background: #edf5e9;
    padding: 70px 0;
    overflow: hidden;
  }

  .certificate-slider__header {
    text-align: center;
    margin-bottom: 50px;
  }

  .certificate-slider__title {
    margin: 0;
    color: #111;
    font-size: 36px ;
    /*font-size: clamp(28px, 3.5vw, 48px);*/
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  /* =========================
      SLIDE
  ========================= */
  
  .certificate-slider .swiper-wrapper{
   
    padding: 20px 0;
   
  }

  .certificate-slider__slide {
    height: auto;
  }

  .certificate-slider__card {
    height: 180px;
    background: rgba(255, 255, 255, 1);
    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    transition: all 0.4s ease;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.5);
  }

  .certificate-slider__card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  }

  .certificate-slider__image {
    width: 100%;
    max-width: 120px;
    object-fit: contain;

    transition: transform 0.4s ease;
  }

  .certificate-slider__card:hover .certificate-slider__image {
    transform: scale(1.08);
  }

  /* =========================
      MOBILE
  ========================= */

  @media (max-width: 767px) {

    .certificate-slider {
      padding: 50px 0;
    }

    .certificate-slider__header {
      margin-bottom: 35px;
    }

    .certificate-slider__card {
      height: 140px;
      border-radius: 18px;
      padding: 16px;
    }

    .certificate-slider__image {
      max-width: 90px;
    }

  }

  /* =========================
      SMALL MOBILE
  ========================= */

  @media (max-width: 480px) {

    .container {
      padding: 0 12px;
    }

    .certificate-slider__card {
      height: 120px;
    }

    .certificate-slider__image {
      max-width: 75px;
    }

  }