:root {
  --font-family-base: 'Source Sans 3', 'Source Sans Pro', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
}

html {
  font-family: var(--font-family-base);
}

body {
  font-family: inherit;
  font-weight: var(--font-weight-regular);
  line-height: 1.2;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  line-height: inherit;
  font-weight: var(--font-weight-semibold);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

button,
.btn,
.vc-btn,
a[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a[role="button"]:focus-visible {
  outline: 2px solid rgba(54, 89, 69, 0.45);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
.vc-btn:focus:not(:focus-visible),
a[role="button"]:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}
