.choice-orientation-admin {
  margin: 4px 0 18px;
  padding: 16px;
  border: 1px solid #dce3eb;
  border-radius: 12px;
  background: #f8fafc;
}

.choice-orientation-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.choice-orientation-heading span {
  display: block;
  margin-bottom: 2px;
  color: #2563eb;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.choice-orientation-heading h3 {
  margin: 0;
  color: #101828;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}

.choice-orientation-status {
  color: #667085;
  font-size: 11px;
  font-weight: 750;
}

.choice-orientation-status[data-tone="saving"] {
  color: #175cd3;
}

.choice-orientation-status[data-tone="saved"] {
  color: #027a48;
}

.choice-orientation-status[data-tone="error"] {
  color: #b42318;
}

.choice-orientation-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-orientation-options label {
  display: grid;
  min-width: 0;
  min-height: 76px;
  padding: 11px 13px;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid #d0d5dd;
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

.choice-orientation-options label:hover {
  border-color: #98a2b3;
}

.choice-orientation-options label.active {
  border-color: #2563eb;
  box-shadow: inset 0 0 0 1px #2563eb;
}

.choice-orientation-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice-orientation-options i {
  display: grid;
  width: 52px;
  height: 46px;
  padding: 5px;
  place-content: stretch;
  gap: 3px;
  border-radius: 7px;
  background: #eef2f6;
}

.choice-orientation-options i b {
  display: block;
  min-width: 0;
  min-height: 0;
  border-radius: 3px;
  background: #94a3b8;
}

.choice-orientation-options label:last-child i {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-orientation-options label.active i {
  background: #dbeafe;
}

.choice-orientation-options label.active i b {
  background: #2563eb;
}

.choice-orientation-options span {
  display: grid;
  min-width: 0;
}

.choice-orientation-options strong,
.choice-orientation-options small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.choice-orientation-options strong {
  color: #101828;
  font-size: 14px;
}

.choice-orientation-options small {
  margin-top: 3px;
  color: #667085;
  font-size: 11px;
  font-weight: 650;
}

.route-play .choice-list.choice-orientation-horizontal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.route-play .choice-list.choice-orientation-horizontal button {
  min-width: 0;
  justify-self: stretch;
}

.route-play
  .choice-list.choice-orientation-horizontal
  button:last-child:nth-child(odd) {
  width: calc((100% - var(--choice-gap, 12px)) / 2);
  grid-column: 1 / -1;
  justify-self: center;
}

.route-play .choice-list.choice-orientation-vertical {
  grid-template-columns: minmax(0, 1fr);
}

@media (max-width: 620px) {
  .choice-orientation-options {
    gap: 7px;
  }

  .choice-orientation-options label {
    min-height: 68px;
    padding: 9px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
  }

  .choice-orientation-options i {
    width: 42px;
    height: 40px;
  }

  .choice-orientation-options small {
    font-size: 9px;
  }
}
