
  .partner-bar {
    width: 100%;
    padding: 48px 0 40px;
  }

  .partner-bar__label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 36px;
  }

  .partner-bar__outer {
    overflow: hidden;
    position: relative;
  }
  .partner-bar__outer.centered {
    display: flex;
    justify-content: center;
  }
  .partner-bar__outer::before,
  .partner-bar__outer::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
  }
  .partner-bar__outer.centered::before,
  .partner-bar__outer.centered::after { display: none; }
  .partner-bar__outer::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
  .partner-bar__outer::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }

  .partner-bar__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll 30s linear infinite;
  }
  .partner-bar__track.no-anim {
    animation: none;
  }
  .partner-bar__outer:hover .partner-bar__track { animation-play-state: paused; }

  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  .partner-bar__item {
    display: flex; align-items: center; justify-content: center;
    padding: 0 52px;
    height: 52px;
    border-right: 1px solid #ebebeb;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .partner-bar__item:first-child { border-left: 1px solid #ebebeb; }
  .partner-bar__item:hover { opacity: 1; }

  .partner-bar__item img {
    height: 28px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.2s;
  }
  .partner-bar__item:hover img { filter: grayscale(0%); }

  .partner-bar__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .partner-bar__label-text {
    font-size: 13px;
    font-weight: 600;
    color: #0d0d0d;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: color 0.2s;
  }
  .partner-bar__item:hover .partner-bar__label-text { color: #333; }

  .partner-bar__fallback {
    display: flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 6px;
    background: #eee;
    font-size: 13px; font-weight: 700; color: #999;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
  }
  .partner-bar__item:hover .partner-bar__fallback { background: #222; color: #fff; }

  /* ── ROTATOR ROW ── */
  .rotator-row {
    display: none;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    border-top: 1px solid #ebebeb;
    padding-top: 0;
  }

  .rot-slot {
    display: flex; align-items: center; justify-content: center;
    padding: 0 52px;
    height: 52px;
    border-right: 1px solid #ebebeb;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
    overflow: hidden;
    min-width: 120px;
  }
  .rot-slot:first-child { border-left: 1px solid #ebebeb; }
  .rot-slot:hover { opacity: 1; }

  .rot-slot img {
    height: 28px; max-width: 100px; object-fit: contain;
    filter: grayscale(100%); transition: filter 0.2s;
  }
  .rot-slot:hover img { filter: grayscale(0%); }
  .rot-slot:hover .partner-bar__fallback { background: #222; color: #fff; }
  .rot-slot:hover .partner-bar__label-text { color: #333; }
  .rot-slot .partner-bar__inner {
    display: flex; flex-direction: column; align-items: center; gap: 7px;
  }

  @keyframes flipOut {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-12px); }
  }
  @keyframes flipIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .rot-slot.flip-out { animation: flipOut 0.3s ease forwards; }
  .rot-slot.flip-in  { animation: flipIn  0.35s ease forwards; }