/*
Theme Name: Inforest
Description: A minimal and simple WordPress theme
Version: 1.0
Author: Your Name
License: GPL v2 or later
Text Domain: inforest
*/

:root{
    --inforest-body-font-family:system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    --inforest-body-font-size:16px;
    --inforest-body-line-height:1.72;
    --inforest-body-letter-spacing:0.015em;
    --inforest-body-text-transform:none;
    --inforest-body-font-weight:400;
    --inforest-body-font-style:normal;
    --inforest-body-color:#222;
    --inforest-body-bg:#fff;
    --inforest-body-text-align:left;
    --inforest-body-text-decoration:none;
    --inforest-body-text-decoration-color:inherit;
    --inforest-body-text-decoration-style:solid;
    --inforest-body-text-decoration-thickness:auto;
    --inforest-body-text-decoration-skip-ink:none;
    --inforest-body-text-decoration-skip-ink-color:inherit;
    --inforest-border-width:1px;
    --inforest-heading-font-family: var(--inforest-body-font-family);
    --inforest-heading-color:#000;
    --inforest-heading-text-transform:none;
    --inforest-heading-font-weight:600;
    --inforest-heading-font-style:normal;
    --inforest-highlight-color:#000;
    --inforest-highlight-bg:#fff;
    --inforest-link-color-rgb:240,30,44;
    --inforest-link-opacity:1;
    --inforest-link-hover-color-rgb:0,0,0;
    --inforest-link-hover-opacity:1;
    --inforest-link-hover-decoration:underline;
    --inforest-link-hover-decoration-color:inherit;
    --inforest-link-hover-decoration-style:solid;
    --inforest-font-monospace:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --inforest-code-color:#222;
    --inforest-secondary-color:#6c757d;
  --inforest-link-color:#f01e2c;
  --inforest-link-hover-color:#f01e2c;
  --inforest-link-text-decoration-line:none;
  --inforest-link-text-decoration-style:solid;
  --inforest-link-text-decoration-thickness:auto;
  --inforest-link-text-underline-offset:auto;
  --inforest-link-hover-text-decoration-line:none;
  --inforest-link-hover-text-decoration-style:solid;
  --inforest-link-hover-text-decoration-thickness:auto;
  --inforest-link-hover-text-underline-offset:auto;
}

body {
  margin: 0;
  font-family: var(--inforest-body-font-family);
  font-size: var(--inforest-body-font-size);
  font-weight: var(--inforest-body-font-weight);
  line-height: var(--inforest-body-line-height);
  letter-spacing: var(--inforest-body-letter-spacing);
  text-transform: var(--inforest-body-text-transform);
  color: var(--inforest-body-color);
  background-color: var(--inforest-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a) {
  color: var(--inforest-link-color);
  text-decoration-line: var(--inforest-link-text-decoration-line);
  text-decoration-style: var(--inforest-link-text-decoration-style);
  text-decoration-thickness: var(--inforest-link-text-decoration-thickness);
  text-underline-offset: var(--inforest-link-text-underline-offset);
}
a:not(h1 a):not(h2 a):not(h3 a):not(h4 a):not(h5 a):not(h6 a):hover {
  color: var(--inforest-link-hover-color);
  text-decoration-line: var(--inforest-link-hover-text-decoration-line);
  text-decoration-style: var(--inforest-link-hover-text-decoration-style);
  text-decoration-thickness: var(--inforest-link-hover-text-decoration-thickness);
  text-underline-offset: var(--inforest-link-hover-text-underline-offset);
}


/* Headings base using variables */
h1, h2, h3, h4, h5, h6, h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  font-family: var(--inforest-heading-font-family);
  text-transform: var(--inforest-heading-text-transform);
  font-weight: var(--inforest-heading-font-weight);
  font-style: var(--inforest-heading-font-style);
  color: var(--inforest-heading-color);
  text-decoration: none;
}
h1:hover > a, h2:hover > a, h3:hover > a, h4:hover > a, h5:hover > a, h6:hover > a, h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  text-decoration: inherit;
}

/* Individual headings */
h1, h1 > a {
  font-size: var(--inforest-h1-font-size, 2.5rem);
  line-height: var(--inforest-h1-line-height, 1.2);
  letter-spacing: var(--inforest-h1-letter-spacing, 0);
  margin-top: var(--inforest-h1-margin-top, 0);
  margin-bottom: var(--inforest-h1-margin-bottom, 0.5rem);
}
h2, h2 > a {
  font-size: var(--inforest-h2-font-size, 2rem);
  line-height: var(--inforest-h2-line-height, 1.2);
  letter-spacing: var(--inforest-h2-letter-spacing, 0);
  margin-top: var(--inforest-h2-margin-top, 0);
  margin-bottom: var(--inforest-h2-margin-bottom, 0.5rem);
}
h3, h3 > a {
  font-size: var(--inforest-h3-font-size, 1.75rem);
  line-height: var(--inforest-h3-line-height, 1.2);
  letter-spacing: var(--inforest-h3-letter-spacing, 0);
  margin-top: var(--inforest-h3-margin-top, 0);
  margin-bottom: var(--inforest-h3-margin-bottom, 0.5rem);
}
h4, h4 > a {
  font-size: var(--inforest-h4-font-size, 1.5rem);
  line-height: var(--inforest-h4-line-height, 1.2);
  letter-spacing: var(--inforest-h4-letter-spacing, 0);
  margin-top: var(--inforest-h4-margin-top, 0);
  margin-bottom: var(--inforest-h4-margin-bottom, 0.5rem);
}
h5, h5 > a {
  font-size: var(--inforest-h5-font-size, 1.25rem);
  line-height: var(--inforest-h5-line-height, 1.2);
  letter-spacing: var(--inforest-h5-letter-spacing, 0);
  margin-top: var(--inforest-h5-margin-top, 0);
  margin-bottom: var(--inforest-h5-margin-bottom, 0.5rem);
}
h6, h6 > a {
  font-size: var(--inforest-h6-font-size, 1rem);
  line-height: var(--inforest-h6-line-height, 1.2);
  letter-spacing: var(--inforest-h6-letter-spacing, 0);
  margin-top: var(--inforest-h6-margin-top, 0);
  margin-bottom: var(--inforest-h6-margin-bottom, 0.5rem);
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  color: var(--inforest-highlight-color);
  background-color: var(--inforest-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre,
code,
kbd,
samp {
  font-family: var(--inforest-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--inforest-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}