*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.zw-body {
  font-family: var(--zw-font);
  color: var(--zw-dark);
  background: var(--zw-white);
  min-height: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.zw-container {
  width: min(100% - 2rem, var(--zw-container));
  margin-inline: auto;
}

.zw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 220ms var(--zw-ease), filter 220ms var(--zw-ease);
}

.zw-btn--cta {
  background: var(--zw-orange);
  color: var(--zw-white);
  border-radius: 999px;
  padding: 0.85rem 1.45rem;
}

.zw-btn--cta:hover {
  filter: brightness(1.06);
  transform: translateY(1px);
}

.zw-btn--block {
  width: 100%;
}

.zw-content {
  padding: 6rem 0 4rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .zw-btn--cta {
    transition: none;
  }

  .zw-btn--cta:hover {
    transform: none;
  }
}
