.hero { position: relative; padding: 0 8px; }

.hero-cover {
  height: 128px;
  overflow: hidden;
  background: #1a0a0a;
  position: relative;
  border-radius: 16px;
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 14px 0 16px;
  min-height: 0;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.hero-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid #fff;
  overflow: hidden;
  background: #ddd;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0 4px 26px 0;
  color: #6f6f6f;
}

.hero-stats li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}

.hero-stats span { color: #4a4a4a; }
