/* ── Views ────────────────────────────────────────────────── */
.view-container {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.view { display: none; }
.view.active { display: contents; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: box-shadow var(--transition-md);
}
.card-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
}
.card-title {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--cead-dark-text);
}
.card-link {
  font-size: .78rem;
  font-weight: 500;
  color: var(--blue-600);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.card-link:hover { text-decoration: underline; }

