.profile-page {
  gap: 40px;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.profile-status {
  background: var(--card);
  border: 1px solid var(--stroke);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-user {
  color: var(--muted);
  font-size: 0.95rem;
}

.profile-section .section-header {
  margin-bottom: 16px;
}

.profile-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 10px;
}

.profile-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.profile-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-value {
  font-weight: 600;
}

.muted-card {
  color: var(--muted);
}
