.profile-page {
  min-height: 70vh;
  display: grid;
  place-items: start center;
  padding: 2rem 1rem 3rem;
  background: #f3f6f9;
}

.profile-locked {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.profile-locked div {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid #d8e0e8;
  border-radius: 0.65rem;
  background: #f5f8fb;
}

.profile-locked strong { color: #173b59; }
.profile-locked span { color: #4b5d6d; }
.auth-card small { color: #4b5d6d; font-weight: 400; }
.profile-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.profile-secondary { border: 1px solid #075ca8; color: #075ca8; background: #ffffff; }
#emailCodeForm { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid #d8e0e8; }
#emailCodeForm h2 { margin: 0; color: #072f52; }

@media (max-width: 600px) {
  .profile-page { padding: 1rem 0.75rem 2rem; }
  .profile-locked, .profile-actions { grid-template-columns: 1fr; }
}
