
/*
One important thing to note about postcss-import is that it strictly adheres to the CSS spec
 and disallows @import statements anywhere except at the very top of a file.
 that's why
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
 before @import won't work.
 use @import for these layers!
 */

/*
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: 'Neue Montreal', 'Helvetica Neue', sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

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

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

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

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

.container {
  width: 100%;
}

@media (min-width: 520px) {

  .container {
    max-width: 520px;
  }
}

@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}

@media (min-width: 782px) {

  .container {
    max-width: 782px;
  }
}

@media (min-width: 800px) {

  .container {
    max-width: 800px;
  }
}

@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1240px) {

  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {

  .container {
    max-width: 1400px;
  }
}

@media (min-width: 1680px) {

  .container {
    max-width: 1680px;
  }
}

@media (min-width: 1880px) {

  .container {
    max-width: 1880px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.\!relative {
  position: relative !important;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-4 {
  bottom: 1rem;
}

.left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;
}

.right-12 {
  right: 3rem;
}

.top-0 {
  top: 0px;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.m-0 {
  margin: 0px;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-theme-md {
  margin-bottom: 40px;
}

.mt-4 {
  margin-top: 1rem;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.h-0 {
  height: 0px;
}

.h-1\/2 {
  height: 50%;
}

.h-1\/3 {
  height: 33.333333%;
}

.h-10 {
  height: 2.5rem;
}

.h-appHeight {
  height: var(--app-height);
}

.h-appHeightMinusHeader {
  height: calc(var(--app-height) - var(--header-height));
}

.h-full {
  height: 100%;
}

.max-h-\[60vh\] {
  max-height: 60vh;
}

.max-h-\[calc\(66\%_-_1\.5rem\)\] {
  max-height: calc(66% - 1.5rem);
}

.max-h-full {
  max-height: 100%;
}

.min-h-appHeightMinusHeader {
  min-height: calc(var(--app-height) - var(--header-height));
}

.w-12 {
  width: 3rem;
}

.w-40 {
  width: 10rem;
}

.w-52 {
  width: 13rem;
}

.w-auto {
  width: auto;
}

.w-full {
  width: 100%;
}

.min-w-\[16rem\] {
  min-width: 16rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-none {
  max-width: none;
}

.flex-auto {
  flex: 1 1 auto;
}

.origin-bottom {
  transform-origin: bottom;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.resize {
  resize: both;
}

.grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.place-items-center {
  place-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overscroll-y-contain {
  overscroll-behavior-y: contain;
}

.overscroll-x-none {
  overscroll-behavior-x: none;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rounded {
  border-radius: 0.25rem;
}

.border {
  border-width: 1px;
}

.bg-palePurple {
  --tw-bg-opacity: 1;
  background-color: rgb(238 237 244 / var(--tw-bg-opacity));
}

.bg-purple {
  --tw-bg-opacity: 1;
  background-color: rgb(65 50 136 / var(--tw-bg-opacity));
}

.bg-themeBg {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-whiteOpaque {
  background-color: rgba(255, 255, 255, 0.75);
}

.fill-current {
  fill: currentColor;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pl-\[10\%\] {
  padding-left: 10%;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.text-center {
  text-align: center;
}

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

.text-sm {
  font-size: 0.8333333333333334rem;
  line-height: 1.3333333333333333;
}

.text-xs {
  font-size: 0.7222222222222222rem;
  line-height: 1.3846153846153846;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.italic {
  font-style: italic;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.text-themeText {
  --tw-text-opacity: 1;
  color: rgb(85 85 85 / var(--tw-text-opacity));
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline {
  text-decoration-line: underline;
}

.no-underline {
  text-decoration-line: none;
}

.opacity-0 {
  opacity: 0;
}

.outline {
  outline-style: solid;
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

/*
@tailwind base;
@tailwind components;
@tailwind utilities;
*/

/* PPNeueMontreal-Medium - latin */

