/* --- Variables --- */
:root {
    /* Color - Brand */
    --color-1: #d6000a;
    --color-2: #ff0000;
    --color-3: lightgreen;

    /* Color - Brightness */
    --white: #ffffff;
    --pale: #f8f8f8;
    --light: #CCCCCC;
    --dark: #999999;
    --black: #0d0d0d;

    /* Color - White Alpha */
    --white-alpha-1: rgba(255, 255, 255, 0.1);
    --white-alpha-2: rgba(255, 255, 255, 0.25);
    --white-alpha-3: rgba(255, 255, 255, 0.65);

    /* Color - Black Alpha */
    --black-alpha-1: rgba(0, 0, 0, 0.1);
    --black-alpha-2: rgba(0, 0, 0, 0.25);
    --black-alpha-3: rgba(0, 0, 0, 0.65);

    /* Color - System */
    --success: mediumseagreen;
    --warning: gold;
    --error: tomato;

    /* Element colors */
    --text-color: var(--black);
    --heading-color: var(--black);
    --link-color: var(--color-1);
    --link-color-hover: color-mix(in oklab, var(--link-color) 80%, var(--white));
    --button-background-color: var(--link-color);
    --button-background-color-hover: var(--link-color-hover);
    --button-text-color: var(--white);
    --button-text-color-hover: var(--button-text-color);
    --overlay-background: var(--black-alpha-1);

    /* Font Family */
    --font-family-body: "Inter", sans-serif;
    --font-family-heading: "Darker Grotesque", sans-serif;

    /* Font Weight */
    --font-weight-light: 300;
    --font-weight-normal: 300;
    --font-weight-bold: 700;

    /* Line Height */
    --line-height-default: 1.6;
    --line-height-medium: 1.4;
    --line-height-small: 1.2;

    /* Font Size - Base, H1-H4 */
    --font-size-base: clamp(15px, 0.1vi + 14.67px, 16px);
    --font-size-h4: clamp(17.7px, 0.38vi + 16.49px, 21.33px);
    --font-size-h3: clamp(20.89px, 0.79vi + 18.37px, 28.43px);
    --font-size-h2: clamp(24.65px, 1.38vi + 20.23px, 37.9px);
    --font-size-h1: clamp(29.08px, 2.23vi + 21.94px, 50.52px);

    /* Change font size for base and h1-h4 here:
	https://www.fluid-type-scale.com/calculate?minFontSize=15&minWidth=320&minRatio=1.18&maxFontSize=16&maxWidth=1280&maxRatio=1.333&steps=base%2Ch4%2Ch3%2Ch2%2Ch1&baseStep=base&prefix=font-size&useContainerWidth=false&includeFallbacks=false&useRems=false&remValue=16&decimals=2&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=1280 */
    /* Font Size - Huge */
    --font-size-huge: clamp(40px, 3.65vi + 28.33px, 75px);

    /* Change font size for huge here:
	https://www.fluid-type-scale.com/calculate?minFontSize=40&minWidth=320&minRatio=1&maxFontSize=75&maxWidth=1280&maxRatio=1.1&steps=huge&baseStep=huge&prefix=font-size&useContainerWidth=false&includeFallbacks=false&useRems=false&remValue=16&decimals=2&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=1280 */
    /* Font Size - Base variations */
    --font-size-large: 1.2rem;
    --font-size-medium: 1.1rem;
    --font-size-small: 0.9rem;
    --font-size-tiny: 0.8rem;

    /* Height */
    --header-height: 5rem;

    /* Border width */
    --border-width-default: 1px;
    --border-width-small: 1px;
    --border-width-large: .33rem;

    /* Border radius */
    --border-radius-default: 1rem;
    --border-radius-small: calc(var(--border-radius-default) / 2);
    --border-radius-large: calc(var(--border-radius-default) * 2);

    /* Box shadow */
    --box-shadow-default: 0px .5rem 2rem -.5rem rgba(0, 0, 0, 0.15);
    --box-shadow-small: 0px .25rem 1rem -.5rem rgba(0, 0, 0, 0.15);
    --box-shadow-large: 0px .75rem 3rem -.5rem rgba(0, 0, 0, 0.15);

    /* Transition Duration */
    --transition-duration: 0.3s;
    --hamburger-animation-duration: $hamburger-animation-duration-total;

    /* Spacing */
    --spacing-tiny: clamp(10px, 0.3vi + 9.05px, 12.84px);
    --spacing-small: clamp(14.14px, 0.7vi + 11.89px, 20.9px);
    --spacing-default: clamp(20px, 1.46vi + 15.33px, 34px);
    --spacing-medium: clamp(28.29px, 2.82vi + 19.28px, 55.32px);
    --spacing-large: clamp(40px, 5.21vi + 23.34px, 90px);

    /* Change spacing here: https://www.fluid-type-scale.com/calculate?minFontSize=20&minWidth=320&minRatio=1.4143&maxFontSize=34&maxWidth=1280&maxRatio=1.627&steps=tiny%2Csmall%2Cdefault%2Cmedium%2Clarge&baseStep=default&prefix=spacing&useContainerWidth=false&includeFallbacks=false&useRems=false&remValue=16&decimals=2&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=1280 */
    /* Button margin top */
    --button-margin-top: 1.5rem;

    /* Form gap */
    --form-column-gap: 1rem;
    --form-row-gap: 1rem;

    /* Viewport Height */
    --viewport-height-small: 40;
    --viewport-height-medium: 60;
    --viewport-height-large: 80;
    --viewport-height-full: 100;

    /* Section */
    --width-wide: 1600px;
    --width-default: 1280px;
    --width-narrow: 800px;
    --vertical-section-padding: var(--spacing-large);
    --horizontal-section-padding: var(--spacing-medium);
    --section-padding: var(--vertical-section-padding) var(--horizontal-section-padding);
}

