#vlg-live-so__info {
  margin-bottom: 32px;
  text-align: center;
}

#vlg-live-so__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: minmax(240px, max-content);
  gap: 20px;
}
@media (max-width: 400px) {
  #vlg-live-so__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.vlg-live-so__list__card {
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 1px 3px 0 #0000001a, 0px 1px 2px 0 #0000000f;
  border-radius: 6px;
}

/* Card top row */
.vlg-live-so__list__card__badge {
  min-height: 36px;
  color: #ffffff;
  font-size: 14px;
  background-color: #000000;
  border-radius: 0 0 9999px 0;
}
.vlg-live-so__list__card__info {
  gap: 2px;
  text-align: right;
  font-size: 12px;
  color: #71717a;
  line-height: 1;
}

/* Card route row */
.vlg-live-so-list__card__route-rows {
  position: relative;
}
.vlg-live-so-list__card__connecting-route-line {
  position: absolute;
  border-left: 2px solid #0056d2;
  top: 22px;
  bottom: 22px;
  left: 7px;
}
