/* Manual-only layout corrections. Keep this filename content-versioned. */

.manual-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
}

.manual-switcher a {
  display: block;
  padding: 14px 16px;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
}

.manual-switcher a:hover,
.manual-switcher a:focus-visible {
  border-color: var(--accent);
}

.manual-switcher strong,
.manual-switcher span {
  display: block;
}

.manual-switcher span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.manual-switcher-current {
  border-color: var(--accent) !important;
}

.manual-figure {
  max-width: 960px;
}

.manual-figure-grid {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.manual-figure-grid .manual-figure {
  max-width: none;
  margin-top: 0;
}

.console-figure-grid .console-phone-figure {
  max-width: 420px;
  justify-self: center;
}

@media (max-width: 560px) {
  .manual-switcher {
    grid-template-columns: 1fr;
  }
}
