.user-profile_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 22px;
}
.user-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-info {
  display: flex;
  flex-direction: column;
}
.user-info p {
  font-weight: 500;
  font-size: 1.4rem;
}
.user-name {
  font-size: 2rem;
  font-weight: 500;
}
.user-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: rgb(56, 56, 56);
}
.blog-list_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-list {
  padding: 2px 6px;
  transition: all 0.2s;
}
.blog-list:hover {
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.548);
}
.blog-list a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
