@charset "UTF-8";
/* BASE */
/* vars */
:root {
  --primary-color: #D85F24;
  --primary-color-light: #FAEBE3;
  --primary-color-dark: #8F3A16;
  --secondary-color: #113356;
  --secondary-color-dark: #0A1B2E;
  --secondary-color-light: #E1E9F2;
  --accent-color: #0F9399;
  --accent-color-dark: #0F5C60;
  --accent-color-light: #DEF9FA;
  --header-font: 'cera_problack', sans-serif;
  --body-font: 'cera_prolight', sans-serif;
  --border-radius: 8px;
  --button-border-radius: var(--border-radius);
  --spacer: 8px;
  --section-spacer-wide: calc(var(--spacer) * 8);
  --section-spacer-narrow: calc(var(--spacer) * 5);
  --align-wide: 1440px;
  --align-narrow: 680px;
  --layout-gap: 40px;
}

/* Reset */
body, html {
  margin: 0;
  padding: 0;
}

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

body,
input,
textarea,
button,
select {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: inherit;
}

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

.devider {
  display: block;
  clear: both;
  height: 1px;
  background: var(--accent-color);
  width: 100%;
  margin: 40px auto;
  max-width: 920px;
}

.wp-element-caption {
  font-size: 14px;
  font-style: italic;
  line-height: 1em;
}

.wp-block-gallery .wp-element-caption {
  font-weight: 400;
  font-style: normal;
}

