/* ===============================
   NEW AFFILIATION STYLE
================================ */

.aff-new{
  padding:60px 12px;
  background:#f8fafc;
  overflow:hidden;
}

.aff-inner{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.aff-title{
  font-size:30px;
  font-weight:700;
  color:#111827;
  margin-bottom:8px;
}

.aff-sub{
  font-size:14px;
  color:#6b7280;
  margin-bottom:35px;
}

/* SLIDER */
.aff-slider{
  width:100%;
  overflow:hidden;
}

.aff-track{
  display:flex;
  width:200%;
  gap:18px;
  animation: affScroll 22s linear infinite;
}

/* ITEM */
.aff-item{
  flex:0 0 auto;
  width:150px;
  height:200px;
  background:#ffffff;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px;
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.aff-item img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  filter:grayscale(0%);
  transition:.2s ease;
}


/* ANIMATION */
@keyframes affScroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* MOBILE PERFECT */
@media(max-width:768px){

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

  .aff-track{
    animation-duration:12s;
    gap:14px;
  }

  .aff-item{
    width:120px;
    height:150px;
    background:#ffffff;
  }
}