/* Command palette reveal */
.command-stage {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 32px;
}

.command-shell {
  width: min(920px, 100%);
}

.command-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.command-input {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.command-list {
  position: relative;
  display: grid;
  padding: 10px;
}

.command-cursor {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  height: 58px;
  border-radius: 8px;
  background: #111315;
}

.command-item {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: transparent;
  color: #111315;
  cursor: pointer;
  text-align: left;
}

.command-item.is-active {
  color: #f7f2e8;
}

@media (max-width: 640px) {
  .command-item {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
}
