.faction-grid article > img {
  width: 58px;
  height: 58px;
}

.card-showcase {
  overflow: hidden;
  padding: 90px 0;
}

.faction-stream {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  margin-bottom: 30px;
}

.all-cards-stream {
  color: var(--gold);
  margin-bottom: 0;
}

.stream-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font: 700 1.15rem Georgia, serif;
}

.stream-title img {
  width: 52px;
  height: 52px;
}

.stream-window {
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.stream-track {
  display: flex;
  width: max-content;
  gap: 15px;
  animation: card-flow 65s linear infinite;
  will-change: transform;
}

.faction-stream:nth-of-type(even) .stream-track {
  animation-direction: reverse;
}

.stream-track:hover {
  animation-play-state: paused;
}

.stream-card {
  display: block;
  width: 142px;
  aspect-ratio: 59 / 86;
  object-fit: cover;
  border: 1px solid currentColor;
  border-radius: 9px;
  box-shadow: 0 13px 25px #000a;
  transition: transform .2s;
}

.stream-card:hover {
  transform: translateY(-7px) scale(1.03);
}

@keyframes card-flow {
  to { transform: translateX(calc(-50% - 7.5px)); }
}

@media (max-width: 950px) {
  .faction-stream { grid-template-columns: 100px 1fr; }
  .stream-card { width: 120px; }
}

@media (max-width: 650px) {
  .card-showcase { padding: 65px 0; }
  .faction-stream { display: block; margin-bottom: 38px; }
  .stream-title { flex-direction: row; padding: 0 22px 8px; }
  .stream-title img { width: 42px; height: 42px; }
  .stream-card { width: 105px; }
}

@media (prefers-reduced-motion: reduce) {
  .stream-track {
    animation: none;
    max-width: 100%;
    overflow-x: auto;
  }
  .stream-card { flex: 0 0 auto; }
}