.post_date {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.post_date > span {
  font-weight: 600;
}

ul.menu {
  list-style: none;
  padding: 0;
}

/* Helper classes */
.alignfull {
  width: 100%;
  padding: 0 20px;
}

.alignwide {
  width: 100%;
  max-width: 1440px !important;
  margin: 0 auto;
}

.alignnarrow {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.alignwide > .alignwide {
  margin: 0;
  width: 100%;
}

.is-layout-constrained > div:not(.alignfull, .alignwide, .alignleft, .alignright) {
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .alignwide {
    margin: 0 40px;
    width: calc(100% - 80px);
  }
}
@media (max-width: 779px) {
  .alignwide {
    margin: 0 20px;
    width: calc(100% - 40px);
    padding: 0;
  }
}
.alignright {
  margin-left: auto;
  text-align: right;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

body .wp_content > :where(:not(.alignleft):not(.alignright):not(.alignfull):not(.alignwide)) {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

body .wp_content {
  font-size: 18px;
}

.is-layout-flex {
  display: flex;
}
.is-layout-flex > div {
  flex: 1 1 0;
}

.wp_content > .wp-block-image > img {
  border-radius: var(--border-radius);
}

@media (max-width: 959px) {
  .wrap-all {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .wrap-all-inner {
    position: relative;
    width: 100%;
    z-index: 10;
    transition: transform 500ms ease;
  }
  body .wp_content {
    font-size: 16px;
  }
  body .post-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .wp-content-main {
    margin-bottom: calc(var(--section-spacer-narrow) * 2);
  }
  .alignfull .alignwide,
  .alignwide .alignfull {
    padding-left: 0;
    padding-right: 0;
  }
  .alignfull .alignwide {
    margin: 0 auto;
    width: 100%;
  }
  .alignfull.has-background > .alignwide {
    padding-left: 40px;
    padding-right: 40px;
  }
  .l-hidden {
    display: block;
  }
  .m-hidden {
    display: none;
  }
  .s-hidden {
    display: none;
  }
}
@media (min-width: 960px) {
  .alignfull {
    padding: 0;
  }
  .l-hidden {
    display: none;
  }
  .align-right-on-large {
    text-align: right;
    justify-content: flex-end;
  }
  .align-center-on-large {
    text-align: center;
    justify-content: center;
  }
  .wp-content-main {
    margin-bottom: calc(var(--section-spacer-wide) * 2);
  }
}
.block-header h2 {
  max-width: 28em;
}

.wp-block-group.has-background,
.wp-block-column.has-background {
  padding: 40px 0;
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  border-radius: var(--border-radius);
  padding: 40px;
}
.wp-block-group.has-background h1, .wp-block-group.has-background h2, .wp-block-group.has-background h3, .wp-block-group.has-background .h1, .wp-block-group.has-background .h2, .wp-block-group.has-background .h3,
.wp-block-column.has-background h1,
.wp-block-column.has-background h2,
.wp-block-column.has-background h3,
.wp-block-column.has-background .h1,
.wp-block-column.has-background .h2,
.wp-block-column.has-background .h3 {
  color: var(--primary-color);
}
.wp-block-group.has-background .wp-block-button > .wp-block-button__link,
.wp-block-column.has-background .wp-block-button > .wp-block-button__link {
  background-color: var(--primary-color);
  color: var(--primary-color-light);
}
.wp-block-group.has-background .wp-block-button > .wp-block-button__link:hover,
.wp-block-column.has-background .wp-block-button > .wp-block-button__link:hover {
  background-color: var(--primary-color-dark);
}
.wp-block-group.has-background .wp-block-image img,
.wp-block-column.has-background .wp-block-image img {
  border-radius: var(--border-radius);
}
.wp-block-group.has-teal-blue-light-background-color,
.wp-block-column.has-teal-blue-light-background-color {
  background-color: var(--accent-color-light);
  color: var(--accent-color-dark);
}
.wp-block-group.has-teal-blue-light-background-color h1, .wp-block-group.has-teal-blue-light-background-color h2, .wp-block-group.has-teal-blue-light-background-color h3, .wp-block-group.has-teal-blue-light-background-color h4, .wp-block-group.has-teal-blue-light-background-color .h1, .wp-block-group.has-teal-blue-light-background-color .h2, .wp-block-group.has-teal-blue-light-background-color .h3, .wp-block-group.has-teal-blue-light-background-color .h4,
.wp-block-column.has-teal-blue-light-background-color h1,
.wp-block-column.has-teal-blue-light-background-color h2,
.wp-block-column.has-teal-blue-light-background-color h3,
.wp-block-column.has-teal-blue-light-background-color h4,
.wp-block-column.has-teal-blue-light-background-color .h1,
.wp-block-column.has-teal-blue-light-background-color .h2,
.wp-block-column.has-teal-blue-light-background-color .h3,
.wp-block-column.has-teal-blue-light-background-color .h4 {
  color: var(--accent-color);
}
.wp-block-group.has-teal-blue-light-background-color .wp-block-button > .wp-block-button__link,
.wp-block-column.has-teal-blue-light-background-color .wp-block-button > .wp-block-button__link {
  background-color: var(--accent-color);
  color: var(--accent-color-light);
}
.wp-block-group.has-teal-blue-light-background-color .wp-block-button > .wp-block-button__link:hover,
.wp-block-column.has-teal-blue-light-background-color .wp-block-button > .wp-block-button__link:hover {
  background-color: var(--accent-color-dark);
}
.wp-block-group.has-navy-blue-light-background-color,
.wp-block-column.has-navy-blue-light-background-color {
  background-color: var(--secondary-color-light);
  color: var(--secondary-color-dark);
}
.wp-block-group.has-navy-blue-light-background-color h1, .wp-block-group.has-navy-blue-light-background-color h2, .wp-block-group.has-navy-blue-light-background-color h3, .wp-block-group.has-navy-blue-light-background-color h4, .wp-block-group.has-navy-blue-light-background-color .h1, .wp-block-group.has-navy-blue-light-background-color .h2, .wp-block-group.has-navy-blue-light-background-color .h3, .wp-block-group.has-navy-blue-light-background-color .h4,
.wp-block-column.has-navy-blue-light-background-color h1,
.wp-block-column.has-navy-blue-light-background-color h2,
.wp-block-column.has-navy-blue-light-background-color h3,
.wp-block-column.has-navy-blue-light-background-color h4,
.wp-block-column.has-navy-blue-light-background-color .h1,
.wp-block-column.has-navy-blue-light-background-color .h2,
.wp-block-column.has-navy-blue-light-background-color .h3,
.wp-block-column.has-navy-blue-light-background-color .h4 {
  color: var(--secondary-color);
}
.wp-block-group.has-navy-blue-light-background-color .wp-block-button > .wp-block-button__link,
.wp-block-column.has-navy-blue-light-background-color .wp-block-button > .wp-block-button__link {
  background-color: var(--secondary-color);
  color: var(--secondary-color-light);
}
.wp-block-group.has-navy-blue-light-background-color .wp-block-button > .wp-block-button__link:hover,
.wp-block-column.has-navy-blue-light-background-color .wp-block-button > .wp-block-button__link:hover {
  background-color: var(--secondary-color-dark);
}

.wp-block-group > .wp-block-group {
  padding-top: 0;
  padding-bottom: 0;
}

.wp-block-group .wp-block-columns {
  margin-bottom: 0 !important;
}

@media (min-width: 960px) {
  .wp-block-group, .post-content {
    margin-bottom: var(--section-spacer-wide);
  }
  .wp-block-group .wp-block-group {
    margin-bottom: var(--spacer);
  }
}
@media (min-width: 780px) {
  .wp-block-group, .post-content {
    margin-bottom: var(--section-spacer-narrow);
  }
  .wp-block-group.has-background {
    margin-top: 104px;
    margin-bottom: 104px;
  }
  .wp-block-group.has-background .wp-block-image {
    margin: -80px 0;
  }
  .wp-block-columns.is-layout-flex {
    gap: var(--layout-gap) !important;
  }
}
@media (max-width: 779px) {
  .wp-block-group, .post-content {
    margin-bottom: var(--section-spacer-narrow);
  }
  .wp-block-columns.reverse-on-mobile {
    flex-wrap: wrap-reverse !important;
  }
  .wp-block-group.has-background,
  .wp-block-column.has-background {
    padding: 24px;
  }
  .wp_content > .wp-block-group:not(.alignwide, .alignfull) {
    padding: 24px;
  }
  .wp-block-column.has-background {
    margin-bottom: var(--section-spacer-narrow);
  }
  .wp-block-group.has-background {
    margin: 40px 20px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 600px) {
  #CookiebotWidget:not(.CookiebotWidget-inactive) {
    margin-bottom: 60px !important;
  }
}
/* Typografi */
@font-face {
  font-family: "cera_problack_italic";
  src: url("fonts/cera_pro_black_italic-webfont.woff2") format("woff2"), url("fonts/cera_pro_black_italic-webfont.woff") format("woff");
  font-weight: bolder;
  font-style: italic;
}
@font-face {
  font-family: "cera_problack";
  src: url("fonts/cera_pro_black-webfont.woff2") format("woff2"), url("fonts/cera_pro_black-webfont.woff") format("woff");
  font-weight: bolder;
  font-style: normal;
}
@font-face {
  font-family: "cera_probold_italic";
  src: url("fonts/cera_pro_bold_italic-webfont.woff2") format("woff2"), url("fonts/cera_pro_bold_italic-webfont.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "cera_probold";
  src: url("fonts/cera_pro_bold-webfont.woff2") format("woff2"), url("fonts/cera_pro_bold-webfont.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "cera_prolight";
  src: url("fonts/cera_pro_light-webfont.woff2") format("woff2"), url("fonts/cera_pro_light-webfont.woff") format("woff");
  font-weight: light;
  font-style: normal;
}
body {
  font-family: "cera_prolight", Sans-serif;
  font-weight: 400;
  color: black;
}

h1, h2, h3,
.h1, .h2, .h3, .h1-super {
  font-family: "cera_problack", Sans-serif;
  margin-top: 0;
  margin-bottom: var(--spacer);
}

h1.super,
.h1-super {
  font-size: 2.5rem;
  line-height: 1.2em;
}

h1, .h1 {
  font-size: 2.5rem;
  line-height: 1.2em;
}

h2, .h2 {
  font-size: 1.75rem;
  line-height: 1.333em;
}

h3, .h3 {
  font-size: 1.5rem;
  line-height: 1.25em;
}

h4, .h4 {
  font-family: "cera_problod", sans-serif;
  font-size: 1.125rem;
  line-height: 1.3333rem;
  margin: 0 0 var(--spacer) 0;
}

@media (min-width: 960px) {
  h1.super,
  .h1-super {
    font-size: 5.5rem;
    line-height: 1.1em;
  }
  h1, .h1 {
    font-size: 3.75rem;
    line-height: 1.2em;
  }
  h2, .h2 {
    font-size: 2rem;
    line-height: 1.2em;
  }
  h3, .h3 {
    font-size: 2rem;
    line-height: 1.25em;
  }
  h4, .h4 {
    font-size: 1.125rem;
    line-height: 1.3333rem;
  }
}
h2, h3, h4,
.h2, .h3, .h4 {
  color: inherit;
}

.has-text-color h2,
.has-text-color h3,
.has-text-color h4 {
  color: currentColor !important;
}

h1, .h1 {
  font-weight: 500;
}

h2, h3, h4, h5,
.h2, .h3, .h4 {
  font-weight: 600;
}

p, ul, ol {
  font-size: 18px;
  font-weight: 300;
  line-height: calc(var(--spacer) * 3);
  margin: 0 0 calc(var(--spacer) * 2) 0;
}

ul {
  padding-left: 1rem;
}

ol {
  padding-left: 1.5rem;
}

ul li::marker {
  font-size: 75%;
}

.post-content h2 {
  font-size: 2em;
  line-height: 1.2em;
}

.post-content h3 {
  font-size: 1.5em;
  line-height: 1.2em;
}

.post-content h4 {
  font-size: 1.25em;
  line-height: 1.2em;
}

.post-content p,
.post-content ul,
.post-content ol {
  line-height: 30px;
}

.har-large-font-size {
  font-size: 22px;
  line-height: calc(var(--spacer) * 4);
}

.has-manchet-font-size {
  font-size: 22px;
  line-height: 2rem;
  color: var(--primary-color-dark);
}

.has-small-font-size {
  font-size: 14px;
  font-weight: 400;
}

a {
  transition: color 200ms linear, background 200ms linear;
  color: currentColor;
}

a:hover {
  color: currentColor;
}

blockquote p {
  font-size: 24px;
  font-style: italic;
  line-height: 32px;
}

blockquote cite {
  font-size: 16px;
  font-style: normal;
}

strong {
  font-family: "cera_probold", sans-serif;
  font-weight: bold;
}

.wp_content a {
  color: var(--accent-color-dark);
}

.wp_content a:hover,
.wp_content a:focus {
  color: var(--accent-color-dark);
}

.wp_content {
  font-size: 16px;
  font-weight: 300;
  line-height: calc(var(--spacer) * 3);
}

.wp-block-column > p {
  max-width: 36rem;
}

.wp_content p {
  margin-top: 0;
  margin-bottom: 32px;
}

.wp-block-column h1,
.wp-block-column h2,
.wp-block-column h3 {
  margin-bottom: 8px;
  color: currentColor;
}

@media (min-width: 960px) {
  .block-header {
    margin-bottom: 5rem;
  }
}
@media (max-width: 779px) {
  .wp_content > p, .wp_content > h1, .wp_content > h2, .wp_content > h3, .wp_content > h4, .wp_content > ul, .wp_content > figure {
    padding: 0 24px;
  }
}
/* dependencies */
/* ELEMENTS */
/* BASE */
/* Site header */
.site-header {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 16px 0;
  transition: transform 350ms ease-out, height 500ms ease-out, background 350ms linear;
  background: transparent;
}
.site-header .search-lang button {
  border: none;
  background: transparent;
  color: currentColor;
  padding: 0;
}

.site-name .site-logo {
  height: 22px;
  width: auto;
  display: block;
}

.site-header .wp-block-columns {
  margin-bottom: 0;
}

@media (min-width: 960px) {
  .site-header {
    position: absolute;
    transform: translateY(0);
    color: white;
  }
  .site-header .site-header-inner > div {
    align-items: center;
  }
  .site-header .site-name {
    max-width: 180px;
    margin-right: 40px;
  }
  .site-header .site-navigation {
    text-wrap: nowrap;
  }
  .site-header .header-open-hours {
    text-wrap-style: pretty;
  }
  .site-header .header-right-block {
    display: flex;
    align-items: center !important;
    justify-content: flex-end;
  }
  .site-header .header-right-block > div {
    margin-left: 16px;
  }
  .site-header.hidden {
    transform: translateY(-100%);
  }
  .site-header.sticky, .site-header.menu-open {
    background: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    backdrop-filter: blur(10px);
  }
  .site-header.sticky {
    position: fixed;
  }
  .site-header:not(.sticky, .menu-open) .site-name svg path {
    fill: white !important;
  }
  .site-header .search-lang {
    white-space: nowrap;
  }
  .site-header .search-lang > div {
    display: inline-block;
  }
  .site-header .language {
    position: relative;
  }
  .site-header .language .language-list {
    position: absolute;
    left: -16px;
    top: calc(100% + 8px);
    display: none;
  }
  .site-header .language .language-list.show {
    display: initial;
  }
  .site-header.sticky .language-list {
    background: rgba(255, 255, 255, 0.9);
    top: calc(100% + 25px);
  }
}
@media (min-width: 1200px) {
  .site-header .site-name {
    max-width: 260px;
  }
  .site-header .site-name .site-logo {
    height: 26px;
  }
}
@media (max-width: 959px) {
  .site-header .language {
    position: fixed;
    top: 20px;
    z-index: 99;
    right: 20px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
  .site-header .language button {
    display: none;
  }
  .site-header .language .language-list ul > li {
    display: inline-block;
  }
  .site-header .language .language-list ul > li a {
    padding: 0 0 0 var(--spacer);
    margin: 0 0 0 var(--spacer);
    font-size: 14px;
    color: var(--secondary-color);
  }
  .site-header .language .language-list ul .wpml-ls-current-language a {
    font-family: "cera_probold", sans-serif;
  }
  .site-header .search {
    position: fixed;
    top: 24px;
    left: 20px;
    z-index: 99;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
  }
  .site-header .search a {
    color: var(--secondary-color);
  }
  .header-open-hours,
  .header-cta {
    position: fixed;
    top: calc(100dvh - 48px);
    z-index: 99;
  }
  .header-open-hours {
    left: 0;
    width: 100%;
    height: 48px;
    background: white;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
  }
  .header-open-hours-text {
    width: 70%;
    font-size: 14px;
    color: var(--secondary-color);
    padding: 8px 20px;
    line-height: 1rem;
    text-wrap-style: balance;
  }
  .header-cta {
    width: 30%;
    right: 0;
    text-align: right;
    z-index: 109;
  }
  .header-cta .wp-block-button .wp-block-button__link {
    border-radius: 0;
    padding: 16px 12px;
  }
  html:not(.mob-nav-active) .site-name svg path {
    fill: white !important;
  }
  .mob-nav-active .site-header .language, .mob-nav-active .site-header .search {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
    transition: opacity 100ms linear 500ms;
  }
}
/* BASE */
/* Site footer */
.site-footer {
  position: relative;
}
.site-footer .wp-block-group {
  margin-bottom: 0;
}

.site-footer .site-footer-main-inner {
  padding: 2rem 0;
}

.site-footer .site-footer-block {
  margin-bottom: 1rem;
}

.site-footer .site-logo {
  width: 200px;
  height: auto;
}
.site-footer .site-logo > path {
  fill: white !important;
}

.site-footer .site-footer-main {
  background-color: var(--secondary-color);
}

.site-footer .site-footer-mandetory {
  background-color: var(--secondary-color-dark);
  padding: calc(var(--spacer) * 3);
}

.site-footer .site-footer-mandetory,
.site-footer .site-footer-mandetory p,
.site-footer .site-footer-main,
.site-footer .site-footer-main p,
.site-footer .site-footer-main ul {
  font-size: 14px;
  color: white;
  line-height: 1.5em;
}

.site-footer ul.menu {
  font-size: 1rem;
  line-height: 1.5em;
}

.site-footer .site-footer-mandetory p {
  margin-bottom: 0;
}

.site-footer .site-footer-top {
  background-color: var(--accent-color);
  color: var(--accent-color-light);
  padding: 24px 0;
  border-radius: 8px 8px 0 0;
}
.site-footer .site-footer-top .wp-block-columns {
  margin-bottom: 0;
}
.site-footer .site-footer-top .wp-block-columns p {
  margin-bottom: 0;
  max-width: 100%;
}
.site-footer .site-footer-top h4 {
  color: inherit;
}

@media (min-width: 960px) {
  .site-footer .site-footer-main-inner {
    padding: 2.5rem 0;
  }
  .site-footer .site-footer-cols {
    display: flex;
    justify-content: space-between;
  }
  .site-footer .site-footer-cols .site-footer-block {
    min-width: 25%;
    margin-bottom: 0;
  }
  .site-footer .site-footer-main-inner {
    position: relative;
    width: 100%;
  }
}
@media (max-width: 779px) {
  .site-footer .site-footer-top {
    padding: 16px 0;
  }
  .site-footer .site-footer-top .wp-block-column {
    padding: 8px 16px;
  }
}
/* BASE */
/* Header navigation */
.site-navigation > div {
  color: currentColor;
  font-family: "cera_probold", sans-serif;
  font-weight: bold;
}
.site-navigation > div ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-navigation > div ul a {
  text-decoration: none;
}
.site-navigation > div ul.menu > li > a {
  color: currentColor;
}
.site-navigation > div ul.menu > li > a {
  border-bottom: 2px solid transparent;
  transition: border 150ms linear;
}
.site-navigation > div ul.menu > li > a:hover,
.site-navigation > div ul.menu > li.current_page_parent > a,
.site-navigation > div ul.menu > li.current_page_item > a {
  border-color: currentColor;
}
.site-navigation > div li.site-search-trigger > a > svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
  transform: scale(0.8) translate(2px, 3px);
}

@media (min-width: 960px) {
  .site-navigation > div ul.menu > li {
    display: inline-block;
    margin-right: 16px;
  }
  .site-navigation > div ul.menu > li > a {
    font-size: 16px;
    line-height: 24px;
  }
  .site-navigation > div li.menu-item-has-children > .sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: opacity 350ms linear;
  }
  .site-navigation > div li.submenu-open > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
  .site-navigation > div ul.menu > li {
    position: relative;
  }
  .site-navigation > div .sub-menu > li {
    margin: 16px auto;
  }
  .site-navigation > div .sub-menu a {
    color: currentColor;
    white-space: nowrap;
    font-weight: 400;
  }
  .site-navigation > div .sub-menu {
    padding: 16px 0;
    height: auto;
    position: absolute;
    z-index: 999;
    left: 0;
  }
}
@media (max-width: 959px) {
  .site-header .site-navigation {
    align-items: center !important;
  }
  .site-navigation > div ul.menu {
    width: 240px;
  }
  .site-navigation > div ul.menu .sub-menu {
    height: 0px;
    overflow: hidden;
    transition: height 350ms ease-out, margin 200ms linear;
  }
  .site-navigation > div ul.menu > li {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
  }
  .site-navigation > div ul.menu a {
    display: block;
  }
  .site-navigation > div ul.menu > li.current-page-parent > a,
  .site-navigation > div ul.menu > li.current_page_item > a,
  .site-navigation > div ul.menu > li.submenu-open > a {
    color: var(--accent-color);
  }
  .site-navigation > div ul.menu > li.current-page-ancestor .sub-menu,
  .site-navigation > div ul.menu > li.current-page-parent .sub-menu,
  .site-navigation > div ul.menu > li.current_page_item .sub-menu,
  .site-navigation > div ul.menu .sub-menu[data-open=true] {
    height: auto;
    margin-top: 8px;
  }
  .site-navigation > div .sub-menu > li {
    padding: 4px 0 4px 16px;
    border-left: 2px solid var(--accent-color);
  }
  .site-navigation > div .sub-menu a {
    color: var(--accent-color);
  }
  .site-navigation > div li.menu-item-has-children > a {
    position: relative;
  }
  .site-navigation > div li.menu-item-has-children > a::after {
    content: "\f347";
    font-family: "dashicons";
    font-size: 16px;
    position: absolute;
    top: 1px;
    right: 10px;
  }
  .menu-hovedmenu-container li.site-search-trigger {
    display: none;
  }
  .mob-nav-trigger {
    position: fixed;
    z-index: 99;
    right: 15px;
    bottom: 60px;
    width: 48px;
    height: 48px;
    border: 0;
    outline: none;
    display: block;
    background: var(--secondary-color);
    border-radius: 24px;
  }
  .mob-nav-trigger span,
  .mob-nav-trigger span:before,
  .mob-nav-trigger span:after {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    border-radius: 0.1em;
    background-color: white;
    transition: all 500ms ease;
  }
  .mob-nav-trigger span {
    left: 50%;
    margin-left: -12.5px;
    top: 50%;
    margin-top: -2px;
  }
  .mob-nav-trigger span:before {
    top: -0.5em;
    left: 0;
  }
  .mob-nav-trigger span:after {
    bottom: -0.5em;
    left: 0;
  }
  .mob-nav-active .mob-nav-trigger span {
    background: transparent;
    transform: translateY(0.4em);
    margin-top: 0px;
  }
  .mob-nav-active .mob-nav-trigger span:before {
    transform: rotate(45deg);
    background: white;
  }
  .mob-nav-active .mob-nav-trigger span:after {
    transform: translateY(-1em) rotate(-45deg);
    background: white;
  }
  .site-navigation {
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 50;
    transform: translateX(100%);
    background: white;
    padding: 60px 30px;
    transition: transform 500ms ease;
    display: flex;
    align-content: center;
  }
  .mob-nav-active .site-navigation {
    transform: translateX(0);
  }
}
/* BASE */
/*  button */
.wp-block-button > .wp-block-button__link,
.btn, .button, .wc-block-components-button {
  display: inline-block;
  white-space: nowrap;
  width: auto !important;
  font-family: "cera_probold", sans-serif;
  font-size: 1rem;
  line-height: 1em;
  padding: 12px;
  border-radius: var(--button-border-radius);
  text-decoration: none;
  transition: color 150ms linear, background 150ms linear, border-color 150ms linear;
}

.btn.btn-with-lable .btn-lable {
  width: 16px;
  line-height: 16px;
  border-radius: 8px;
  text-align: center;
  background: var(--accent-color-dark);
  margin-left: 4px;
  display: inline-block;
  font-size: 14px;
}

.wp-block-button.is-style-outline > .wp-block-button__link,
.btn.btn-outline {
  border: 2px solid currentColor;
  background-color: transparent !important;
}

.wp-block-button > .wp-block-button__link,
.btn, .button, .wc-block-components-button {
  background-color: var(--accent-color);
  color: var(--accent-color-light) !important;
}
.wp-block-button > .wp-block-button__link:hover, .wp-block-button > .wp-block-button__link:focus,
.btn:hover,
.btn:focus, .button:hover, .button:focus, .wc-block-components-button:hover, .wc-block-components-button:focus {
  background-color: var(--accent-color-dark);
}

/* BASE */
/* Forms */
form {
  margin: 0;
  padding: 0;
}

input[type=text],
input[type=email],
input[type=search],
input[type=number],
input[type=password] {
  border: 1px solid var(--primary-color);
  padding: 1rem;
  font-size: 1rem;
  line-height: 1em;
  border-radius: var(--border-radius);
  font-weight: 400;
  appearance: none;
}

input[type=text]::placeholder, input[type=email]::placeholder, input[type=search]::placeholder {
  font-style: italic;
  color: rgba(124, 124, 124, 0.5);
}

input[type=submit],
input[type=button],
input[type=reset],
button {
  border: 0;
}

input.input-fullwidth {
  width: 100%;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: rgb(var(--primary-color-dark));
}

label.checkbox-label {
  font-weight: 400;
}

input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  margin: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--primary-color);
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 4px;
}

input[type=checkbox]::before {
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: 100ms transform ease-in-out;
  background-color: var(--accent-color);
  clip-path: polygon(10% 54%, 1% 70%, 49% 100%, 100% 8%, 85% 0, 43% 74%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

input[type=checkbox]:checked::before {
  transform: scale(0.75);
}

input[type=checkbox] + label,
label + input[type=checkbox] {
  vertical-align: middle;
}

/* BASE */
.posts_list_block {
  width: 100%;
}

.wp_block_posts_list,
.wp_posts_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-items: flex-start;
}

.wp_block_posts_list a,
.wp_posts_list a {
  border: 0;
  text-decoration: none;
  color: var(--primary-color);
}

.wp_block_posts_list a:hover,
.wp_posts_list a:hover {
  color: var(--secondary-color-dark);
}

.wp_posts_list,
.wp_block_posts_list {
  gap: 40px;
}

.wp_block_posts_list > li,
.wp_posts_list > li {
  width: calc((100% - 80px) / 3);
}

.posts_list_featured-image img {
  width: 100%;
}

.posts_list_date {
  font-size: 14px;
  font-style: italic;
  padding: 16px 0 16px 0;
}

.posts_list_title {
  font-weight: 900;
  color: currentColor;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0 0 16px 0;
  display: block;
}

.posts_list_title::after {
  content: "\f345";
  font-family: "dashicons";
  font-size: 0.8em;
  vertical-align: bottom;
  padding-left: 8px;
  transition: padding 250ms ease-in-out;
}

.wp_block_posts_list a:hover .posts_list_title::after,
.wp_posts_list a:hover .posts_list_title::after {
  padding-left: 16px;
}

.posts_list_exceprt {
  padding: 0 0 16px 0;
  font-size: 16px;
  line-height: 24px;
}

.posts_list_link {
  padding: 0 0 24px 0;
}

.wp_posts_list_pagination {
  width: 100%;
  max-width: 960px;
  display: flex;
  justify-content: space-evenly;
  margin: 24px auto;
}

@media (max-width: 1100px) {
  .wp_block_posts_list > li,
  .wp_posts_list > li {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 600px) {
  .wp_block_posts_list > li,
  .wp_posts_list > li {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .wp_posts_list_pagination {
    margin: 40px auto;
  }
}
.shop-page .wp_content > div {
  max-width: 940px;
  position: relative;
}
.shop-page .woocommerce-result-count,
.shop-page .woocommerce-ordering {
  display: inline-block;
}
.shop-page .woocommerce-ordering {
  position: absolute;
  right: 0;
}
.shop-page .page-hero-webshop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: calc(var(--spacer) * 3);
}
.shop-page .page-hero-webshop .wc-breadcrumb-container {
  font-size: 14px;
}
.shop-page .product .onsale,
.shop-page .product .wc-block-components-product-sale-badge {
  background: var(--accent-color);
  border: none;
  color: white;
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 20px;
  padding: 2px 4px;
  border-radius: calc(var(--border-radius) / 2);
  font-family: "cera_probold";
}
.shop-page .product .wc-block-components-product-price,
.shop-page .product .price {
  font-family: "cera_probold";
  color: var(--accent-color);
  display: block;
}
.shop-page .product .wc-block-components-product-price del,
.shop-page .product .price del {
  font-family: var(--body-font);
  color: darkgray;
}
.shop-page .product .wc-block-components-product-price ins,
.shop-page .product .price ins {
  text-decoration: none;
}
.shop-page .product .button,
.shop-page .product .wp-block-button__link {
  line-height: 1em !important;
  font-size: 14px;
  padding: 12px;
  background: darkgray;
  color: white !important;
}
.shop-page .product .button.add_to_cart_button, .shop-page .product .button.single_add_to_cart_button,
.shop-page .product .wp-block-button__link.add_to_cart_button,
.shop-page .product .wp-block-button__link.single_add_to_cart_button {
  background-color: var(--accent-color);
  color: white !important;
}
.shop-page .product.outofstock .button {
  background: darkgray;
  color: white !important;
}
.shop-page .product img {
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
}
.shop-page .product a {
  text-decoration: none;
  color: black;
}
.shop-page .button {
  color: white;
}
.shop-page .button:hover,
.shop-page .button:focus,
.shop-page .button:active {
  color: white;
}
.shop-page .wc-block-product-template,
.shop-page ul.products {
  padding-left: 0;
}
.shop-page .wc-block-product-template:is([class*=columns-]),
.shop-page ul.products:is([class*=columns-]) {
  display: grid;
  grid-gap: calc(var(--spacer) * 3);
  grid-template-columns: repeat(1, 1fr);
}
.shop-page .wc-block-product-template .product,
.shop-page ul.products .product {
  list-style: none;
  display: block;
  position: relative;
  text-align: left;
}
.shop-page .wc-block-product-template .product .wc-block-components-product-price,
.shop-page .wc-block-product-template .product .price,
.shop-page ul.products .product .wc-block-components-product-price,
.shop-page ul.products .product .price {
  font-size: 16px;
}
.shop-page .wc-block-product-template .product .onsale,
.shop-page .wc-block-product-template .product .wc-block-components-product-sale-badge,
.shop-page ul.products .product .onsale,
.shop-page ul.products .product .wc-block-components-product-sale-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  left: unset;
}
.shop-page .wc-block-product-template .product h2,
.shop-page ul.products .product h2 {
  font-size: 1.125rem;
  margin-bottom: var(--spacer) !important;
}
.shop-page .wc-single-product-container .product {
  position: relative;
}
.shop-page .wc-single-product-container .product .price {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.shop-page .wc-single-product-container .product .onsale,
.shop-page .wc-single-product-container .product .wc-block-components-product-sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 9;
}
.shop-page .wc-single-product-container .product .woocommerce-product-gallery,
.shop-page .wc-single-product-container .product .summary {
  display: inline-block;
}
.shop-page .wc-single-product-container .product .woocommerce-product-gallery {
  width: calc(35% + 40px);
  padding-right: 40px;
  vertical-align: top;
}
.shop-page .wc-single-product-container .product .summary {
  width: calc(64% - 40px);
}
.shop-page .wc-single-product-container .product .summary .product_title {
  font-size: 2rem;
}
.shop-page .wc-single-product-container .product .summary .woocommerce-product-details__short-description {
  font-size: 16px;
  margin-bottom: 1rem;
}
.shop-page .wc-single-product-container .product .summary .woocommerce-product-details__short-description h4, .shop-page .wc-single-product-container .product .summary .woocommerce-product-details__short-description p {
  font-size: inherit;
  margin-bottom: 8px;
}
.shop-page .wc-single-product-container .product .summary .out-of-stock {
  display: inline-block;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--border-radius);
  background-color: lightgray;
}
.shop-page .wc-single-product-container .product .summary .cart {
  margin-bottom: 1rem;
}
.shop-page .wc-single-product-container .product .summary .cart .quantity,
.shop-page .wc-single-product-container .product .summary .cart .button {
  display: inline-block;
}
.shop-page .wc-single-product-container .product .summary .cart .quantity {
  width: 100px;
  margin-right: 1rem;
}
.shop-page .wc-single-product-container .product .summary .cart .quantity input {
  width: 100%;
}
.shop-page .wc-single-product-container .product .summary .cart .button {
  font-size: 16px;
  padding: 1em;
}
.shop-page .wc-single-product-container .product .summary .product_meta {
  font-size: 14px;
  line-height: 1.25em;
}
.shop-page .wc-single-product-container .product .summary .product_meta span {
  display: block;
}
.shop-page .wc-single-product-container .product .summary .product_meta a {
  text-decoration: underline;
  color: var(--secondary-color);
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items__row .wc-block-components-product-name {
  font-size: 16px;
  font-family: "cera_probold";
}
.wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block .wc-block-cart-items__row .wc-block-components-product-metadata__description {
  display: none;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar .wc-block-components-button {
  width: 100% !important;
}

.wp-block-woocommerce-checkout {
  padding-top: 0;
}
.wp-block-woocommerce-checkout input[type=checkbox]::before {
  content: none;
  display: none;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-metadata__description {
  display: none;
}

@media (min-width: 780px) {
  .shop-page .wc-block-product-template.columns-3,
  .shop-page ul.products.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-page .wc-block-product-template.columns-4,
  .shop-page ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 960px) {
  .shop-page .wc-block-product-template.columns-2,
  .shop-page ul.products.columns-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-page .wc-block-product-template.columns-3,
  .shop-page ul.products.columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .shop-page .wc-block-product-template.columns-4,
  .shop-page ul.products.columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .shop-page .wc-block-product-template.columns-5,
  .shop-page ul.products.columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 980px) {
  .shop-page .wp_content > div {
    padding: 0 20px;
  }
}
.page-hero-search {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  margin-bottom: calc(var(--spacer) * 3);
}
.page-hero-search .site-search-form > form {
  display: flex;
  margin-bottom: var(--spacer);
}
.page-hero-search .site-search-form > form input {
  flex-grow: 1;
  border: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.page-hero-search .site-search-form > form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.search-result_list {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.search-result_item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--secondary-color-light);
}

.search-result_item a {
  text-decoration: none;
}

.search-result_item a div {
  margin-bottom: 8px;
}

.search-result_item .item_title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.33em;
  display: inline-block;
  transition: border 200ms linear;
  position: relative;
}

.search-result_item .item_title::after {
  position: absolute;
  content: "\f345";
  font-family: "dashicons";
  font-size: 0.8em;
  vertical-align: bottom;
  transform: translate(8px, 1px);
  transition: transform 250ms ease-in-out;
}

.search-result_item .item_exceprt {
  font-size: 16px;
  line-height: 24px;
}

.search-result_item .item_type {
  font-size: 14px;
  font-style: italic;
}

.search-result_item a:hover {
  color: var(--secondary-color-dark);
}

.search-result_item a:hover .item_title {
  border-color: currentColor;
}

.search-result_item a:hover .item_title::after {
  transform: translate(16px, 1px);
}

.search-result_pagination {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}

.search-result_pagination a.active {
  font-weight: 600;
  text-decoration: none;
}

/*blocks*/
/* BASE */
/* Hero section */
.page-hero {
  position: relative;
  background: var(--primary-color);
  color: var(--primary-color-light);
  height: 50vh;
  margin-bottom: var(--section-spacer-narrow);
}
.page-hero.no-image .page-hero-inner {
  display: flex;
  align-items: center;
  min-height: 50vh;
}
.page-hero.no-image .page-hero-inner .page-hero-text {
  width: 100%;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.page-hero .page-hero-text .page-hero-campaign-image {
  width: 100%;
  max-width: 840px;
}
.page-hero .page-hero-text .btn {
  background-color: var(--primary-color);
  color: var(--primary-color-light) !important;
}
.page-hero .page-hero-text .btn:hover {
  background-color: var(--primary-color-dark) !important;
}

.shop-page .page-hero.no-image .page-hero-inner,
.search-page .page-hero.no-image .page-hero-inner {
  align-items: flex-end;
  flex-wrap: wrap;
}

.front-page .page-hero.image-full, .front-page .page-hero.video {
  margin-bottom: 0 !important;
}

.page-hero.image-inline {
  height: auto;
  margin-bottom: 120px;
}
.page-hero.image-inline .page-hero-inner {
  padding-top: 70px;
  display: flex;
  flex-wrap: wrap;
}
.page-hero.image-inline .page-hero-image {
  margin-bottom: -80px;
}
.page-hero.image-inline .page-hero-image img {
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.page-hero.image-full .page-hero-inner,
.page-hero.video .page-hero-inner {
  display: flex;
  height: 100%;
  align-items: center;
  text-align: center;
}
.page-hero.image-full .page-hero-text,
.page-hero.video .page-hero-text {
  position: relative;
  z-index: 9;
  width: 100%;
}
.page-hero.image-full .page-hero-image,
.page-hero.image-full .page-hero-video,
.page-hero.video .page-hero-image,
.page-hero.video .page-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-hero.image-full .page-hero-image::after,
.page-hero.image-full .page-hero-video::after,
.page-hero.video .page-hero-image::after,
.page-hero.video .page-hero-video::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-hero.image-full .page-hero-image-container,
.page-hero.video .page-hero-image-container {
  width: 100%;
  height: 100%;
}
.page-hero.image-full .page-hero-image-container img,
.page-hero.video .page-hero-image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-hero.image-full .page-hero-video-container,
.page-hero.video .page-hero-video-container {
  width: 100%;
  height: 100%;
}
.page-hero.image-full .page-hero-video-container video,
.page-hero.video .page-hero-video-container video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 780px) {
  .page-hero.image-full, .page-hero.video {
    height: 75vh;
    margin-bottom: var(--section-spacer-wide);
  }
  .page-hero.image-inline {
    margin-bottom: calc(var(--section-spacer-wide) + 80px);
  }
  .page-hero.image-inline .page-hero-inner {
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row-reverse;
    padding-top: 76px;
    margin-bottom: 80px;
  }
  .page-hero.image-inline .page-hero-image {
    width: 60%;
  }
  .page-hero.image-inline .page-hero-text {
    width: 40%;
  }
  .page-hero.image-inline .page-hero-text {
    margin-left: 40px;
  }
  .page-hero.image-inline .page-hero-image img {
    object-fit: cover;
    aspect-ratio: 4/3;
  }
  .page-hero.no-image {
    margin-bottom: var(--section-spacer-wide);
  }
}
.cards-container.has-background {
  background-color: var(--primary-color);
  color: var(--primary-color-light);
}
.cards-container .cards-list {
  flex-wrap: wrap !important;
}
.cards-container.cards-list-style-compact .cards-list {
  flex-wrap: nowrap !important;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* smooth momentum on iOS */
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  padding-bottom: 0;
  gap: 24px !important;
}
.cards-container.cards-list-style-compact .cards-list .card-item {
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

.frontpage-cards {
  overflow: unset;
  padding-top: 40px;
  background-color: var(--primary-color);
  color: var(--primary-color-light);
}
.frontpage-cards .wp-block-button > .wp-block-button__link {
  color: var(--primary-color-light) !important;
}

.card-item {
  border-radius: var(--border-radius);
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
}
.card-item .card-image > img {
  border-radius: var(--border-radius);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.card-item .card-text {
  padding: 24px;
}
.card-item .card-text h3 {
  color: var(--primary-color);
}
.card-item .wp-block-button .wp-block-button__link {
  background-color: var(--primary-color);
  color: var(--primary-color-light) !important;
}
.card-item .wp-block-button .wp-block-button__link:hover, .card-item .wp-block-button .wp-block-button__link:focus {
  background-color: var(--primary-color-dark);
  color: white;
}

@media (min-width: 780px) {
  .frontpage-cards {
    margin-bottom: 160px;
  }
  .frontpage-cards .cards-container .card-item {
    margin-bottom: 0;
  }
  .frontpage-cards .cards-list {
    padding-bottom: 40px;
  }
  .cards-container {
    padding-top: 40px;
  }
  .cards-list .card-item {
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .cards-list-style-compact .cards-list .card-item {
    min-width: calc(46% - 20px);
  }
}
@media (min-width: 960px) {
  .frontpage-cards .cards-container .card-item {
    margin-bottom: -80px;
  }
  .frontpage-cards .cards-list {
    padding-bottom: 0;
  }
  .cards-list .card-item {
    min-width: calc(33% - 40px);
  }
  .cards-list-style-compact .cards-list .card-item {
    min-width: calc(30% - 20px);
  }
}
@media (max-width: 779px) {
  .cards-list {
    padding: 40px 0;
  }
  .cards-list .card-item {
    margin-bottom: 24px;
  }
  .cards-list-style-compact .cards-list .card-item {
    min-width: calc(92% - 10px);
  }
}
@media (min-width: 1500px) {
  .cards-container.cards-list-style-compact {
    max-width: 100% !important;
    width: 100% !important;
  }
  .cards-container.cards-list-style-compact .cards-list {
    padding-left: calc((100vw - 1440px) / 2);
    padding-right: 40px;
    gap: 40px !important;
  }
}
@media (max-width: 1500px) {
  .cards-container.cards-list-style-compact {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: unset 0;
  }
  .cards-container.cards-list-style-compact .cards-list {
    padding: 0 40px;
  }
}
.daily-events {
  padding: calc(var(--spacer) * 5) 0;
}
.daily-events .daily-events-info .btn {
  color: var(--accent-color-light);
}
.daily-events .show-week .week-day {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color-light);
}
.daily-events .show-week .week-day-name h3 {
  text-transform: capitalize;
}
.daily-events .daily-events-item {
  font-size: 16px;
}
.daily-events .daily-events-item .daily-events-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--spacer);
}
.daily-events .daily-events-item .tag {
  background: var(--secondary-color);
  color: white;
  display: inline-block;
  white-space: nowrap;
  font-size: 13px;
  line-height: 20px;
  padding: 2px 3px;
  border-radius: calc(var(--border-radius) / 2);
  font-family: "cera_probold";
}
.daily-events .daily-events-item h4 {
  display: inline-block;
  line-height: 24px;
  color: var(--secondary-color);
  margin-bottom: 0;
}
.daily-events .daily-events-item p:last-of-type {
  margin-bottom: 0;
}
.daily-events.has-background {
  background-color: var(--secondary-color);
  color: var(--accent-color-light);
}
.daily-events.has-background .daily-events-info .btn {
  color: var(--accent-color-light);
}
.daily-events.has-background .tag {
  background-color: var(--accent-color-light);
  color: var(--secondary-color);
}
.daily-events.has-background .daily-events-item h4 {
  color: var(--accent-color-light);
}

@media (max-width: 781px) {
  .daily-events .daily-events-info,
  .daily-events .daily-events-item {
    margin-bottom: calc(var(--spacer) * 3);
  }
  .daily-events .daily-events-list {
    margin-bottom: 0;
  }
  .daily-events .daily-events-item {
    padding-bottom: calc(var(--spacer) * 3);
    border-bottom: 1px solid var(--secondary-color-light);
  }
  .daily-events .daily-events-item:last-of-type {
    margin-bottom: 0;
    border: none;
  }
  .daily-events .week-day-name,
  .daily-events .daily-events-list {
    flex-basis: 100%;
  }
  .daily-events .week-day-name {
    margin-bottom: calc(var(--spacer) * 2);
  }
}
@media (min-width: 782px) {
  .daily-events {
    margin-bottom: var(--section-spacer-wide);
  }
  .daily-events .daily-events-info,
  .daily-events .show-week .week-day-name {
    flex-basis: 33% !important;
  }
  .daily-events .daily-events-list-container,
  .daily-events .show-week .daily-events-list {
    flex-basis: 66% !important;
  }
  .daily-events .daily-events-list {
    flex-wrap: wrap !important;
    margin-bottom: 0;
  }
  .daily-events .daily-events-item {
    flex-basis: calc(50% - 20px) !important;
    max-width: calc(50% - 20px);
  }
}
@media (min-width: 1200px) {
  .daily-events .daily-events-info,
  .daily-events .show-week .week-day-name {
    flex-basis: 25% !important;
  }
  .daily-events .daily-events-list-container,
  .daily-events .show-week .daily-events-list {
    flex-basis: 75% !important;
  }
  .daily-events .daily-events-item {
    flex-basis: calc(33% - 40px) !important;
    max-width: calc(33% - 20px);
  }
}
.cta-block {
  border-radius: var(--border-radius);
  padding: calc(var(--spacer) * 3);
  margin-bottom: var(--section-spacer-narrow);
}
.cta-block .cta-block-inner {
  margin-bottom: 0;
}
.cta-block.has-burnt-orange-background {
  color: var(--primary-color-dark);
  background-color: var(--primary-color-light);
}
.cta-block.has-burnt-orange-background h2 {
  color: var(--primary-color);
}
.cta-block.has-burnt-orange-background .btn {
  background-color: var(--primary-color);
  color: white;
}
.cta-block.has-burnt-orange-background .btn:hover {
  background-color: var(--primary-color-dark);
}
.cta-block.has-teal-blue-background {
  color: var(--accent-color-dark);
  background-color: var(--accent-color-light);
}
.cta-block.has-teal-blue-background h2 {
  color: var(--accent-color);
}
.cta-block.has-teal-blue-background .btn {
  background-color: var(--accent-color);
  color: white;
}
.cta-block.has-teal-blue-background .btn:hover {
  background-color: var(--accent-color-dark);
}
.cta-block.has-navy-blue-background {
  color: var(--secondary-color-dark);
  background-color: var(--secondary-color-light);
}
.cta-block.has-navy-blue-background h2 {
  color: var(--secondary-color);
}
.cta-block.has-navy-blue-background .btn {
  background-color: var(--secondary-color);
  color: white;
}
.cta-block.has-navy-blue-background .btn:hover {
  background-color: var(--secondary-color-dark);
}

@media (min-width: 780px) {
  .cta-block {
    padding: calc(var(--spacer) * 5);
    margin-bottom: var(--section-spacer-wide);
  }
  .cta-block .cta-block-text p:last-of-type {
    margin-bottom: 0;
  }
  .cta-block .cta-block-inner {
    align-items: center !important;
  }
  .cta-block .cta-block-text {
    flex-basis: 100%;
  }
}
@media (max-width: 779px) {
  .cta-block .cta-block-inner {
    flex-direction: column;
  }
}
/* ==========================================================================
   ACF Image Grid Block — image-grid-block.css
   ========================================================================== */
/* --------------------------------------------------------------------------
   Shared base
   -------------------------------------------------------------------------- */
.image-grid {
  --gap: clamp(16px, 0.8vw, 24px);
  --radius: 8px;
  display: grid;
  gap: var(--gap);
  width: 100%;
}

.image-grid--empty {
  background: #f3f3f3;
  border: 2px dashed #ccc;
  padding: 2rem;
  text-align: center;
  color: #888;
  font-style: italic;
  border-radius: var(--radius);
}

.igb-item {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: #e8e8e8; /* placeholder colour while image loads */
  align-content: center;
}

.igb-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Aspect-ratio fallbacks per orientation
   (CSS grid stretches cells to fill, but these kick in when grid doesn't
    define an explicit row height — mainly used for the single-image layout)
   -------------------------------------------------------------------------- */
.igb-img--landscape {
  aspect-ratio: 13/9;
}

.igb-img--portrait {
  aspect-ratio: 3/4;
  width: 100%;
  height: 100%;
}

.igb-img--square {
  aspect-ratio: 1/1;
}

/* ==========================================================================
   Desktop layouts  (min-width: 769px)
   ========================================================================== */
@media (min-width: 769px) {
  .gallery-block-container {
    width: 100%;
    max-width: 1200px !important;
    padding: 0 40px;
    margin-bottom: 32px;
  }
  /* ---- 1 image -------------------------------------------------------- */
  .image-grid--1 {
    grid-template-columns: 1fr;
  }
  .image-grid--1 .igb-item {
    max-height: 60vh;
  }
  .image-grid--1 .igb-item img {
    max-height: 60vh;
    object-fit: contain; /* show the full image, no cropping */
    background: #111;
  }
  /* ---- 2 images: both portrait (tall side-by-side) -------------------- */
  .image-grid--2-portrait {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .image-grid--2-portrait .igb-item {
    aspect-ratio: 3/4;
  }
  /* ---- 2 images: both landscape (stacked) ----------------------------- */
  .image-grid--2-landscape {
    grid-template-columns: 1fr 1fr;
  }
  .image-grid--2-landscape .igb-item {
    aspect-ratio: 13/9;
  }
  /* ---- 2 images: mixed (equal halves) --------------------------------- */
  .image-grid--2-mixed {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .image-grid--2-mixed .igb-img--landscape {
    grid-column: auto/span 2;
  }
  /* ---- 3 images: landscape/square first → big on top, two below ------- */
  .image-grid--3-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .image-grid--3-top .igb-item:nth-child(1) {
    grid-column: 1/-1; /* spans full width */
    aspect-ratio: 16/6;
  }
  .image-grid--3-top .igb-item:nth-child(2),
  .image-grid--3-top .igb-item:nth-child(3) {
    aspect-ratio: 4/3;
  }
  /* ---- 3 images: portrait first → big on left, two stacked right ------ */
  .image-grid--3-left {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .image-grid--3-left .igb-item:nth-child(1) {
    grid-row: 1/-1; /* spans both rows */
  }
  .image-grid--3-left .igb-item:nth-child(2),
  .image-grid--3-left .igb-item:nth-child(3) {
    aspect-ratio: 4/3;
  }
  /* ---- 4 images: mostly portrait -------------------------------------- */
  .image-grid--4-portrait {
    grid-template-columns: repeat(4, 1fr);
  }
  .image-grid--4-portrait .igb-item {
    aspect-ratio: 3/4;
  }
  /* ---- 4 images: mostly landscape ------------------------------------- */
  .image-grid--4-landscape {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid--4-landscape .igb-item {
    aspect-ratio: 16/8;
  }
  /* ---- 4 images: mixed → classic 2×2 ---------------------------------- */
  .image-grid--4-mixed {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-grid--4-mixed .igb-item {
    aspect-ratio: 4/3;
  }
}
/* ==========================================================================
   Mobile: horizontal CSS scroll-snap slider  (max-width: 768px)
   No JavaScript required — uses scroll-snap and overflow-x: scroll
   ========================================================================== */
@media (max-width: 768px) {
  .gallery-block-container {
    width: 100%;
    max-width: 100% !important;
    padding-left: 20px;
    margin-bottom: 24px;
  }
  /*
   * All layout variants share the same mobile slider.
   * Override the grid with a single-row scrollable track.
   */
  .image-grid {
    /* Switch from grid to a flex scroll container */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth momentum on iOS */
    scroll-behavior: smooth;
    /* Hide scrollbar visually while keeping it functional */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding-bottom: 0;
    gap: var(--gap);
  }
  .image-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
  /* Each image card fills the viewport width */
  .igb-item {
    flex: 0 0 100%; /* 1 image = full width */
    scroll-snap-align: start;
    scroll-snap-stop: always;
    /* No forced aspect-ratio — height is driven by the image itself */
    height: auto;
    border-radius: var(--radius);
  }
  /* Show a peek of the next image to hint at scroll-ability (≥2 images) */
  [data-count="2"] .igb-item,
  [data-count="3"] .igb-item,
  [data-count="4"] .igb-item {
    flex: 0 0 92%;
  }
  /* Let the image define the card height naturally */
  .igb-item img {
    width: 100%;
    height: auto; /* natural height, no cropping */
    object-fit: unset; /* cancel the desktop cover-crop */
    max-height: 70vh; /* prevent extremely tall portraits from overflowing */
    object-position: center;
  }
  /* Portrait images: a bit narrower so they don't look absurdly tall */
  .igb-item.igb-img--portrait {
    flex: 0 0 52% !important;
  }
  [data-count="1"].igb-img--portrait,
  [data-count="1"] .igb-img--portrait {
    flex: 0 0 100%; /* single portrait still fills full width */
  }
  /* Dot indicators — pure CSS using sibling counters + :checked trick    */
  /* (No JS; implemented via a CSS counter shown as a scroll-progress bar) */
  .image-grid::after {
    content: "";
    display: block;
    position: sticky;
    right: 0;
    width: 0; /* structural only; visual indicator below */
  }
}
/* --------------------------------------------------------------------------
   Scroll progress indicator bar (mobile only)
   Drawn with a background gradient that tracks scroll position
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .image-grid-wrapper {
    position: relative;
  }
  /*
   * A thin line below the slider that acts as a visual scroll indicator.
   * Pure CSS — uses animation-timeline: scroll() which is widely supported
   * in modern browsers (Chrome 115+, Firefox 110+, Safari 15.4+).
   * Falls back gracefully (bar just stays static) in older browsers.
   */
  .image-grid::before {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #ddd;
    border-radius: 2px;
    pointer-events: none;
  }
  .image-grid {
    position: relative;
    margin-bottom: 10px;
  }
}
.tl-block--empty {
  background: #f5f5f5;
  border: 2px dashed #ccc;
  padding: 2rem;
  text-align: center;
  color: #999;
  font-style: italic;
  border-radius: var(--border-radius);
}

.tl-track {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tl-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #1a1a1a;
  pointer-events: none;
}
@media (max-width: 768px) {
  .tl-track::before {
    left: 16px;
    transform: none;
  }
}

.tl-point {
  position: relative;
  display: grid;
  width: 100%;
  margin-bottom: -20%;
}
.tl-point:last-of-type {
  margin-bottom: 0;
}
.tl-point + .tl-point {
  margin-top: 32px;
}
.tl-point {
  grid-template-columns: 1fr 62px 1fr;
  grid-template-rows: auto;
  align-items: center;
}
.tl-point .tl-point__marker {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.tl-point--left .tl-point__content {
  grid-column: 1;
  grid-row: 1;
  padding-right: 24px;
  text-align: right;
}
.tl-point--left .tl-point__content .tl-point__image {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
.tl-point--left .tl-point__content .tl-point__year {
  text-align: inherit;
}
.tl-point--right .tl-point__content {
  grid-column: 3;
  grid-row: 1;
  padding-left: 24px;
  text-align: left;
}
@media (max-width: 768px) {
  .tl-point {
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto;
    align-items: center;
    margin-bottom: 0;
  }
  .tl-point + .tl-point {
    margin-top: 32px;
  }
  .tl-point .tl-point__marker {
    grid-column: 1;
    grid-row: 1;
    justify-content: center;
    align-items: center;
  }
  .tl-point--left .tl-point__content, .tl-point--right .tl-point__content {
    grid-column: 2;
    grid-row: 1;
    padding-left: 12px;
    padding-right: 0;
    text-align: left;
  }
}

.tl-point__content {
  display: flex;
  flex-direction: column;
}

.tl-point__dot {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #1a1a1a;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px #1a1a1a;
}

.tl-point__image {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  flex-shrink: 0;
}
.tl-point__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.tl-point__image + .tl-point__card {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tl-point__card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 20px 22px 22px;
  box-sizing: border-box;
}

.tl-point__year {
  display: block;
  font-family: "cera_problack", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.tl-point__title {
  font-size: 24px;
  line-height: 1.25em;
  color: var(--primary-color);
}

.tl-point__text {
  margin: 0;
}
.tl-point__text p {
  margin: 0 0 0.5em;
}
.tl-point__text p:last-child {
  margin-bottom: 0;
}