.inverted {
    --text-color: var(--white);
    --heading-color: var(--white);
    --link-color: var(--white);

    /* --link-color-hover: var(--white-alpha-3); */
    --button-background-color: var(--white);
    --button-background-color-hover: var(--link-color-hover);
    --button-text-color: var(--black);
    --button-text-color-hover: var(--white);
}

.scrolled {
    --header-height: 5rem;
}

@media (max-width: 960px) {
    :root {
        --header-height: 4rem;
    }

    .scrolled {
        --header-height: 4rem;
    }
}

@media (max-width: 640px) {
    :root {
        --horizontal-section-padding: var(--spacing-default);
    }
}

@media (max-width: 320px) {
    :root {
        --section-padding: calc(min(6vw, 80px) + 20px) 20px;
    }
}

/* --- Variables --- */
/* --- Base --- */
*,
*:before,
*:after {
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

html,
body {
    font-size: var(--font-size-base);
}

body {
    background: var(--pale);
    color: var(--text-color);
    font-family: var(--font-family-body);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-default);
    font-optical-sizing: auto;
    box-sizing: border-box;
    margin: 0;
}

body.off-canvas-open,
body.search-open {
    overflow: hidden;
}

:root :where(.wp-site-blocks) > * {
    margin-block-start: 0 !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

div,
.section-wrapper {
    color: var(--text-color);
}

.huge {
    font-size: var(--font-size-huge);
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

h4 {
    font-size: var(--font-size-h4);
}

.huge,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    color: var(--heading-color);
    line-height: var(--line-height-small);
    margin-top: calc(.7em + 1.3rem);
    margin-bottom: calc(.3em + .7rem);
    text-wrap: balance;
    overflow-wrap: anywhere;
    hyphens: manual;

    /* Manual word break with hyphens by adding &shy; in the word */
}

p,
ul,
ol,
figure {
    margin: 0 0 1em 0;
    text-wrap: pretty;
}

.wp-block-image {
    margin: 0;
}

li {
    padding: 0 0 .5em 0;
}

blockquote {
    border-left: 3px solid var(--dark);
    color: var(--black);
    font-style: italic;
    margin: 1em 0;
    padding-left: 1em;
}

figcaption {
    font-size: var(--font-size-small);
    color: var(--dark);
    margin-top: 0.5em;
    margin-bottom: 1em;
}

label {
    color: var(--text-color);
    display: block;
    font-weight: var(--font-weight-normal);
    margin-bottom: 0;
}

abbr[title],
ins {
    text-decoration: none;
}

.huge:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

.huge:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child,
figure:last-child {
    margin-bottom: 0;
}

a {
    color: var(--link-color);
    transition-duration: var(--transition-duration);
    text-decoration: none;
    overflow-wrap: anywhere;
    outline: none;
}

a:hover {
    color: var(--link-color-hover);
}

a:focus,
button:focus,
input:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--link-color-hover);
    outline-offset: 1px;
    border-radius: 2px;
    transition-duration: 0s;
}

