.profile-content {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.profile-content h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.profile-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.profile-card h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.profile-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.profile-card label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.profile-card input {
  padding: 0.65rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s;
}

.profile-card input:focus {
  outline: none;
  border-color: var(--primary);
}

.profile-card input:disabled {
  opacity: 0.5;
  background: var(--bg);
}

.profile-card .hint {
  font-size: 0.8rem;
  color: var(--text-light);
}

.btn-save {
  padding: 0.65rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-save:hover {
  background: var(--primary-dark);
}

.msg {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.msg-success {
  color: #5a9a6a;
}

.msg-error {
  color: var(--danger);
}

.profile-card-muted {
  background: var(--bg);
  border-color: transparent;
}

.profile-card-muted p {
  color: var(--text-light);
  font-size: 0.9rem;
}
