.training-shell .training-hero {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}

.training-layout {
  align-items: flex-start;
}

.section-map li {
  cursor: default;
}

.readiness-callout {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 12px;
}

.runtime {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  padding: 14px;
}

.runtime-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.answer-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.answer-button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-elevated);
  color: var(--text);
  padding: 10px 11px;
  font-size: 0.88rem;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.answer-button:hover {
  border-color: #4a5568;
}

.answer-button.correct {
  border-color: rgba(47, 178, 106, 0.64);
  background: rgba(47, 178, 106, 0.16);
}

.answer-button.incorrect {
  border-color: rgba(198, 40, 40, 0.62);
  background: rgba(198, 40, 40, 0.14);
}

.runtime-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.toast-stack {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: grid;
  gap: 8px;
  width: min(320px, calc(100% - 28px));
}

.toast {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(15, 20, 30, 0.94);
  color: #f3f6fc;
  padding: 9px 11px;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.toast.success {
  border-color: rgba(47, 178, 106, 0.55);
}

.toast.warn {
  border-color: rgba(224, 159, 62, 0.62);
}

@media (max-width: 1020px) {
  .training-shell .training-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .runtime-actions {
    flex-direction: column;
  }

  .toast-stack {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
  }
}