p a {
    text-decoration: underline;
}

h1 a,
h2 a,
h3 a,
h4 a,
.text-color-link,
.text-color-link a {
    color: var(--text-color);
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
.text-color-link:hover,
.text-color-link a:hover {
    color: var(--link-color);
}

.text-color-link path {
    fill: var(--text-color);
}

.text-color-link:hover path,
.text-color-link a:hover path {
    fill: var(--link-color);
}

.meta-text {
    color: var(--dark);
    font-size: var(--font-size-tiny);
    text-transform: uppercase;
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

i,
em {
    font-style: italic;
}

button {
    background: inherit;
    color: inherit;
    border: none;
    font: inherit;
    padding: 0;
    transition-duration: var(--transition-duration);
    cursor: pointer;
}

hr {
    border: none;
    border-top: var(--border-width-default) solid var(--light);
    margin: 1.5em 0;
}

.placeholder-menu-item {
    cursor: default;
}

.screen-reader-text {
    display: none;
}

.created-by a {
    color: var(--text-color);
}

.created-by a:hover {
    color: var(--link-color-hover);
}

/* --- Base --- */
/* --- Form --- */
/* Form variables */
form {
    --form-background: var(--pale);
    --form-background-hover: var(--form-background);
    --form-background-focus: var(--form-background);
    --form-color: var(--black);
    --form-placeholder: var(--dark);
    --form-border-width: var(--border-width-default);
    --form-border-top: var(--form-border-width);
    --form-border-right: var(--form-border-width);
    --form-border-bottom: var(--form-border-width);
    --form-border-left: var(--form-border-width);
    --form-border-style: solid;
    --form-border-color: var(--pale);
    --form-border-color-hover: var(--color-1);
    --form-border-color-focus: var(--color-1);
    --form-border-radius: .4rem;
    --form-checkbox-border-radius: calc(var(--border-radius-small) / 2);
    --form-checkbox-radio-width: 28px;
    --form-checkbox-radio-height: 28px;
    --form-checkbox-background: var(--form-border-color-focus);
    --form-horizontal-padding: 1rem;
    --form-textarea-min-height: 8rem;
    --form-height: 2.8rem;
    --form-inverted-background: transparent;
    --form-inverted-background-hover: var(--form-inverted-background);
    --form-inverted-background-focus: var(--form-inverted-background);
    --form-inverted-color: var(--white);
    --form-inverted-placeholder: var(--white-alpha-3);
    --form-inverted-border-color: var(--white-alpha-3);
    --form-inverted-border-color-hover: var(--white);
    --form-inverted-border-color-focus: var(--white);
}

/* Form styling */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
textarea {
    border-top-width: var(--form-border-top);
    border-right-width: var(--form-border-right);
    border-bottom-width: var(--form-border-bottom);
    border-left-width: var(--form-border-left);
    border-style: var(--form-border-style);
    border-color: var(--form-border-color);
    border-radius: var(--form-border-radius);
    background: var(--form-background);
    color: var(--form-color);
    padding: 0 var(--form-horizontal-padding);
    flex-grow: 1;
    transition-duration: var(--transition-duration);
    transition-property: color, border-color, background, background-color;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"] {
    height: var(--form-height);
    line-height: var(--line-height-small);
}

textarea {
    padding: calc(var(--form-horizontal-padding) - 0.4rem) var(--form-horizontal-padding);
    line-height: var(--line-height-default);
    min-height: var(--form-textarea-min-height);
    resize: vertical;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
input[type="url"]:hover,
textarea:hover {
    background: var(--form-background-hover);
    border-color: var(--form-border-color-hover);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus {
    background: var(--form-background-focus);
    border-color: var(--form-border-color-focus);
    outline: none;
}

::placeholder {
    color: var(--form-placeholder);
}

input[type="checkbox"],
input[type="radio"] {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
    width: var(--form-checkbox-radio-width);
    height: var(--form-checkbox-radio-height);
    background-color: var(--form-background);
    border: var(--form-border-width) solid var(--form-border-color);
    margin: 0 10px 0 0;
    transition-duration: var(--transition-duration);
    transition-property: border-color, background, background-color;
    flex-shrink: 0;
}

input[type="checkbox"]:hover,
input[type="radio"]:hover {
    background-color: var(--form-background-hover);
    border-color: var(--form-border-color-hover);
}

input[type="checkbox"]:after,
input[type="radio"]:after {
    content: "";
    width: var(--form-checkbox-radio-width);
    height: var(--form-checkbox-radio-height);
    position: absolute;
    top: calc(var(--form-border-width) * -1);
    left: calc(var(--form-border-width) * -1);
    display: block;
    opacity: 0;
    transition-duration: var(--transition-duration);
    background-color: var(--form-checkbox-background);
}

input[type="checkbox"]:after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 26 26"><polyline points="6,13 11,18 20,8" style="fill:none;stroke:white;stroke-width:2" /></svg>');
}

input[type="radio"]:after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 26 26"><circle cx="13" cy="13" r="6" style="fill:white;" /></svg>');
}

input[type="checkbox"]:checked:after,
input[type="radio"]:checked:after {
    opacity: 1;
}

input[type="checkbox"],
input[type="checkbox"]:after,
input[type="checkbox"]:checked:after {
    border-radius: var(--form-checkbox-border-radius);
}

input[type="radio"],
input[type="radio"]:after,
input[type="radio"]:checked:after {
    border-radius: 100%;
}

select {
    height: var(--form-height);
    line-height: var(--line-height-small);
    padding: 0 var(--form-horizontal-padding);
    border-top-width: var(--form-border-top);
    border-right-width: var(--form-border-right);
    border-bottom-width: var(--form-border-bottom);
    border-left-width: var(--form-border-left);
    border-style: var(--form-border-style);
    border-color: var(--form-border-color);
    border-radius: var(--form-border-radius);
    background-color: var(--form-background);
    color: var(--form-color);
    background-image: linear-gradient(45deg, transparent 50%, var(--black-alpha-2) 50%), linear-gradient(135deg, var(--black-alpha-2) 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%, 100% 0;
    background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
    background-repeat: no-repeat;
    transition-duration: var(--transition-duration);
    transition-property: color, border-color, background-color;
    outline: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: inherit;
    font-size: inherit;
    width: 100%;
}

select:hover {
    border-color: var(--form-border-color-hover);
}

select:focus {
    outline: none !important;
}

/* Form Inverted */
.inverted input[type="text"],
.inverted input[type="email"],
.inverted input[type="number"],
.inverted input[type="tel"],
.inverted input[type="password"],
.inverted input[type="search"],
.inverted input[type="url"],
.inverted textarea {
    background: var(--form-inverted-background);
    color: var(--form-inverted-color);
    border-color: var(--form-inverted-border-color);
}

.inverted input[type="text"]:hover,
.inverted input[type="email"]:hover,
.inverted input[type="number"]:hover,
.inverted input[type="tel"]:hover,
.inverted input[type="password"]:hover,
.inverted input[type="search"]:hover,
.inverted input[type="url"]:hover,
.inverted textarea:hover {
    background: var(--form-inverted-background-hover);
    border-color: var(--form-inverted-border-color-hover);
}

.inverted input[type="text"]:focus,
.inverted input[type="email"]:focus,
.inverted input[type="number"]:focus,
.inverted input[type="tel"]:focus,
.inverted input[type="password"]:focus,
.inverted input[type="search"]:focus,
.inverted input[type="url"]:focus,
.inverted textarea:focus {
    background: var(--form-inverted-background-focus);
    border-color: var(--form-inverted-border-color-focus);
}

.inverted input::placeholder,
.inverted textarea::placeholder {
    color: var(--form-inverted-placeholder);
}

.inverted input[type="checkbox"],
.inverted input[type="radio"] {
    background-color: transparent;
    border-color: var(--form-inverted-border-color);
}

.inverted input[type="checkbox"]:hover,
.inverted input[type="radio"]:hover {
    border-color: var(--form-inverted-border-color-hover);
}

.inverted input[type="checkbox"]:after,
.inverted input[type="radio"]:after {
    background-color: transparent;
}

.inverted select {
    background-color: var(--form-inverted-background);
    border-color: var(--form-inverted-border-color);
    color: var(--white);
}

.inverted select:hover {
    border-color: var(--form-inverted-border-color-hover);
}

/* --- Form --- */
/* --- Button --- */
.button-wrapper,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
.wc-block-components-button,
input[type=submit] {
    border: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    font-family: var(--font-family-body);
    font-size: 1rem;
    font-weight: normal;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    line-height: var(--line-height-small);
    word-break: keep-all;
    transition-duration: var(--transition-duration);
    cursor: pointer;
    outline: none !important;
}

.button-wrapper > .button-text {
    width: auto;
}

.button-wrapper img,
.button-wrapper svg,
.button-wrapper path {
    transition-duration: var(--transition-duration);
}

/* Button Filled */
.button-wrapper.filled,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
.wc-block-components-button,
input[type=submit] {
    background: var(--button-background-color);
    color: var(--button-text-color);
    border-radius: var(--border-radius-large);
    height: 2.8rem;
    padding: 0 1.5rem;
}

.button-wrapper.filled:hover,
.wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:hover,
.wc-block-components-button:hover,
.wp-element-button:hover,
input[type=submit]:hover {
    background: var(--button-background-color-hover);
    color: var(--button-text-color-hover);
}

.button-wrapper.filled path {
    fill: var(--button-text-color);
}

.button-wrapper.filled:hover path {
    fill: var(--button-text-color-hover);
}

/* Button Outline */
.button-wrapper.outline,
.is-style-outline .wp-block-button__link {
    background: transparent;
    border: var(--border-width-default) solid var(--button-background-color);
    color: var(--button-background-color);
    border-radius: var(--border-radius-large);
    height: 2.8rem;
    padding: 0 1.25rem;
}

.button-wrapper.outline:hover,
.is-style-outline .wp-block-button__link:hover {
    background: var(--button-background-color-hover);
    border-color: var(--button-background-color-hover);
    color: var(--button-text-color-hover);
}

.button-wrapper.outline path {
    fill: var(--button-background-color);
}

.button-wrapper.outline:hover path {
    fill: var(--button-text-color-hover);
}

/* Button Plain */
.button-wrapper.plain {
    background: transparent;
    color: var(--text-color);
}

.button-wrapper.plain:hover {
    color: var(--link-color-hover);
}

.button-wrapper.plain path {
    fill: var(--text-color);
}

.button-wrapper.plain:hover path {
    fill: var(--link-color-hover);
}

/* Button With Icon */
.button-wrapper > img,
.button-wrapper > svg {
    width: 1.25em;
    height: 1.25em;
}

/* Button Size */
.button-wrapper.button-small,
.button-small .wp-block-button__link,
.wp-block-file .wp-block-file__button {
    font-size: var(--font-size-small);
}

.button-wrapper.button-small:not(.plain),
.button-small .wp-block-button__link,
.wp-block-file .wp-block-file__button {
    height: 2rem;
    padding: 0 1rem;
}

.button-wrapper.button-large,
.button-large .wp-block-button__link {
    font-size: var(--font-size-large);
}

.button-wrapper.button-large:not(.plain),
.button-large .wp-block-button__link {
    height: 3.6rem;
    padding: 0 1.8rem;
}

/* Button Group */
.button-group {
    display: flex !important;
    flex-wrap: wrap;
    gap: .5rem;
}

/* --- Button --- */
/* --- Background Image --- */
.background-image,
.background-image > img + div {
    position: relative;
}

.background-image > img:first-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* --- Background Image --- */
/* --- Gutenberg --- */
.has-text-align-center {
    text-align: center;
}

.has-text-align-right {
    text-align: right;
}

.wp-block-table .has-fixed-layout {
    table-layout: fixed;
}

figure.wp-block-table thead>tr,
figure.wp-block-table tfoot>tr {
    background: var(--black);
    color: var(--white);
    text-align: left;
}

.wp-block-file {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.wp-block-file:last-child {
    margin-bottom: 0;
}

.wp-block-file a:first-child {
    color: var(--black);
    margin-right: 1rem;
}

.wp-block-file a:first-child:hover {
    color: var(--link-color-hover);
}

/* --- Gutenberg --- */
/* --- List --- */
ul,
ol {
    --list-background: var(--black-alpha-1);
    --list-border-color: var(--black-alpha-2);
}

.inverted ul,
.inverted ol {
    --list-background: var(--white-alpha-2);
    --list-border-color: var(--white-alpha-2);
}

/* Horizontal */
.horizontal-list {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

/* Plain */
ul.plain-list,
.plain-list ul {
    padding: 0;
    list-style: none;
}

/* Bullet */
ul.bullet-list,
.bullet-list ul {
    padding: 0;
    list-style: none;
}

ul.bullet-list li,
.bullet-list ul li {
    padding-left: 1em;
    position: relative;
}

ul.bullet-list li:before,
.bullet-list ul li:before {
    content: '';
    background: var(--light);
    width: .4em;
    height: .4em;
    border-radius: 100%;
    transform: translateY(-50%);
    position: absolute;
    left: 2px;
    top: .8em;
}

/* Check mark */
ul.check-mark-list,
.check-mark-list ul {
    padding: 0;
    list-style: none;
}

ul.check-mark-list li,
.check-mark-list ul li {
    padding-left: 1.4em;
    position: relative;
}

ul.check-mark-list li:before,
.check-mark-list ul li:before {
    content: '';
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: var(--light);
    width: .9em;
    height: .45em;
    transform: translateY(-50%) rotate(135deg);
    position: absolute;
    left: 1px;
    top: 0.65em;
}

/* Chevron */
ul.chevron-list,
.chevron-list ul {
    padding: 0;
    list-style: none;
}

ul.chevron-list li,
.chevron-list ul li {
    padding-left: 1em;
    position: relative;
}

ul.chevron-list li:before,
.chevron-list ul li:before {
    content: '';
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: var(--light);
    width: .5em;
    height: .5em;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: .55em;
}

/* Divider */
ul.divider-list,
.divider-list ul {
    padding: 0;
    width: 100%;
    list-style: none;
}

ul.divider-list li,
.divider-list ul li {
    padding: .25em 0;
    border-bottom: var(--border-width-small) solid var(--list-border-color);
    display: block;
    width: 100%;
}

ul.divider-list li:first-child,
.divider-list ul li:first-child {
    padding-top: 0;
}

ul.divider-list li:last-child,
.divider-list ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* Striped */
ul.striped-list,
.striped-list ul {
    padding: 0;
    width: 100%;
    list-style: none;
}

ul.striped-list li,
.striped-list ul li {
    display: block;
    padding: 0.45em .9em;
    width: 100%;
}

ul.striped-list li:nth-child(odd),
.striped-list ul li:nth-child(odd) {
    background: var(--list-background);
}

/* Numbered */
ol.numbered-list,
.numbered-list ol {
    counter-reset: item;
    padding: 0;
    list-style: none;
}

ol.numbered-list li,
.numbered-list ol li {
    padding: .4em 0 .4em 2.75em;
    position: relative;
}

ol.numbered-list li:before,
.numbered-list ol li:before {
    counter-increment: item;
    content: counter(item) "";
    width: 2em;
    height: 2em;
    background: var(--color-1);
    color: var(--white);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 1px;
    top: .2em;
}

/* --- List --- */
/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-large);
}

.pagination > a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--link-color);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: var(--border-radius-small);
    transition-duration: var(--transition-duration);
}

.pagination > a:hover {
    background: var(--link-color-hover);
}

.pagination svg {
    width: 1.25rem;
}

.pagination path {
    fill: var(--white);
}

.pagination .pages {
    font-size: var(--font-size-small);
    color: var(--dark);
    margin: 0 var(--spacing-default);
}

/* --- Pagination --- */
/* --- Search --- */
.search-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: none;
    margin: 0 0 0 1rem;
    padding: 10px;
    height: 100%;
    border: none;
    border-radius: 100%;
    transition-duration: var(--transition-duration);
    cursor: pointer;
}

