/* ========================================
   EMSTEPS.CSS v2 — "Emergency Steps" card (Igor approved v3, 25.08.2026)
   First element on emergency/urgent pages. Written for the panic brain:
   verb first, one action per step, the killer instinct in the red box.
   Standard frame: CALL and DRIVE steps identical on every card.
   ======================================== */
.em-steps {
  background: var(--paper-light, #FBF9F3);
  border: 2px solid #C0392B;
  border-left: 8px solid #C0392B;
  box-shadow: -8px 8px 0 rgba(150, 40, 27, 0.16);
  padding: 0 0 14px;
  margin: 0 0 34px;
}
.em-steps-head {
  background: #C0392B;
  color: #fff;
  padding: 10px 20px;
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.em-steps ol {
  list-style: none;
  margin: 0;
  padding: 14px 20px 4px;
}
.em-steps li {
  list-style: none;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule, rgba(42, 31, 18, 0.18));
}
.em-steps li:last-child { border-bottom: none; }
.em-num {
  font-family: var(--font-display, 'Fraunces', Georgia, serif);
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  background: #C0392B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.em-act {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink, #2A1F12);
}
.em-act .em-more {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink, #2A1F12);
  margin-top: 3px;
  line-height: 1.45;
}
.em-steps .em-dont {
  margin: 8px 20px 0;
  max-width: none;
  width: auto;
  padding: 10px 14px;
  background: rgba(192, 57, 43, 0.09);
  border: 1.5px solid #C0392B;
  font-size: 15.5px;
  font-weight: 700;
  color: #96281B;
  line-height: 1.45;
}
.em-steps .em-below {
  margin: 10px 20px 0;
  max-width: none;
  width: auto;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft, #46392A);
}
@media (max-width: 560px) {
  .em-steps ol { padding: 12px 14px 4px; }
  .em-dont, .em-below { margin-left: 14px; margin-right: 14px; }
  .em-act { font-size: 18px; }
  .em-act .em-more { font-size: 16px; }
}
