/* =========================
   CONTAINER
========================= */
.partner-section {
    width: 100%;
    padding: 56px 24px;
    display: flex;
    justify-content: center;
}

/* =========================
   GRID DESKTOP
========================= */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px 28px;
    justify-items: center;
    align-items: center;
    max-width: 860px;
    width: 100%;
}

/* =========================
   ITEM
========================= */
.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover */
.partner-item:hover {
    transform: translateY(-6px);
}

/* Logo */
.partner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   MOBILE → SLIDER
========================= */
@media (max-width: 768px) {

  .partner-grid {
    display: block;
  }

  .swiper-wrapper {
    display: flex;
  }

  .swiper-slide {
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .partner-item {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .swiper-pagination {
    margin-top: 15px;
    text-align: center;
  }
	
  .swiper-pagination-bullet {
    background: #D63838;
    opacity: 0.5;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
  }
	
}