.search-trigger:hover {
    color: var(--link-color-hover);
}

.search-trigger svg,
.search-trigger img {
    width: 1.5rem;
}

.search-trigger path {
    fill: var(--text-color);
    transition-duration: var(--transition-duration);
}

.search-trigger:hover path {
    fill: var(--link-color-hover);
}

.transparent-header:not(.scrolled, .off-canvas-open) .search-trigger path {
    fill: var(--white);
}

.transparent-header:not(.scrolled) .search-trigger:hover {
    background: var(--white-alpha-1);
}

.search-overlay-wrapper {
    justify-content: center;
    align-items: start;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: calc(var(--header-height) * 2) calc(0.5rem + 5vw);
    pointer-events: none;
    z-index: 100;
    display: none;
    opacity: 0;
    transition-duration: var(--transition-duration);
    transition-behavior: allow-discrete;
}

.search-open .search-overlay-wrapper {
    display: flex;
    opacity: 1;

    @starting-style {
        opacity: 0;
    }
}

.search-overlay-content {
    background: var(--white);
    width: 100%;
    max-width: 48rem;
    padding: var(--spacing-small);
    border-radius: var(--border-radius-default);
    pointer-events: auto;
    box-shadow: var(--box-shadow-default);
    display: none;
    opacity: 0;
    transform: translateY(.75rem);
    transition-duration: var(--transition-duration);
    transition-behavior: allow-discrete;
}

