.og-action-dialog {
  width: min(460px, calc(100% - 28px));
  padding: 0;
  border: 1px solid #bdb7ab;
  border-radius: 3px;
  background: var(--paper-raised);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.og-action-dialog::backdrop { background: rgba(23, 23, 19, .46); }
.og-action-dialog-card { position: relative; display: grid; gap: 22px; padding: 28px; }
.og-action-dialog-close { position: absolute; top: 12px; right: 12px; }
.og-action-dialog-card header { padding-right: 28px; }
.og-action-dialog-card h2 { margin: 0; font: 400 29px/1.05 var(--serif); letter-spacing: -.015em; }
.og-action-dialog-card header p { margin: 9px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.og-action-dialog-field { display: grid; gap: 6px; }
.og-action-dialog-field span { color: var(--muted); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.og-action-dialog-field input, .og-action-dialog-field select { width: 100%; padding: 8px 2px 7px; border: 0; border-bottom: 1px solid #aaa499; outline: 0; background: transparent; color: var(--ink); font-size: 13px; }
.og-action-dialog-field input:focus, .og-action-dialog-field select:focus { border-color: var(--blue); }
.og-action-dialog-error { min-height: 15px; margin: -10px 0 0; color: var(--red); font-size: 10px; }
.og-action-dialog-actions { display: flex; justify-content: flex-end; gap: 9px; }
/* The colour is stated here because announcements.css carries an unscoped
   .button.is-danger that paints the label red — on this red button that would
   leave the label invisible. */
.og-action-dialog-submit.is-danger { border-color: var(--red); background: var(--red); color: white; }
.og-action-dialog-submit.is-danger:hover { border-color: #982f25; background: #982f25; color: white; }
