// CSS Reset
// Minimal reset for consistent styling across browsers

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sefin-font-family-base, 'Pluto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif);
  font-size: var(--sefin-font-size-base, 1rem);
  font-weight: var(--sefin-font-weight-normal, 400); // Pluto-Regular
  line-height: var(--sefin-line-height-normal, 1.5);
  color: var(--sefin-color-text, #212121);
  background-color: var(--sefin-color-background, #fafafa);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