.search-open .search-overlay-content {
    display: flex;
    opacity: 1;
    transform: translateY(0);

    @starting-style {
        opacity: 0;
        transform: translateY(.75rem);
    }
}

.search-form {
    width: 100%;
    display: flex;
    gap: 1rem;
}

.search-form label {
    width: 100%;
}

/* Search page */
.search-results-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-small);
}

.search-results-item {
    display: flex;
    background: var(--pale);
    border-radius: var(--border-radius-default);
}

.search-results-item-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 100%;
    padding: var(--spacing-default);
}

.search-results-item-image {
    padding: var(--spacing-tiny);
    padding-left: 0;
    flex-shrink: 0;
}

.search-results-item h2 {
    margin-top: .5em;
}

.search-results-excerpt {
    font-size: var(--font-size-small);
}

.search-results-item img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    width: 6rem;
}

@media (max-width: 480px) {
    .search-results-item {
        flex-direction: column;
    }

    .search-results-item-content {
        padding-top: 0;
        padding-left: var(--spacing-tiny);
    }

    .search-results-item-image {
        aspect-ratio: 2;
        width: 100%;
    }
}

/* --- Search --- */
/* --- Section --- */
.section-wrapper {
    width: 100%;
    padding: var(--section-padding);
}

.section-content {
    max-width: var(--width-default);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
}

