/* Profile card layout for user and other profiles */
.profile-card {
  max-width: 400px;
  margin: 2rem auto 1rem auto;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
}
.profile-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  background: #f0f0f0;
  margin-bottom: 1rem;
  border: 2px solid #e0e0e0;
}
.profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.profile-bio {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.profile-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.profile-stat {
  font-size: 1.1rem;
  color: #333;
}
@media (max-width: 600px) {
  .profile-card {
    max-width: 98vw;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
  .profile-avatar {
    width: 72px;
    height: 72px;
  }
}