@font-face {
    font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Neue Montreal';
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/NeueMontreal/PPNeueMontreal-Medium.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* PPNeueMontreal-MediumItalic - latin */

@font-face {
    font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Neue Montreal';
    font-style: italic;
    font-weight: 400;
    src: url('../assets/fonts/NeueMontreal/PPNeueMontreal-MediumItalic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* PPNeueMontreal-Bold - latin */

@font-face {
    font-display: block; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Neue Montreal';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/NeueMontreal/PPNeueMontreal-Bold.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.typo-h1 {
  font-size: 1.1111111111111112rem;
  line-height: 1.3;
  font-weight: 700;
}

.typo-h2,
.typo-h3,
.typo-h4,
.typo-h5,
.typo-h6 {
  font-size: 1rem;
  line-height: 1.2222222222222223;
  font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 1rem;
}

p.has-large-font-size {
  margin: auto;
  max-width: 974px;
}

p.has-extra-small-font-size {
  font-size: 0.8333333333333334rem;
  line-height: 1.3333333333333333;
}

h1 {
  font-size: 1.1111111111111112rem;
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: 1rem;
  line-height: 1.2222222222222223;
  font-weight: 700;
}

@media (min-width: 782px) {

  h2 {
    font-size: 1.1111111111111112rem;
    line-height: 1.3;
  }
}

h3 {
  font-size: 1rem;
  line-height: 1.2222222222222223;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  line-height: 1.2222222222222223;
  font-weight: 700;
}

h5 {
  font-size: 1rem;
  line-height: 1.2222222222222223;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  line-height: 1.2222222222222223;
  font-weight: 700;
}

.teaser-title {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 782px) {

  .teaser-title {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

strong, b {
  font-weight: 600;
}

a {
  text-decoration-line: underline;
}

header a {
  text-decoration-line: none;
}

:root {
  font-size: 17px;
  line-height: 1.2222222222222223;
}

@media (min-width: 782px) {

  :root {
    font-size: 18px;
    line-height: 1.2222222222222223;
  }
}

:root {
    --header-height: 3.5rem;
    //scroll-behavior: smooth;
}

@media (min-width: 640px) {

:root {
        --header-height: 4rem
}
    }

@media (min-width: 782px) {

:root {
        --header-height: 4.5rem
}
    }

@media (min-width: 1024px) {

:root {
        --header-height: 6rem
}
    }

@media (min-width: 1240px) {

:root {
        --header-height: 7rem
}
    }

* {
    scroll-margin-top: 2rem;
}

body {
    --wp--preset--font-size--extra-small: 0.7222222222222222rem;
    --wp--preset--font-size--small: 0.8333333333333334rem;
    --wp--preset--font-size--normal: 1rem;
    --wp--preset--font-size--medium: 1.1111111111111112rem;
    --wp--preset--font-size--large: 1.3333333333333333rem;
    --wp--preset--font-size--extra-large: 1.25rem;
    --wp--preset--font-size--x-large: 1.5rem;
    --wp--preset--font-size--huge: 1.875rem;
    padding-top: var(--header-height);
}

.hide-scrollbars {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
}

/* Firefox */

.hide-scrollbars::-webkit-scrollbar {
        display: none;
    }

figure.rounded-borders img {
  border-radius: 0.5rem;
}

.entry-content p, .entry-content ul, .entry-content ol, .entry-content h3 {
  max-width: 850px;
}

.entry-content ol, .entry-content ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.entry-content ul {
  list-style-type: disc;
}

.news-teaser:last-child {
  padding-right: 1rem;
}

.news-teaser__content p {
  font-size: 0.8333333333333334rem;
  line-height: 1.3333333333333333;
}

@media (min-width: 782px) {

  .news-teaser__content p {
    font-size: 1rem;
    line-height: 1.2222222222222223;
  }
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 1rem;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.post-navigation .nav-links > div {
  flex-basis: 50%;
}

.post-navigation .nav-links a {
  text-decoration-line: none;
            /*
                @apply text-gray-500 hover:text-black;
            */
}

.post-navigation .nav-previous {
  order: 2;
  justify-self: end;
  text-align: right;
}

.post-navigation p.meta-nav {
  margin-bottom: 0.25rem;
  font-size: 0.8333333333333334rem;
  line-height: 1.3333333333333333;
  font-weight: 700;
}

.desktop-only {
  display: none;
}

@media (min-width: 640px) {
    .desktop-only {
    display: block;
  }
    .wp-block-columns.desktop-only {
    display: flex;
  }
    .mobile-only {
    display: none;
  }
}

@media only screen and (max-height: 879.8px) {
    :root {
    font-size: 17px;
    line-height: 1.2222222222222223;
  }
    .post-thumbnail--news {
    height: 50% !important;
  }
    .news-content {
    display: none;
  }
    @media (min-width: 1240px) {

    .news-teaser__content {
      max-height: calc(50% - 1.5rem) !important;
    }
  }
}

@media only screen and (min-height: 880px) {
    .news-excerpt {
    display: none;
  }
}

.news-teaser__content img, .news-teaser__content figure, .news-teaser__content iframe, .news-teaser__content .wp-block-embed {
  display: none !important;
}

#primary-menu-list li {
  margin-bottom: 0px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

#primary-menu-list li.current-menu-item {
  --tw-text-opacity: 1;
  color: rgb(255 109 2 / var(--tw-text-opacity));
}

#primary-menu-list a {
  text-decoration-line: none;
}

#primary-menu-list a:hover, #primary-menu-list a:focus {
  --tw-text-opacity: 1;
  color: rgb(255 109 2 / var(--tw-text-opacity));
}

#masthead.menu-open #site-navigation {
  height: 8rem;
}

.entry-content .wp-block-columns {
  margin-bottom: 0px;
  gap: 0px;
}

@media (min-width: 782px) {

  .entry-content .wp-block-columns {
    gap: 40px;
  }
}

@media (min-width: 1024px) {

  .entry-content .wp-block-columns {
    gap: 80px;
  }
}

.wp-block-image figcaption {
  text-align: left;
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-columns:not(:last-of-type) .wp-block-image {
  margin-bottom: 2rem;
}

.wp-block-column:not(:last-of-type) {
  margin-bottom: 2rem;
}

@media (min-width: 782px) {

  .wp-block-column:not(:last-of-type) {
    margin-bottom: 0px;
  }
}

.wp-block-column .btn-link {
  margin-top: 1.5rem;
}

h2.wp-block-heading {
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {

  h2.wp-block-heading {
    margin-bottom: 1.5rem;
  }
}

ul.button-style-list {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-left: 0px;
}

ul.button-style-list li {
  border-radius: 0.125rem;
  border-width: 1px;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.wp-block-table td, .wp-block-table th {
  border-style: none;
}

.kontakt-tabelle table {
  max-width: 20rem;
}

hr.wp-block-separator {
  border-bottom-width: 1px;
}

.last\:mb-12:last-child {
  margin-bottom: 3rem;
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

@media (min-width: 640px) {

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:text-sm {
    font-size: 0.8333333333333334rem;
    line-height: 1.3333333333333333;
  }
}

@media (min-width: 782px) {

  .md\:bottom-\[5vh\] {
    bottom: 5vh;
  }

  .md\:h-1\/2 {
    height: 50%;
  }

  .md\:h-14 {
    height: 3.5rem;
  }

  .md\:max-h-\[calc\(50\%_-_1\.5rem\)\] {
    max-height: calc(50% - 1.5rem);
  }

  .md\:min-w-\[20rem\] {
    min-width: 20rem;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:p-4 {
    padding: 1rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:pl-\[15\%\] {
    padding-left: 15%;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.2222222222222223;
  }
}

@media (min-width: 1024px) {

  .lg\:mb-theme-lg {
    margin-bottom: 80px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:\!h-full {
    height: 100% !important;
  }

  .lg\:h-16 {
    height: 4rem;
  }

  .lg\:h-full {
    height: 100%;
  }

  .lg\:w-44 {
    width: 11rem;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-0 {
    gap: 0px;
  }

  .lg\:overflow-hidden {
    overflow: hidden;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-md {
    font-size: 1.1111111111111112rem;
    line-height: 1.3;
  }
}

@media (min-width: 1240px) {

  .xl\:h-20 {
    height: 5rem;
  }

  .xl\:h-3\/5 {
    height: 60%;
  }

  .xl\:max-h-\[calc\(40\%_-_1\.5rem\)\] {
    max-height: calc(40% - 1.5rem);
  }

  .xl\:w-56 {
    width: 14rem;
  }

  .xl\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .xl\:text-lg {
    font-size: 1.3333333333333333rem;
    line-height: 1.3333333333333333;
  }
}

@media (min-width: 1400px) {

  .\32xl\:w-60 {
    width: 15rem;
  }
}

@media (min-width: 1680px) {

  .\33xl\:w-64 {
    width: 16rem;
  }
}

@media (min-width: 1880px) {

  .\34xl\:w-72 {
    width: 18rem;
  }
}

@media (orientation: portrait) {

  .portrait\:h-1\/2 {
    height: 50%;
  }

  .portrait\:flex-col {
    flex-direction: column;
  }

  .portrait\:pr-20 {
    padding-right: 5rem;
  }

  .portrait\:pt-24 {
    padding-top: 6rem;
  }

  @media (min-width: 782px) {

    .portrait\:md\:pt-40 {
      padding-top: 10rem;
    }
  }
}

@media (orientation: landscape) {

  .landscape\:bottom-0 {
    bottom: 0px;
  }

  .landscape\:flex {
    display: flex;
  }

  .landscape\:h-full {
    height: 100%;
  }

  .landscape\:w-1\/2 {
    width: 50%;
  }

  .landscape\:w-\[10vh\] {
    width: 10vh;
  }

  .landscape\:items-end {
    align-items: flex-end;
  }

  .landscape\:pb-\[20vh\] {
    padding-bottom: 20vh;
  }

  @media (min-width: 782px) {

    .landscape\:md\:bottom-\[5vh\] {
      bottom: 5vh;
    }
  }
}