/**
 * @file
 * Minimal reset + base typography for the Aero Page Builder theme.
 */

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

html {
  font-size: var(--apb-theme-font-size-base);
  line-height: var(--apb-theme-line-height-base);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: var(--apb-theme-font-stack);
  font-weight: var(--apb-theme-font-weight-regular);
  color: var(--apb-theme-color-text);
  background-color: var(--apb-theme-color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--apb-theme-spacing-md) 0;
  font-weight: var(--apb-theme-font-weight-bold);
  line-height: 1.2;
}

p {
  margin: 0 0 var(--apb-theme-spacing-md) 0;
}

a {
  color: var(--apb-theme-color-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover,
a:focus {
  color: var(--apb-theme-color-link-hover);
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

hr {
  margin: var(--apb-theme-spacing-lg) 0;
  border: 0;
  border-top: 1px solid var(--apb-theme-color-border);
}
