:root {
  color-scheme: light;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --danger: #b42318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
}

.public-body {
  min-height: 100dvh;
}

.public-body > main {
  min-height: calc(100dvh - 230px);
}

@media (max-width: 720px) {
  .public-body > main {
    min-height: calc(100dvh - 290px);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
p {
  margin-top: 0;
}

img,
video {
  max-width: 100%;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 32px;
}

.brand-wordmark {
  color: inherit;
  display: inline-flex;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.brand-cloud {
  color: #f43f5e;
  font-weight: 720;
}

.brand:hover .brand-wordmark {
  opacity: 0.86;
}

.top-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.page {
  margin: 0 auto;
  padding: 32px;
}

button,
.button {
  align-items: center;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 11px 14px;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }

  .page {
    padding: 22px 18px;
  }
}
