.game-details .content .right-info ul {
  display: flex;
  flex-wrap: wrap;      /* si no caben, bajan */
  justify-content: space-between;
  padding: 0;
}

.game-details .content .right-info ul li {
  display: block;       /* anulamos inline-block */
  width: auto;          /* quitamos el 30% */
  flex: 1 1 auto;       /* se reparten el espacio */
  text-align: center;
}