/* ================================================
   ESTILA — Reset
   ================================================ */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--background);
  overflow-x: hidden;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
input, textarea, select { font: inherit; }

::selection {
  background-color: var(--gold-light);
  color: var(--ink);
}

/* Hide Drupal chrome */
.toolbar-tray, .toolbar-bar { display: none !important; }
body.toolbar-fixed { padding-top: 0 !important; }
.feed-icons, .powered-by, .site-branding__slogan { display: none !important; }