.width-narrow {
    max-width: var(--width-narrow);
}

.width-wide {
    max-width: var(--width-wide);
}

.width-full {
    max-width: 100%;
}

/* --- Section --- */
/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: .5rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-1);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: var(--border-radius-small);
}

.social-icons a:hover {
    background: var(--link-color-hover);
}

.social-icons a > * {
    width: 1.5rem;
    height: 1.5rem;
}

.social-icons path {
    fill: var(--white);
}

/* --- Social Icons --- */
/* --- Table --- */
table {
    border-collapse: collapse;
    width: 100%;
}

table tr {
    transition-duration: var(--transition-duration);
}

table td,
table th {
    padding: 0.5rem 1rem;
}

.table-divider tr {
    border-bottom: var(--border-width-small) solid var(--light);
}

.tabel-cell-border td,
.tabel-cell-border th,
.is-style-regular td,
.is-style-regular th {
    border: 1px solid var(--light);
}

.table-striped tr:nth-child(even),
.is-style-stripes tr:nth-child(even) {
    background: var(--pale);
}

.table-hover tr:hover {
    background: var(--light);
}

/* --- Table --- */
/* --- Viewport Height --- */
.viewport-height-small {
    height: calc(var(--viewport-height-small) * 1vh);
    height: calc(var(--viewport-height-small) * 1svh);
}

.viewport-height-medium {
    height: calc(var(--viewport-height-medium) * 1vh);
    height: calc(var(--viewport-height-medium) * 1svh);
}

.viewport-height-large {
    height: calc(var(--viewport-height-large) * 1vh);
    height: calc(var(--viewport-height-large) * 1svh);
}

.viewport-height-full-minus-header {
    height: calc(var(--viewport-height-full) * 1vh - var(--header-height));
    height: calc(var(--viewport-height-full) * 1svh - var(--header-height));
}

.viewport-height-full {
    height: calc(var(--viewport-height-full) * 1vh);
    height: calc(var(--viewport-height-full) * 1svh);
}

/* --- Viewport Height --- */
/* --- Viewport Overlay --- */
.viewport-overlay {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--overlay-background);
    display: none;
    opacity: 0;
    transition-duration: var(--transition-duration);
    transition-behavior: allow-discrete;
}

.off-canvas-open .viewport-overlay,
.search-open .viewport-overlay {
    display: block;
    opacity: 1;

    @starting-style {
        opacity: 0;
    }
}

/* --- Viewport Overlay --- */
.logged-in .hide-if-logged-in {
    display: none;
}
