.page-explainer {
  max-width: 760px;
  margin: 12px 0 10px;
  color: #919cad;
  font-size: 16px;
  line-height: 1.55;
}





/* Actions page should use the available width */
.main {
  max-width: none;
}

.page-heading,
.context-grid,
.summary-panel,
.actions-panel {
  width: 100%;
  max-width: 1500px;
}

.actions-panel {
  margin-top: 16px;
}

.actions-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.action-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  background: rgba(12, 18, 31, 0.92);
  display: grid;
  gap: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.action-card.red {
  border-left: 4px solid #ff5f6d;
}

.action-card.amber {
  border-left: 4px solid #f2b84b;
}

.action-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.action-code {
  color: #9aa6bd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.action-title {
  color: #f4f7fb;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.action-rag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}

.action-rag.red {
  color: #ff7d88;
  background: rgba(255, 95, 109, 0.14);
  border-color: rgba(255, 95, 109, 0.35);
}

.action-rag.amber {
  color: #f4c35d;
  background: rgba(242, 184, 75, 0.14);
  border-color: rgba(242, 184, 75, 0.35);
}

.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.action-field {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 6px;
}

.action-field .label {
  color: #8f9bb0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.action-field-value {
  color: #f4f7fb;
  font-size: 15px;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
}

.actions-empty {
  padding: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #9aa6bd;
  background: rgba(12, 18, 31, 0.72);
}

@media (max-width: 1180px) {
  .actions-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .action-grid {
    grid-template-columns: 1fr;
  }
}

