.profile-view {
  display: flex;
  flex-direction: column;
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.profile-header img {
  width: 130px;
  height: 130px;
  margin-right: 20px;
  object-fit: cover;
  object-position: center;
}

.profile-header p {
  font-size: 16px;
  color: var(--accent);
  text-transform: capitalize;
}

.profile-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.user-counts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-counts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid var(--shadow);
}

.bio {
  font-size: 16px;
  font-style: italic;
}

.user-posts {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 10px;
  border-radius: 4px;
  border-top: 1px solid var(--shadow);
}

.no-posts {
  text-align: center;
  font-size: 18px;
}
.no-posts img {
  display: none;
  border: 1px solid var(--shadow);
  background: var(--shadow);
  margin-bottom: 10px;
}
