.service-status-banner {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  color: #fff8e8;
  background: #9a4a18;
  box-shadow: 0 8px 24px rgba(73, 35, 10, 0.18);
  font: 650 14px/1.45 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.service-status-retry {
  flex: 0 0 auto;
  color: #fff8e8;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.service-status-retry:hover,
.service-status-retry:focus-visible {
  color: #9a4a18;
  background: #fff8e8;
}

.service-status-banner::before {
  content: "!";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 600px) {
  .service-status-banner {
    align-items: flex-start;
    min-height: 0;
    padding-block: 11px;
    font-size: 12px;
    text-align: left;
  }

  .service-status-banner::before {
    margin-top: 1px;
  }
}
