.operating-hero .badge {
  background: linear-gradient(135deg, #276b58, #1e5144);
  border-color: rgba(30, 81, 68, .35);
}

body {
  overflow-x: hidden;
}

.operating-hero h1 {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-grid > * {
  min-width: 0;
}

.direction-band {
  padding: 22px 0;
  background: rgba(39, 107, 88, .08);
  border-top: 1px solid rgba(39, 107, 88, .15);
  border-bottom: 1px solid rgba(39, 107, 88, .15);
}

.direction-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.direction-row div {
  display: grid;
  gap: 3px;
}

.direction-row b {
  font-size: 18px;
}

.direction-row span {
  color: var(--muted);
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.scenario-grid article {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.scenario-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.scenario-grid b {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.scenario-grid span {
  color: var(--muted);
}

@media (max-width: 820px) {
  .direction-row {
    align-items: stretch;
    flex-direction: column;
  }

  .scenario-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .nav-actions {
    display: none;
  }

  .hero-grid {
    display: block;
  }

  .operating-hero h1 {
    font-size: 36px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
  }
}
