/* The theme's own CSS already declares font-family:'Quicksand',... on buttons and several
   headings (Divi module rules), but the live site never actually fetches the font anywhere -
   no <link>, @import, or @font-face for it exists on any page. This stylesheet is loaded
   after everything else (see extra_stylesheets/site_override_css in config.json) so it can
   apply Quicksand consistently to body text and headings that don't already carry it,
   without touching icon fonts (ETmodules/FontAwesome), which live only on ::before/::after
   and are untouched by these rules. */
body,
#page-container,
#page-container h1,
#page-container h2,
#page-container h3,
#page-container h4,
#page-container h5,
#page-container h6,
#page-container p,
#page-container li,
#page-container a {
  font-family: 'Quicksand', Helvetica, Arial, Lucida, sans-serif !important;
}

/* Avily "designed by" footer credit (templates/designed-by-avily.html) */
.avily-credit { margin: 0; }
.avily-credit .avily-link { text-decoration: none; }
.avily-credit .avily-link:hover { text-decoration: underline; }
.avily-credit img { height: 1em; width: auto; vertical-align: middle; margin: 0 4px; }
