.profile-card {
  max-width: 480px;
  gap: 28px;
}
.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.profile-meta {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}
.profile-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.profile-logout-btn {
  width: 100%;
  justify-content: center;
}
.profile-login-btn {
  text-decoration: none;
  text-align: center;
}
