.overview-view { max-width: 680px; display: flex; flex-direction: column; gap: 1.5rem; }

.overview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
}

.overview-card-head { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.overview-identity  { flex: 1; display: flex; flex-direction: column; gap: 0.35rem; }
.overview-name      { font-size: 1.2rem; color: var(--text-primary); }
.overview-email     { font-size: 0.85rem; color: var(--text-secondary); }

.overview-details { display: flex; flex-direction: column; gap: 0.9rem; }

.overview-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.overview-detail-row:last-child { border-bottom: none; }

.overview-detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.overview-detail-value { font-size: 0.9rem; color: var(--text-secondary); }

.overview-bio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.overview-bio-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.overview-bio-text { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.overview-bio-card--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  color: var(--text-muted);
  border-style: dashed;
}

.overview-bio-card--empty p { font-size: 0.85rem; }

@media (max-width: 768px) {
  .overview-view { max-width: 100%; }
                     }
