.user {
  display: block;
  text-decoration: none; }
    .user:hover .user__country {
      color: #0f8ce9;
    }
    .user:active .user__country {
      color: #1552bc;
    }

.user__photo {
  float: left;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  overflow: hidden; }
  .user__photo > img {
    width: 100%;
    height: auto; }

.user__about {
  margin-left: 70px; }

.user__name {
  margin-top: 5px;
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: #333; }
  .user__name:hover {
    color: #358fab; }
  .user__name:hover span {
    color: #3b3b3b;
  }

.user__country {
  margin-top: 2px;
  color: #333;
  font-weight: 300;
  font-size: 13px; }
  .user__country--focus {
    color: #1552bc;
  }
  .user__country--hover {
    color: #108dea;
  }