.badges-section {
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.badges-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  font-family: monospace;
}

.badges-wrap {
  overflow: hidden;
  position: relative;
}

.badges-fade-left,
.badges-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.badges-fade-left  { left:  0; background: linear-gradient(to right, #0e0d0c, transparent); }
.badges-fade-right { right: 0; background: linear-gradient(to left,  #0e0d0c, transparent); }

.badges-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: badgeSlide 30s linear infinite;
}

.badges-track:hover { animation-play-state: paused; }

@keyframes badgeSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.badge-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.2s;
  text-decoration: none;
}

.badge-chip:hover { border-color: rgba(255,255,255,0.25); }

.badge-chip img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: contain;
}

.b-name { font-size: 12px; font-weight: 500; color: #e8e6e1; }
.b-sub  { font-size: 10px; color: #888; }
