/**
 * Static maintenance page — mirrors dsl/ecosystems/ErrorPage layout used by
 * MaintenanceBoundary (bg-primary-dark, RecareNameLogo, Display light).
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: auto;
  padding: 2.5rem;
  text-align: center;
  font-family: "Mulish", sans-serif;
  background-color: #233684;
  color: #fff;
}

.maintenance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
}

.maintenance__logo {
  display: block;
  height: 43px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.maintenance__message {
  max-width: 80%;
  /* Matches Display margin={margin(2)} → 16px vertical rhythm */
  margin: 1rem 0 0;
  font-weight: 400;
  font-size: 2.125rem;
  line-height: 2.5rem;
}
