.podium-avatars {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px auto 10px;
  max-width: 230px;
}

.podium-avatars span {
  width: 62px;
  height: 62px;
  margin: 0 -5px;
  border: 5px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 5px 16px rgba(17, 25, 47, .16);
  display: grid;
  place-items: center;
  font-family: Unbounded, sans-serif;
  font-size: 18px;
}

.podium-names {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 12px;
  margin: 10px 0 16px;
}

.podium-names h2 {
  margin: 0;
  font-size: 15px;
}

.podium-card.first,
.podium-card.second,
.podium-card.third {
  height: auto;
  min-height: 350px;
}

.podium-card.first { min-height: 380px; }
.podium-card.third { min-height: 330px; }

@media (max-width: 700px) {
  .podium {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 15px 14px;
    margin-right: -15px;
    margin-left: -15px;
  }

  .podium-card {
    flex: 0 0 245px;
    order: initial !important;
    scroll-snap-align: center;
  }

  .podium-card.first { order: -1 !important; }
  .podium-card.first,
  .podium-card.second,
  .podium-card.third { min-height: 340px; }
  .podium-avatars span { width: 54px; height: 54px; font-size: 15px; }
  .podium-names h2 { font-size: 13px; }
}
