/* Profile view (mockup 08) — signed-in-as, starting brand, practice mode,
   password cards in a 2-up grid, footer note below. */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  max-width: 900px;
}

.profile-signed-in-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.profile-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-signed-in-name {
  font-weight: 700;
  margin: 0;
}

.profile-signed-in-status {
  margin: 0;
  font-size: 0.85rem;
  color: var(--success-ink);
}

.profile-footnote {
  text-align: center;
  margin-top: var(--space-6);
}

@media (max-width: 720px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}
