.l-stack {
  display: flex;
  flex-direction: column;
}

.l-stack--2 {
  gap: var(--space-2);
}

.l-stack--3 {
  gap: var(--space-3);
}

.l-stack--4 {
  gap: var(--space-4);
}

.l-stack--5 {
  gap: var(--space-5);
}

.l-stack--6 {
  gap: var(--space-6);
}

.l-stack--8 {
  gap: var(--space-8);
}

.l-row {
  display: flex;
  align-items: center;
}

.l-row--between {
  justify-content: space-between;
}

.l-row--end {
  justify-content: flex-end;
}

.l-auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.l-auth-panel {
  width: var(--auth-panel-width);
  background: var(--color-surface);
  border-radius: var(--radius-panel);
  padding: var(--space-auth-pad);
  box-shadow: none;
  border: 0;
}

.l-cabinet-shell {
  min-height: 100vh;
  padding: var(--space-7) var(--space-4);
}

.l-cabinet {
  width: var(--cabinet-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.l-brand {
  font-family: var(--font-display);
  font-size: var(--fs-brand);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}
