.user-profile__header {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.user-profile__link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.user-profile__link:hover .user-profile__name,
.user-profile__name .user-profile__link:hover {
  color: #0077cc;
  text-decoration: underline;
}

.user-profile__image .user-profile__link:hover {
  opacity: 0.9;
}

.user-profile__image {
  flex: 0 0 120px;
}

.user-profile__image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.user-profile__info {
  flex: 1;
}

.user-profile__name {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.user-profile__description {
  margin-bottom: 1rem;
  color: #666;
}

.user-profile__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.user-profile__social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.user-profile__social .social-icon:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.user-profile__social .social-icon svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.user-profile__social .social-icon:hover svg {
  fill: #000;
}
