@charset "UTF-8";

:root {
    --style--gallery-gap-default: 1rem;
    --gallery-block--gutter-size: 1rem;
}

html {
    font-size: 16px;
    box-sizing: border-box;
    min-height: 100vh;
    background-color: #fdfdfd;
    overflow-x: hidden;
    overflow-y: overlay;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color--grey-border) transparent;
    scroll-padding-top: calc( var(--nav--height) + 1rem );
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

html.no-animation {
    scroll-behavior: inherit;
}

html.is-transitioning, html.is-transitioning * {
    cursor: progress;
    pointer-events: none;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

:root::selection {
    background: var(--color--blue);
    color: var(--color--white);
}

#shaper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 34rem;
    opacity: .8;
    mask-image: linear-gradient(180deg, #000 80%, transparent);
    pointer-events: none;
}

#shaper:after {
    content: '';
}

.supercontainer {
    /* background: #fdfdfd; */
    background-size: 80vw auto;
    background-position: 50% 50%;
    min-height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url("");
    z-index: 1;
    position: relative;
}

@media (min-width: 768px) {
    .supercontainer {
        background-size: auto 160px;
    }
}

[data-ajax="container"] {
    width: 100%;
}

.fade-leave-active {
    transition: opacity 0.25s ease;
}

.fade-enter-active {
    transition: opacity 0.75s ease;
}

.fade-leave {
    opacity: 1;
}

.fade-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-leave-to {
    opacity: 0;
}

.fade-enter-to {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-container] {
    transition: .3s all ease-in-out;
    background: var(--color--white);
}

mark:not(.has-inline-color) {
    background: rgba(255, 174, 0, 0.4);
    box-shadow: 0 0 0 0.1em rgb(255 174 0 / 40%);
}

body {
    height: 100%;
    overflow: visible !important;
    background: #ffffff;
}

strong, b {
    font-weight: 800;
}

figure {
    margin: 0;
}

time {
    font-family: var(--font-family--cinzel);
    display: block;
}

abbr {
    text-decoration: dashed;
    text-decoration-line: underline;
    text-underline-offset: .25em;
    text-decoration-thickness: from-font;
    text-decoration-color: color-mix(in srgb, currentColor 25%, transparent);
}

:where(button:not(.btn)) {
    background-color: transparent;
    padding: 0;
    border: 0;
}

a, button, .btn {
    cursor: pointer;
    transition: 0.3s ease-in-out;
    transition-property: color, fill, box-shadow, background, border, text-decoration;
}

a > svg, button > svg, a > svg.lazyloaded, button > svg.lazyloaded {
    transition: 0.3s ease-in-out;
    transition-property: color, fill;
}

a > svg,
button > svg {
    pointer-events: none;
    fill: currentColor;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.video-container embed, .video-container iframe, .video-container object, .video-container video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

img:not([src]) {
    content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

hr {
    clear: both;
    margin: 0 auto;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--color--grey-light);
}

.btn.loading:before {
    background: currentColor;
    -webkit-mask-image: url(../img/loading.svg);
    mask-image: url(../img/loading.svg);
    mask-repeat: no-repeat;
    mask-position: center center;
}

.btn.favicon {
    padding-left: 4em;
    background-position: 1.5em center;
}

.btn[disabled] {
    pointer-events: none;
    opacity: 0.5;
}

.btn-sm {
    padding: .75em 2em .75em 2em !important;
}

.btn-md {
    padding: 1em 3em 1em 3em !important;
}

.btn-lg {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}

.btn > svg {
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
    fill: var(--color--blue);
}

.burger {
    padding: 0 1rem;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    margin: 0 auto;
}

.burger .line {
    width: 2.2rem;
    height: .25rem;
    background-color: var(--color--blue);
    display: block;
    margin: .4rem auto;
    transition: all .3s ease-in-out
}

@media (hover: hover) {
    .burger:hover .line {
        background-color: var(--color--yellow-hard) !important;
    }
}

html.menu--open .burger-wrapper {
    -webkit-animation: scale-animation .3s forwards;
    animation: scale-animation .3s forwards;
}

html.menu--open .burger .line {
    transition-delay: .2s
}

html.menu--open .burger .line:nth-child(2) {
    opacity: 0
}

html.menu--open .burger .line:first-child {
    transform: translateY(.65rem) rotate(45deg)
}

html.menu--open .burger .line:nth-child(3) {
    transform: translateY(-.65rem) rotate(-45deg)
}

@-webkit-keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


@media (max-height: 750px) {
    .main-menu a {
        padding: .75rem 1rem;
    }
}

.main-menu a:hover, .main-menu .current a {
    opacity: 1;
    text-shadow: 0 0 0 var(--color--blue);
}

.main-menu .current a {
    font-weight: 500;
    text-shadow: none;
}

.main-menu-content > .current > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: linear-gradient( 0deg, rgb(188,148,44) 0%, rgb(220,192,40) 100%);
    height: 3px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.arrow {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 99;
    display: flex;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--color--blue);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition-property: transform;
    border-radius: 1rem;
}

.arrow.visible {
    opacity: 1;
    pointer-events: all;
}

.arrow svg {
    width: 1rem;
    height: 1rem;
    fill: #fff;
    margin: 0 auto;
}

.arrow:hover {
    transform: translateY(-10px);
}

@media (max-width: 450px) {
    .arrow {
        display: none !important;
    }
}

.header {
    transition: .3s background ease-in-out;
    width: 100%;
    position: absolute;
    top: 2rem;
    z-index: 5;
}

@media (min-width: 768px) {
    .scrolled .header {
        z-index: 0;
    }
    .scrolled .header:after {
        content: '';
        position: absolute;
        bottom: -53px;
        top: 0;
        background: var(--color--blue);
        z-index: 0;
        left: 0;
        right: 0;
    }
}

.header > div {
    padding-top: var(--spacing--50);
    padding-bottom: var(--spacing--50);
}

.header-icon {
    padding: .75em;
    background: rgba(255,255,255,0);
    border-radius: 100%;
}

div.header-icon svg {
    transition: .3s all ease-in-out;
}

.header-icon > svg {
    width: 1.25em;
    height: 1.25em;
    display: block;
    fill: var(--color--white);
}

.header-icon:hover {
    background: rgba(255,255,255,.2);
}

.header-lang {
    margin-left: 4rem;
    display: flex;
    gap: 1rem;
    transition: .2s opacity;
    color: var(--color--blue);
}

.header-lang select {
    background: transparent;
    border: 0;
    color: var(--color--white);
}

.header-lang option {
    color: var(--color--blue);
}

@media (max-width: 480px) {
    .header-lang {
        gap: .5rem;
    }
}

.header-lang .nice-select .nice-select-dropdown {
    left: -.5em;
}

.header-lang .nice-select .list {
    max-height: 16rem;
}

html.modal-main-menu--open .header-lang {
    opacity: 0;
    pointer-events: none;
}

.main-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 8rem;
    z-index: 5;
}

@media (min-width: 768px) {
    .main-menu {
        display: block;
    }
}

.main-menu-content {
    justify-content: flex-end;
    display: flex;
}

.main-menu-ul {
    place-content: end;
    flex-wrap: wrap;
    display: flex;
}

.main-menu a {
    padding: 1rem .5rem;
    position: relative;
    color: var(--color--white);
    display: flex;
    white-space: nowrap;
    text-decoration: none;
    opacity: 0.8;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: var(--font-size--small);
    font-weight: 500;
}

.main-menu .highlight > a {
    background-color: rgba(0,0,0,0.5);
    background-position: 1rem 50%;
    border-radius: 5rem;
    padding-left: 2rem;
    padding-right: 2.5rem;
    line-height: 1;
    align-items: center;
}

.main-menu .highlight > a svg {
    right: 1em;
}

.main-menu-padding li {
    margin-right: 2rem;
}

.main-menu svg.icon-home {
    width: 1.5em;
    height: 1.5em;
}

.main-menu svg.icon-caret-down {
    margin-left: .5em;
    width: .5em;
    height: .5em;
}

.main-menu a > svg.icon-caret-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.has-sub-menu .has-sub-menu a > svg.icon-caret-right {
    position: absolute;
    top: .4rem;
    right: 1rem;
    transform: rotate(-90deg);
}

.has-sub-menu li svg {
    width: 1em;
    height: 1em;
    margin-right: .5em;
}

.mobile-menu :where(.current-ancestor,.current) > a {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: var(--color--yellow-hard);
    text-decoration-thickness: 2px;
}

.sub-menu li:not(:last-child):after {
    margin-left: 1.5rem;
}

.sub-menu-item, .sub-menu .menu-item a {
    display: block;
    font-size: .85rem;
    padding: .75rem 1.5rem;
    min-width: 15rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: inherit;
    text-align: left;
    color: var(--color--blue);
}


.header-account .sub-menu .menu-item a {
    min-width: 10rem;
}

.header-account .popup {
    min-width: 12rem;
}

.sub-menu .menu-item.current > a {
    color: var(--color--red);
}

.has-sub-menu--large .sub-menu {
    min-width: 25rem;
}
.sub-menu a:hover {
    color: #000;
    text-decoration: none;
    opacity: .5;
}

.sub-menu li:not(:last-child):after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: #d5d5d5;
}

.sub-menu li.menu-item:first-child a {
    padding-top: 1.5rem;
}

.sub-menu li.menu-item:last-child a {
    padding-bottom: 1.5rem;
}

.sub-menu-scroll {
    padding: 1rem 0;
}

.sub-menu-item a {
    text-decoration: underline;
}

.sub-menu-item-note {
    color: #9e9e9e;
    font-size: .7rem;
    margin-bottom: .4rem;
    display: block;
}

li:not(:last-child) .sub-menu-item-context {
    margin-bottom: 1rem;
}

li:not(:last-child) .sub-menu-item-title {
    margin-bottom: .5rem;
}

.has-sub-menu {
    position: relative;
    transform: translateZ(0);
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 19rem;
}

.has-sub-menu > a {
    /* padding-right: 2em; */
}

.has-sub-menu:hover {
    z-index: 2;
}

.has-sub-menu--left:hover .sub-menu {
    left: auto;
    right: 0;
    transform: translateX(0%) translateY(0px);
}

.sub-menu .sub-menu {
    left: 100%;
    top: -.75rem;
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    transform: translateX(-5px);
}

.has-sub-menu .sub-menu .sub-menu-arrow {
    left: -0.4rem;
    bottom: auto;
    top: 1.5rem;
    transform: translateX(-50%) translateY(0) rotate(-90deg);
}

.sub-menu .has-sub-menu:hover > .sub-menu {
    transform: translateX(0);
}

.sub-menu-arrow {
    position: absolute;
    bottom: 100%;
    left: 50%;
    overflow: hidden;
    z-index: 99;
    width: 2.5rem;
    height: .9rem;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.has-sub-menu--left .sub-menu-arrow {
    left: auto;
    right: 0px;
    transform: none;
}

.sub-menu-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,1);
    transform: translateX(-50%) translateY(50%) rotate(45deg);
}

.logo {
    gap: 0 1rem;
}

.logo span {
    line-height: var(--line-height--heading);
    font-size: var(--font-size--x-small);
    text-decoration: none;
    color: var(--color--white);
    display: block;
    white-space: nowrap;
}

.logo img {
    transition: .3s all;
    width: clamp(14em, 22vw, 22em);
    height: auto;
}

.header-activity {
    position: relative;
    line-height: 1;
    /* overflow: hidden; */
}

.header-activity-count {
    position: absolute;
    top: .5em;
    left: 50%;
    border-radius: .2rem;
    background: var(--color--red);
    color: #fff;
    min-width: 1em;
    padding: .25em;
    line-height: 1;
    font-size: .65em;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 993px) {
    .header-activity .popup {
        left: 0;
    }
    .header-activity .popup-arrow {
        left: calc( 50% + 1.4em );
    }
}

.shine {
    overflow: hidden;
    position: relative;
}

.shine:before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 3;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.1)));
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.1)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.loading-placeholder.lazycomplete.shine {
    overflow: hidden;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@-moz-keyframes shine {
    100% {
        left: 125%;
    }
}

@-o-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

a.shine:hover:before, a:hover .shine:before {
    animation: 0.75s shine;
}

.loading-placeholder {
    position: relative;
    max-width: fit-content;
}

.loading-placeholder.lazycomplete .shine {
    position: relative;
    overflow: hidden;
}

html.js .loading-placeholder img {
    position: relative;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 2;
}

html.js .loading-placeholder.lazycomplete img {
    opacity: 1;
}

.loading-placeholder:not(.lazycomplete) {
    position: relative;
}

.loading-placeholder {
    background: transparent !important;
}

html.js .loading-placeholder:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 1.5s ease;
    background-blend-mode: soft-light;
    z-index: 1;
    background-color: var(--dominant-color, #f5f7f9);
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) var(--dominant-color, #f5f7f9);
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s skeleton-loading ease-in-out infinite;
}
@keyframes skeleton-loading {
    to {
        background-position-x: -20%
    }
}
html.js .loading-placeholder.lazycomplete:not(.placeholder):after {
    opacity: 0;
}

.radius {
    border-radius: 50%;
    overflow: hidden;
}

main, main > * {
    position: relative;
}

main {
    flex-grow: 1;
    margin: 0 auto;
}

@media (max-width: 767px) {
    main:before {
        opacity: 0.2 !important;
    }
}

*:first-child {
    margin-block-start: 0;
}

*:last-child {
    margin-block-end: 0;
}

.slider--draggable {
    cursor: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 30.01"><path fill="%23273586" d="m23.46 13.16-4.13-.65V5.3c0-1.71-1.39-3.1-3.1-3.1h-.05c-1.71 0-3.1 1.39-3.1 3.1v11.57l-4.27-1.83c-.86-.37-1.83-.28-2.61.23-.78.51-1.24 1.38-1.24 2.31v.04c0 .79.34 1.54.93 2.07l7.2 6.4v3.11c0 .44.36.8.8.8s.8-.36.8-.8v-3.47c0-.23-.1-.45-.27-.6l-7.47-6.64c-.25-.22-.39-.54-.39-.87v-.04c0-.4.19-.75.52-.97.33-.22.73-.25 1.09-.1l5.39 2.31s.1.04.16.05c.08.02.16.02.24.01h.07c.02 0 .03 0 .05-.01h.03c.02 0 .03-.01.05-.02h.02c.02 0 .03-.01.05-.02 0 0 .02 0 .02-.01.01 0 .03-.02.04-.02 0 0 .02-.01.03-.02.01 0 .02-.02.03-.02.01 0 .02-.01.03-.02 0 0 .02-.02.03-.02.01 0 .02-.02.03-.03 0 0 .01-.02.02-.02l.03-.03s.01-.02.02-.03c0-.01.02-.02.02-.03 0-.01.02-.03.03-.04 0 0 0-.01.01-.02.04-.07.07-.15.08-.23.01-.05.02-.11.02-.16V5.3c0-.82.67-1.49 1.49-1.49h.05c.82 0 1.49.67 1.49 1.49v7.82c-.04.42.25.81.67.87l4.81.75h.01c2.91.41 5.11 2.94 5.11 5.89v.08c0 1.36-.33 2.72-.96 3.93l-2.18 4.19c-.21.39-.05.88.34 1.09.12.06.25.09.37.09.29 0 .57-.16.71-.43l2.18-4.19c.75-1.44 1.14-3.05 1.14-4.67v-.08c0-1.82-.66-3.58-1.85-4.95s-2.84-2.27-4.64-2.53ZM6.18 9.61c.12 0 .25-.03.36-.09.27-.14.44-.41.44-.72V5.6h3.5c.44 0 .8-.36.8-.8s-.36-.8-.8-.8h-3.5V.8c0-.3-.17-.58-.44-.72s-.6-.11-.84.07L.32 4.16c-.2.15-.32.39-.32.65s.12.49.32.65l5.38 4c.14.11.31.16.48.16Zm-.8-2.4-3.23-2.4 3.23-2.4v4.8Zm26.29-3.05-5.38-4c-.24-.18-.57-.21-.84-.07-.27.14-.44.41-.44.72v3.2h-3.5c-.44 0-.8.36-.8.8s.36.8.8.8h3.5v3.2c0 .3.17.58.44.72.11.06.24.09.36.09.17 0 .34-.05.48-.16l5.38-4c.2-.15.32-.39.32-.65s-.12-.49-.32-.65Zm-5.06 3.05V2.4l3.23 2.4-3.23 2.4Z"/></svg>') 16 0, pointer;
}

.slider--draggable.slider--light-cursor {
    cursor: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 30.01"><path fill="%23fff" d="m23.46 13.16-4.13-.65V5.3c0-1.71-1.39-3.1-3.1-3.1h-.05c-1.71 0-3.1 1.39-3.1 3.1v11.57l-4.27-1.83c-.86-.37-1.83-.28-2.61.23-.78.51-1.24 1.38-1.24 2.31v.04c0 .79.34 1.54.93 2.07l7.2 6.4v3.11c0 .44.36.8.8.8s.8-.36.8-.8v-3.47c0-.23-.1-.45-.27-.6l-7.47-6.64c-.25-.22-.39-.54-.39-.87v-.04c0-.4.19-.75.52-.97.33-.22.73-.25 1.09-.1l5.39 2.31s.1.04.16.05c.08.02.16.02.24.01h.07c.02 0 .03 0 .05-.01h.03c.02 0 .03-.01.05-.02h.02c.02 0 .03-.01.05-.02 0 0 .02 0 .02-.01.01 0 .03-.02.04-.02 0 0 .02-.01.03-.02.01 0 .02-.02.03-.02.01 0 .02-.01.03-.02 0 0 .02-.02.03-.02.01 0 .02-.02.03-.03 0 0 .01-.02.02-.02l.03-.03s.01-.02.02-.03c0-.01.02-.02.02-.03 0-.01.02-.03.03-.04 0 0 0-.01.01-.02.04-.07.07-.15.08-.23.01-.05.02-.11.02-.16V5.3c0-.82.67-1.49 1.49-1.49h.05c.82 0 1.49.67 1.49 1.49v7.82c-.04.42.25.81.67.87l4.81.75h.01c2.91.41 5.11 2.94 5.11 5.89v.08c0 1.36-.33 2.72-.96 3.93l-2.18 4.19c-.21.39-.05.88.34 1.09.12.06.25.09.37.09.29 0 .57-.16.71-.43l2.18-4.19c.75-1.44 1.14-3.05 1.14-4.67v-.08c0-1.82-.66-3.58-1.85-4.95s-2.84-2.27-4.64-2.53ZM6.18 9.61c.12 0 .25-.03.36-.09.27-.14.44-.41.44-.72V5.6h3.5c.44 0 .8-.36.8-.8s-.36-.8-.8-.8h-3.5V.8c0-.3-.17-.58-.44-.72s-.6-.11-.84.07L.32 4.16c-.2.15-.32.39-.32.65s.12.49.32.65l5.38 4c.14.11.31.16.48.16Zm-.8-2.4-3.23-2.4 3.23-2.4v4.8Zm26.29-3.05-5.38-4c-.24-.18-.57-.21-.84-.07-.27.14-.44.41-.44.72v3.2h-3.5c-.44 0-.8.36-.8.8s.36.8.8.8h3.5v3.2c0 .3.17.58.44.72.11.06.24.09.36.09.17 0 .34-.05.48-.16l5.38-4c.2-.15.32-.39.32-.65s-.12-.49-.32-.65Zm-5.06 3.05V2.4l3.23 2.4-3.23 2.4Z"/></svg>') 16 0, pointer;
}

html.js .slider .loading-placeholder img[src=""] {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.no-js .slider__slide:not(:first-child) {
    display: none;
}

.no-js .slider__slide:first-child {
    width: 100%;
}

.pagination {
    margin-top: 2rem;
}

.pagination ul {
    display: flex;
    gap: .25em;
    justify-content: center;
}

.pagination a,
.pagination span {
    padding: .2em;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 2em;
    min-height: 2em;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.11);
    color: var(--color--grey-dark);
    text-decoration: none;
    font-size: var(--font-size--small);
}

.pagination svg {
    pointer-events: none;
    width: 1em;
    height: 1em;
}

.pagination a:hover svg {
    fill: var(--color--white);
}

.pagination a:hover,
.pagination span.current {
    background-color: var(--color--red);
    color: var(--color--white);
    font-weight: var(--font-weight--bold);
}

.link {
    text-decoration: var(--text-decoration--style);
    text-decoration-thickness: var(--text-decoration--thickness);
    text-underline-offset: var(--text-decoration--offset);
    font-family: var(--font-family--inter);
}

a.has-red-hover:hover, button.has-red-hover:hover, .has-red-hover a:hover {
    color: var(--color--green);
}

a.has-blue-hover:hover, button.has-blue-hover:hover, .has-blue-hover a:hover {
    color: var(--color--blue);
}

.has-white-hover:hover {
    color: var(--color--white);
}

.has-white-color:any-link:hover {
    color: var(--color--green);
}

.has-medium-font-weight {
    font-weight: var(--font-weight--medium);
}

.link-offset {
    padding-bottom: .5em;
}

.link-chevron {
    display: inline-flex;
    position: relative;
    align-items: center;
}

.box .link-chevron {
    margin-left: .666em;
}

.link-chevron:before {
    content: '';
    position: absolute;
    left: -1em;
    width: 1em;
    height: 1em;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 32'%3E%3Cpath d='M12.853 7.109c.25 0 .501.125.751.25.376.376.376 1.002 0 1.377l-7.889 7.889c-.376.376-1.002.376-1.377 0-.501-.376-.501-.877-.125-1.377l8.014-7.889c.125-.125.376-.25.626-.25z'/%3E%3Cpath d='M4.965 14.998c.25 0 .501.125.751.25l7.889 8.014c.376.376.376 1.002 0 1.377s-1.002.376-1.377 0L4.339 16.75c-.501-.501-.501-1.002-.125-1.503.25-.125.501-.25.751-.25z'/%3E%3C/svg%3E");
    background-color: currentColor;
}

.block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination {
    margin-top: 2rem;
}

.pagination ul {
    display: flex;
    gap: .25em;
    justify-content: center;
}

.pagination:where(a,span) {
    padding: .2em;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 2em;
    min-height: 2em;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.11);
    color: var(--color--grey-dark);
    text-decoration: none;
    font-size: var(--font-size--small);
    aspect-ratio: 1/1;
}

.pagination:where(a:hover,.current) {
    background-color: var(--color--blue);
    color: var(--color--white);
    font-weight: var(--font-weight--bold);
}

.width-100 {
    width: 100%;
}

.gap-mt-0 {
    margin-block-start: 0 !important;
}

.gap-mt-12 {
    margin-block-start: var(--spacing--gap-block-12) !important;
}

.gap-mt-8 {
    margin-block-start: var(--spacing--gap-block-8) !important;
}

.gap-mt-6 {
    margin-block-start: var(--spacing--gap-block-6) !important;
}

.gap-mt-4 {
    margin-block-start: var(--spacing--gap-block-4) !important;
}

.gap-mt-2 {
    margin-block-start: var(--spacing--gap-block) !important;
}

.gap-mt-1 {
    margin-block-start: var(--spacing--gap-semiblock) !important;
}

.gap-mb-12 {
    margin-block-end: var(--spacing--gap-block-12) !important;
}

.gap-mb-8 {
    margin-block-end: var(--spacing--gap-block-8) !important;
}

.gap-mb-6 {
    margin-block-end: var(--spacing--gap-block-6) !important;
}

.gap-mb-4 {
    margin-block-end: var(--spacing--gap-block-4) !important;
}

.gap-mb-2 {
    margin-block-end: var(--spacing--gap-block) !important;
}

.gap-mb-1 {
    margin-block-end: calc( var(--spacing--gap-block) / 2 ) !important;
}

.gap-mb-semi  {
    margin-block-end: calc( var(--spacing--gap-block) / 4 ) !important;
}

.gap-mb-0 {
    margin-block-end: 0;
}

.badge {
    display: inline-block;
    padding: 0.375em 1em;
    border-radius: 1rem;
    position: relative;
    line-height: var(--line-height--one);
    transition: .3s all ease-in-out;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-family--inter);
    font-size: var(--font-size--small);
    width: fit-content;
}

.badge:where(a):hover {
    opacity: 0.8;
}

.badge:not(a) {
    cursor: default;
}

.badge-sm {
    padding: 0.2em 1em;
    font-size: var(--font-size--x-small);
}

.modal-search .modal-overlay {
    z-index: 1001;
}

.modal-search .modal-container {
    padding: 0;
}

.modal-search input {
    font-size: var(--font-size--regular);
    height: 3.5em;
    border: 0;
}

.modal-search .validate-error {
    padding-left: 1rem;
}

.modal-search input::placeholder {
    color: var(--color--blue);
}

.modal-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: .25em .8em;
}

.modal-search .form-info:not(:empty) {
    background: var(--color--white);
    box-shadow: none;
    color: inherit;
    margin-top: -10px;
}

.modal-search button svg {
    fill: var(--color--green);
    height: 100%;
}

.modal-search button:hover svg {
    fill: var(--color--blue);
}

.modal-search .modal-container-scroll {
    max-height: 60vh;
}

.modal-search-results ul, .modal-search-results li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}

.modal-search-response a {
    padding: .5em .75em;
    display: block;
    text-decoration: none;
}

.modal-search-results a {
    display: block;
    text-decoration: none;
    padding: 5px 48px 5px 76px;
    position: relative;
}

.modal-search-results-item > a {
    border-bottom: 1px solid #e8e8e8;
    color: var(--color--blue);
    display: flex;
    gap: 1em;
    font-size: var(--font-size--small);
    font-weight: var(--font-weight--semibold);
    align-items: center;
    padding: .75em;
    background: var(--color--white);
}

.modal-search-results-item:last-child > a {
    border-bottom: 0;
}

.modal-search-results-cat-item {
    background-color: var(--color--green);
    color: var(--color--white);
    font-weight: var(--font-weight--semibold);
    font-size: var(--font-size--x-small);
    padding: .75em;
    transition: .2s all linear;
    cursor: default;
}

a.modal-search-results-cat-item:hover {
    text-decoration: underline;
}

.modal-search-results-cat-item:hover {
    color: var(--color--white);
}

.modal-search-results-item > a:hover {
    background-color: #fff;
    text-decoration: underline;
}

.modal-search-response > ul > li:hover > .modal-search-results-cat-item {
    background-color: var(--color--blue);
}

.modal-search-results-item-image {
    max-width: 5rem;
}

.modal-search-results-item img {
    aspect-ratio: 1/1;
    border: 1px solid var(--color--grey);
    object-fit: cover;
}

.modal-search-results-count {
    text-align: right;
    font-size: var(--font-size--x-small);
    padding: .5em .75em;
    background: var(--color--grey-headline);
}

.modal-search-noresults {
    font-size: var(--font-size--small);
    padding: .75em;
    background: var(--color--grey-headline);
    text-align: center;
}

.modal-search .form-group.has-error {
    margin-bottom: 0;
}

.modal-login button + .modal-background {
    margin-top: 1rem;
}

.modal-login .modal-background{
    padding: 2rem;
}

.modal-login .modal-padding {
    padding: 4rem;
}

.modal-login .modal-container {
    max-width: 60rem;
}

.modal-login .shop-badge-price {
    float: right;
    margin: 2rem 0;
}

.modal-login .title {
    font-size: var(--font-size--x-large);
    font-weight: bold;
    margin-top: 0;
}

.modal-login .btn:hover {
    background: var(--color--white);
    color: var(--color--green);
}

@media (min-width: 768px) {
    .modal-login .shop-badge-price {
        float: right;
        position: relative;
        top: -3rem;
    }
    .modal-login .title {
        margin-top: 0;
    }
}

.login-welcome {
    margin-top: -1rem;
    padding: 2.25rem 0;
}

.login-welcome p {
    margin: 2.25rem 0;
}

.login-welcome p:first-of-type {
    font-weight: bold;
    line-height: 1;
}

.highlight {
    -webkit-box-shadow: 0 0 0px 3px #fbd224;
    -moz-box-shadow: 0 0 0px 3px #fbd224;
    box-shadow: 0 0 0px 3px #fbd224;
    background-color: #fbd224;
}

table {
    border-collapse: collapse;
    overflow: auto;
    margin: 0.5rem 0 2rem;
    width: 100%;
}

table th, table td, table tr {
    padding: 0.5rem;
    border: 1px solid #dbdfe3;
}

.table-wrapper {
    overflow-x: auto;
}

table:not([border="0"]) td, table:not([border="0"]) th {
    padding: 6px 12px;
    text-align: left;
}

table tr:hover td,table tr:hover th {
    background-color: #f7f7f7;
    color: #000;
}

.block-table.is-style-stripes td {
    border-bottom: 1px solid #ebebeb;
}

.block-table.is-style-stripes tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.block-table.is-style-stripes thead th {
    color: #0a8fd2;
}

.block-table.is-style-stripes thead tr {
    background: linear-gradient(to right, #f0f0f0 0%, #e1e1e1 100%);
}

table:not([border="0"]):not(.is-style-stripes) td,
table:not([border="0"]):not(.is-style-stripes) th {
     border: 0 none;
}

figure.is-style-stripes table:not([border="0"]) td,
figure.is-style-stripes table:not([border="0"]) th {
    border-color: transparent;
}

[data-tab-component] {
    margin: 1rem 0;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    [data-tab-component] {
        padding-bottom: 0
    }
}

[data-tab-component] [role="tablist"] {
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: 0 -1px 0 #c3c2c2 inset;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
}

[data-tab-component] [role="tablist"][data-active="1"]:before {
    left: 50%;
}

[data-tab-component] [role="tablist"] [role="tab"] {
    position: relative;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    border-top: 4px solid transparent;
    text-transform: uppercase;
    opacity: .5;
    color: #3c3c3b;
}

[data-tab-component] [role="tablist"] [role="tab"]:hover {
    text-decoration: none;
}

[data-tab-component] [role="tablist"] [role="tab"][aria-selected="true"] {
    color: #000;
    box-shadow: 1px 0 0 #c3c2c2 inset, -1px 0 0 #c3c2c2 inset, 0 -1px 0 0 #fff inset;
    border-top: 4px solid #203864;
    opacity: 1;
}

[data-tab-component] [role="tabpanel"][aria-hidden="true"] {
    display: none;
}

[data-tab-component] [role="tabpanel"][aria-hidden="false"] {
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    visibility: hidden;
    background: #fff;
    box-shadow: var(--shadow--light);
    opacity: 0;
    transition: .5s ease;
    pointer-events: none;
    z-index
For a positioned box, the 'z-index' property specifies the stack level of the box in the current stacking context and whether the box establishes a local stacking context.
Learn more
Don't show: 1002;';
    z-index: 1002;
    border-radius: var(--radius--button);
}

.popup-pad {
    padding: 1rem;
}
.popup-arrow {
    position: absolute;
    bottom: 100%;
    left: 50%;
    overflow: hidden;
    width: 1.4rem;
    height: 0.7rem;
    transform: translateX(-50%);
}

.popup-center .popup-arrow {
    right: 50%;
    transform: translateX(50%);
}

.popup-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.7rem;
    height: 0.7rem;
    background: white;
    box-shadow: var(--shadow--light);
    transform: translateX(-50%) translateY(50%) rotate(45deg);
}

.popup-trigger {
    position: relative;
}

.popup-trigger.active .popup, .popup-trigger:hover .popup, *:focus + .popup {
    visibility: visible;
    opacity: 1;
    pointer-events: initial;
    top: 100%;
    transform: translateX(-50%) translateY(0);
}

.popup-trigger:has(.block-button) {
    margin-bottom: -1rem;
}

.popup-trigger .block-button:after {
    content: '';
    display: block;
    height: 1rem;
    width: 100%;
}

.popup-scroll-wrapper {
    border-radius: .4rem;
    overflow: hidden;
}

.popup-scroll {
    overflow-y: auto;
    max-height: 18em;
    padding: 1em 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color--grey-border) transparent;
    scrollbar-gutter: stable;
}

.is-style-outline .btn:hover {
    border-color: var(--color--blue);
    color: var(--color--blue);
}

.is-style-fill .btn.has-white-background-color:hover {
    color: var(--color--green)  !important;
}

.loop-event-mini {
    align-items: center;
    gap: clamp(1rem, 5%, 3rem);
    max-width: 40rem;
}

.loop-event-mini > time {
    border-radius: 5px;
    border: 1px solid var(--color--grey-light);
    padding: 1em .25em;
    text-align: center;
    aspect-ratio: 1 / 1;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 6.6666em;
}

.loop-event-mini-inner {
    padding: .5em;
}

.loop-event-mini-title {
    margin-top: 0;
}

.loop-event-mini-inline{
    display: flex;
    font-size: 75%;
    gap: clamp( .75rem, 4vw, 2rem );
    line-height: var(--line-height--one);
    margin-top: 1rem;
}

.loop-event-mini-inline svg {
    width: 1em;
    height: 1em;
    fill: var(--color--grey);
    margin-right: .5em;
}

.loop-event-mini-inline > * {
    display: flex;
}

.footer {
    position: relative;
    color: var(--color--white);
    background: #1b4162;
    margin-top: 8rem;
}

.footer nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0em, max-content));
    grid-template-rows: repeat(5, 1fr);/* 5 rows */
    grid-auto-flow: column;
    list-style: none;
    padding: 0;
    gap: 1em 3rem;
}

.footer :where(p,ul) {
    font-size: var(--font-size--small);
}

.footer-backdrop {
    padding: 4rem 0 3rem 0;
    background-image: linear-gradient( 64deg, rgb(27,65,98) 0%, rgb(73,105,134) 100%);
}

.footer-stats {
    font-size: var(--font-size--x-small);
    opacity: .8;
}

.footer-logo img {
    width: clamp(8rem, 20vw, 12rem);
    margin: 2rem 2rem 2rem 0;
}

.footer-webarchived {
    margin-top: 2rem;
    display: inline-block;
    transition: .3s opacity;
}

.footer-webarchived:has(:hover,:focus-visible) {
    opacity: .6;
}

.footer-webarchived img {
    max-width: 10rem;
}

.footer :where(a,.block-heading) {
    color: var(--color--white);
}

.footer .block-heading {
    font-size: var(--font-size--large);
}

.footer-copyright {
    font-size: var(--font-size--x-small);
    border-top: thin solid rgba(255,255,255,.3);
    padding-block: 3rem;
    margin-top: 2rem;
}

.footer .block-column:last-of-type {
    max-width: 24rem;
}

.is-style-rounded img {
    border-radius: 50%;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

figure.alignleft {
    margin-right: 1rem;
}

figure.alignright {
    margin-left: 1rem;
}
@media (min-width: 901px) {
    figure.alignright img {
        max-width: 40vw;
    }
}
.header-right {
    margin-left: auto;
    a {
        color: var(--color--white);
    }
}

@media (max-width: 450px) {
    .header > .has-global-padding {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 767px) {
    .logo span {
        width: auto;
        font-size: .75em;
    }
    .header-flex {
        flex-wrap: wrap;
    }
    .header-left {
        order: 2;
        max-width: 80%;
    }
    .header-right {
        margin-right: -.75em;
        width: 100%;
        order: 3;
    }
}

.header .burger {
    padding: 0;
    margin: 0;
    margin-left: auto;
    order: 2;
    color: var(--color--white);
}

@media (min-width: 768px) {
    .header .burger {
        display: none;
    }
}

.burger-wrapper {
    margin-bottom: -.5em;
    pointer-events: none;
}

.burger:after {
    content: attr(data-open);
    font-size: 12px;
    transition: .3s all;
    color: currentColor;
    font-weight: var(--font-weight--bold);
}

html.modal-mobile-menu--open .burger:after {
    content: attr(data-close);
    animation: fadeIn 2s;
    color: var(--color--white);
}

.burger .line {
    width: 2.2rem;
    height: .25rem;
    background-color: currentColor;
    display: block;
    margin: .4rem auto;
    transition: all .3s ease-in-out
}

@media (hover: hover) {
    .burger:hover {
        opacity: .9;
    }
}

html.modal-mobile-menu--open .burger-wrapper {
    -webkit-animation: scale-animation .3s forwards;
    animation: scale-animation .3s forwards;
}

html.modal-mobile-menu--open .burger .line {
    transition-delay: .2s;
    background-color: var(--color--white);
}

html.modal-mobile-menu--open .burger .line:nth-child(2) {
    opacity: 0
}

html.modal-mobile-menu--open .burger .line:first-child {
    transform: translateY(.65rem) rotate(45deg)
}

html.modal-mobile-menu--open .burger .line:nth-child(3) {
    transform: translateY(-.65rem) rotate(-45deg)
}

@-webkit-keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.modal-mobile-menu--open {
    overflow: hidden;
}
.mobile-menu .flex {
    height: 100%;
    width: 100%;
    max-height: 100vh;
}

html.modal-mobile-menu--open .mobile-menu .flex-1 {
    margin-bottom: -4rem;
}

@media (max-width: 768px) {
    .mobile-menu .around-xs {
        display: grid;
    }
}

.mobile-menu-content {
    text-align: left;
    padding: 1rem;
}

.mobile-menu-content svg.icon-home {
    display: none;
}

.mobile-menu .burger {
    margin-bottom: 2rem;
}

.mobile-menu .toggle-content a {
    font-size: var(--font-size--regular);
    padding-left: 2em;
    width: 100%;
    text-decoration-thickness: 1px;
    text-underline-position: auto;
}

.mobile-menu :where(a) {
    padding: 1rem;
    font-size: var(--font-size--large);
    line-height: var(--line-height--one);
    display: flex;
    text-decoration-color: transparent;
    color: var(--color--white);
    width: 100%;
    display: inline-flex;
}

.mobile-menu .has-sub-menu > a {
    width: calc( 100% - 3em );
}

.mobile-menu a + button {
    display: inline-flex;
    padding: 1em;
    margin-left: auto;
}

.mobile-menu .is-visible svg.icon-caret-right {
    display: block;
    position: relative;
    transform: rotate(90deg);
}

.mobile-menu a + button svg {
    width: 1em;
    height: 1em;
    fill: #fff;
    margin: 0;
}

@media (max-height: 750px) {
    .mobile-menu a {
        padding: .75rem 1rem;
    }
}

.mobile-menu :where(a:hover, .current > a) {
    color: var(--color--yellow-hard);
}

.event-title {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    padding: 0;
}

.event-details {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    background: whitesmoke;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-bottom: 4rem;
}

.event-details .event-metadata {
    justify-content: center;
}

.event-separator,
.event-highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0;
}

.event-image-link .loading-placeholder, .event-image {
    object-fit: cover;
    width: 8rem;
    height: 8rem;
    max-width: none;
}

@media (min-width: 768px) {
    .event-btn-past {
        float: right;
        height: 2.15rem;
    }
}

.event-metadata {
    justify-content: center;
    margin-bottom: 1rem;
}

.box {
    padding: 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow--light);
}

.event-metadata-export {
    padding: 1rem;
    border: 1px solid var(--color--grey-light);
    border-radius: 5px;
    flex-direction: column;
}

.event-metadata-category {
    display: flex;
    gap: 1rem;
}

.event-metadata svg {
    width: 1em;
    height: 1em;
    fill: var(--color--blue);
    margin-right: .5em;
}

.box-highlight {
    box-shadow: 0 0 100px #e4e4e4;
    padding: 1em clamp( 1rem, 5vw, 3.4rem );
    margin-bottom: 2em;
}

.event-item a:hover .event-title {
    color: #203864;
}

.box-highlight article:last-child {
    margin: 0;
}

.box-highlight .event-item a {
    border: 0;
}

.box-highlight .event-item:not(:last-child) .event-item-inner:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    width: 200px;
    height: 1px;
    background: #ebebeb;
}

.box-highlight .event-item-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}

.event-item a {
    display: flex;
    position: relative;
    transition: color .3s ease-in-out;
    width: 100%;
}

.event-item {
    background: #f7f7f7;
    padding: 1rem;
    margin: 1rem 0 1rem 0;
}

.event-item.event-highlight {
    background: #fff5d5;
}

.event-item > * {
    border-left: 3px solid #e0e0e0;
    padding: .5rem 1rem;
    min-height: 4rem;
}

.event-metadata, .article-metadata {
    line-height: 1.2;
    display: flex;
    gap: .5em;
    max-width: 20rem;
    justify-content: start;
}

.event-metadata-block {
    width: 100%;
}

.event-metadata-export a {
    width: 100%;
    padding-left: 1.5em;
}

.event-metadata-www a{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-width: 17rem;
}

.link-icon {
    display: flex;
    align-items: center;
    font-size: var(--font-size--small);
}

.link-icon span {
    text-decoration: underline;
}

.link-icon svg {
    margin-left: 5px;
    width: 1em;
    height: 1em;
    fill: currentColor;
    position: relative;
}

.link-icon-caret {
    position: relative;
    left: -5px;
}

.link-icon.link-icon-caret svg {
    margin: -0.1em 0.2em -0.1em 0;
}

.link-icon.link-icon-caret:hover svg {
    /* fill: #ffbf35; */
}

.page-headline h1 {
    max-width: 70rem;
}

.page-headline:has([role="navigation"]) h1 {
    margin-bottom: 1em;
}

.page-headline [role="navigation"] {
    margin: 0 0 2rem 0;
    padding: 0 0 1rem 0;
    gap: clamp( 1rem, 10%, 5rem );
    flex-wrap: wrap;
}

.page-headline [role="navigation"] a {
    display: flex;
    align-items: center;
}

.page-headline [role="navigation"] svg {
    width: .8em;
    height: .8em;
    margin-right: .5em;
    transition: none;
}

article.page {
    background: linear-gradient(0, #fff calc( 100% - 10rem ), transparent);
    padding: 0 0 6rem 0;
}

article.page:has([role="navigation"]) {
    background: linear-gradient(0, #fff calc( 100% - 5rem ), transparent);
}

.breadcrumbs,
.breadcrumbs a{
    color: var(--color--white);
}

.breadcrumbs a:hover {
    color: var(--color--red);
}

.breadcrumbs a:hover svg {
    fill: var(--color--red);
}

.breadcrumbs svg {
    margin-right: 0 !important;
}

.breadcrumbs svg.icon-home {
    width: 1.25em;
    height: 1.25em;
}

.breadcrumbs .trail-items {
    display: flex;
    gap: 0 1rem;
    flex-wrap: wrap;
}

.page-headline [role="navigation"] .breadcrumbs a {
    align-items: flex-start;
}

.breadcrumbs li:not(.trail-begin):before {
    content: '|';
    position: relative;
    width: 1em;
    display: inline-flex;
}

.breadcrumbs .trail-item,
.breadcrumbs .trail-item span {
    display: flex;
}

.article-list-newsletter-image {
    background: var(--color--blue);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color--white);
    flex-direction: column;
    text-decoration: none;
    aspect-ratio: 1 / .5;
    height: auto;
    padding: 1rem;
    text-align: center;
}

.article-list-newsletter-image:hover {
    box-shadow: 0 0 100px rgba(0,0,0,.5) inset;
}

.article-list-newsletter-image strong {
    font-size: 150%;
}

.form-login-wrapper {
    margin-left: 0 !important;
    max-width: 60rem;
}

.map {
    height: 23rem;
}

.map svg {
    z-index: 200;
    width: inherit;
    height: inherit;
}

.map .leaflet-tile-container {
    filter: grayscale(0.3)
}

.post-navigation {
    clear: both;
}

.form-login > p {
    margin-bottom: 1rem;
}

.is-style-notice-info {
    padding-left: 2.5em !important;
    position: relative;
    display: block;
}

.slider-title {
    color: #fff;
    text-shadow: 0 0 1rem color-mix(in srgb,var(--color--blue),#fff 30%)
}

.home .slider-title {
    font-family: var(--font-family--inter);
}

.slider-intro-content b {
    display: block;
}

.slider-intro-content b::first-letter {
    font-size: 150% !important;
}

.slider-intro-content small {
    font-size: 60%;
    font-weight: 200;
}

.slider-title:after {
    background: var(--color--white) !important;
}

@media (min-width: 700px) {
    .slider-title span {
        font-size: var(--font-size--x-large) !important;
    }
}

html.js .slider .loading-placeholder img[src=""] {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.slider-intro-img,
.slider-intro-opacity {
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-intro-img.blurry {
    scale: 1.2;
    filter: blur(5px);
}

.slider-intro-opacity {
    background-image: linear-gradient( 0deg, rgba(0,17,88,0.27) 0%, rgba(0,17,88,0.75) 100%);
}

.slider-intro-content {
    width: 100%;
    left: 0;
    z-index: 2;
    min-height: clamp(7rem, 30rem, 28rem);
    padding-right: var(--spacing--small);
    padding-left: var(--spacing--x-large);
    padding-bottom: var(--spacing--gap-block-4);
    padding-top: 14rem;
}

.home .slider-intro-content {
    min-height: clamp(10rem, 38rem, 40rem);
}

.slider-intro-content h1 span {
    font-weight: 300;
    font-size: 80%;
}

.slider-intro-content>* {
    opacity: 0;
}

.slider:has([role="navigation"]) h1 {
    margin-bottom: 1em;
}

.slider [role="navigation"] {
    /* margin: 0 0 2rem 0; */
    /* padding: 0 0 1rem 0; */
    gap: clamp( 1rem, 10%, 5rem );
    flex-wrap: wrap;
}

.slider [role="navigation"] a {
    display: flex;
    align-items: center;
    color: var(--color--white);
}

.slider svg {
    margin-right: .5em;
    fill: currentColor;
    width: 1em;
    height: 1em;
}

.is-active.is-visible .slider-intro-content>*,
.no-js .slider__list>.slider__slide:first-child .slider-intro-content>* {
    opacity: 1;
    transform: translateY(0px);
}

.slider-intro-content :where(h1,h2) {
    transform: translateY(10px);
    transition: 1s opacity ease-out .25s, 1s transform ease-out .3s;
}

.no-js .slider__slide:not(:first-child) {
    display: none;
}

.no-js .slider__slide:first-child {
    width: 100%;
}

main > .slider-intro,
.slider-intro-wrapper {
    background: var(--color--blue);
}

.slider-intro .slider__pagination {
    left: 50%;
    max-width: var(--style--global--wide-size);
    width: 100%;
    transform: translateX(-50%);
    padding-right: var(--spacing--xx-large);
    padding-left: var(--spacing--xx-large);
    justify-content: flex-start;
}

.block-text-vertical-title img {
    display: none;
}

.block-text-vertical-title h2 {
    color: rgb(124 108 108 / 18%);
    font-size: clamp(1.6rem, 1.6rem + ((1vw - 0.375rem) * 3.2), 2rem);
}

@media (min-width: 600px) {
    .block-text-vertical {
        display: grid;
        grid-template-columns: minmax(15%,auto) 1fr;
    }
    .block-text-vertical-title {
        transform: translateX(-1rem);
    }
    .block-text-vertical-title:after {
        content: '';
        width: 1px;
        height: 25%;
        background: rgb(124 108 108 / 18%);
        margin: auto;
        display: block;
    }
    .block-text-vertical-title h2 {
        writing-mode: vertical-rl;
        text-orientation: upright;
        letter-spacing: -.25em;
        margin: 0;
        margin: auto auto 2rem auto;
    }
}

.block-text-vertical-title h2:first-letter {
    font-size: 180%;
}

article hr {
    margin-block-end: 2rem !important;
}

.article-list-image img {
    width: 100%;
    aspect-ratio: 1/.75;
    object-fit: cover;
    object-position: top left;
    &[src*=".svg"] {
        object-fit: fill;
    }
}

.article-list-image .loading-placeholder {
    border: 1px solid #c8c1bd;
    padding: 1px;
    box-sizing: initial;
    aspect-ratio: 1 / .75 !important;
    max-width: none;
}

.has-gradient-background {
    background: linear-gradient(0, transparent, #f3f0e9 );
    background-size: 100% 50%;
    background-repeat: no-repeat;
    padding-top: 8rem;
}

.hp-member .block-column {
    position: relative;
}

.hp-member .block-image {
    margin: 0;
    max-width: calc( 100% - 2rem );
}

.hp-member .block-image:last-child {
    margin: 2rem 0 0 2rem;
}

@media (max-width: 781px) {
    .hp-member {
        padding-bottom: 6rem;
        padding-top: 4rem;
    }

    .hp-member .block-image:last-child {
        position: absolute;
        top: 0%;
        max-width: calc(100% - 2rem);
    }
}
@media (min-width: 782px) {
    .hp-member .block-image {
        position: absolute;
        top: 50%;
        max-width: calc(100% - 2rem);
        transform: translateY(-50%);
        border: 2px solid white;
        box-shadow: 0 0 2px #857e7a;
    }
}

.form-newsletter {
    margin: 0 auto;
}

.newsletter-background {
    background-image: linear-gradient(-119deg, #f8f6f1 0%, #e8e2da 100%);
    overflow: hidden;
    padding: 2rem 1rem 4rem 1rem;
    max-width: 55rem;
    border-radius: var(--radius--box);
    position: relative;
}

.newsletter img {
    position: absolute;
    width: 100%;
    max-width: 30%;
    opacity: .5;
}

.newsletter img:first-of-type {
    top: -5rem;
    left: -5rem;
    rotate: -20deg;
}

.newsletter img:last-of-type {
    bottom: -3rem;
    right: -5rem;
    rotate: 10deg;
}

.newsletter input[type=email] {
    margin: 0 auto;
    margin-right: -10px;
    height: 3.1em;
    width: calc( 100% + 3rem );
}

.newsletter h2 {
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter .form-group {
    margin-bottom: 0;
}

.newsletter-form-group  {
    display: grid;
    grid-template-columns: 1fr 9rem;
    grid-template-rows: 1fr  1fr;
    max-width: 32rem;
    margin: auto;
    align-items: flex-start;
}

.newsletter-btn {
    padding: .55em .75em;
    margin-left: -10px;
    height: 3.1em;
    z-index: 1;
    font-size: var(--font-size--small);
}

.newsletter-term {
    grid-column: span 2;
}

.newsletter-term .checkbox > label {
    font-size: var(--font-size--small);
}

.quantity {
    position: relative;
    background: var(--color--white);
    grid-template-columns: repeat(3, 33.3333%);
    width: 5rem;
    display: inline-grid;
    max-width: 100%;
}

.quantity.hidden {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    opacity: .5;
}

.quantity button {
    border: 1px solid var(--color--grey);
    background: #ffffff;
    font-weight: var(--font-weight--bold);
    font-size: 1.25em;
    aspect-ratio: 1/1;
}

.quantity .plus:hover, .quantity .minus:hover {
    color: var(--color--red);
}

.quantity input {
    border: 1px solid var(--color--grey);
    text-align: center;
    border-width: 1px 0 1px 0;
    aspect-ratio: 1 / 1;
    font-size: 80%;
    position: relative;
    z-index: 1;
    border-radius: 0;
    padding: 0;
}

.quantity input:focus {
    outline: thin solid var(--color--blue);
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.order-products {
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(18rem, 1fr) );
    gap: 1rem;
}

.order-product .price {
    font-size: 80%;
    font-weight: bold;
    line-height: var(--line-height--body);
}

.max-60rem {
    max-width: 60rem;
}

.max-40rem {
    max-width: 40rem;
}

ul.block-list-thumbnail {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
    padding: 0;
}

ul.block-list-thumbnail li {
    display: flex;
    margin: 0;
}

ul.block-list-thumbnail a {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius--button);
    box-shadow: var(--shadow--light);
}

ul.block-list-thumbnail div {
    margin: 0 auto 2rem auto;
    border: 1px solid #ececec;
}

ul.block-list-thumbnail :where(div,img) {
    aspect-ratio: 1/.5 !important;
    object-fit: cover;
    object-position: top left;
}

ul.block-list-thumbnail em {
    font-size: .8rem;
    padding-top: 1rem;
    display: inline-block;
}

ul.block-list-thumbnail a:hover {
    opacity: 0.8;
}


@media (max-width: 900px) {
    .slider-intro + .block-spacer + .block-group > :first-child:is(.alignright) {
        float: none;
        margin-inline-start: 0;
    }
}


.card-item {
    max-width: calc( 100vw - 5rem );
    width: 33rem;
}

.block-slider-loops .slider__slide {
    padding: 3rem 6rem 3rem 0;
}

.block-slider-loops .card-item {
    transition: all 0.25s ease;
}

.block-slider-loops .slider__slide:not(.is-active) .card-item {
    transform: scale(0.9);
    opacity: .5;
    pointer-events: none;
}

.card-item {
    overflow: hidden;
    border-radius: var(--radius--box);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-desc {
    padding: 1rem 2rem 0 2rem;
    background: #f7f7f7;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-image-wrap {
    position: relative;
}

.card-image-link {
    background: #fff;
    position: relative;
    height: 20rem;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    display: block;
}

.card-image {
    object-fit: cover;
    height: 20rem;
    width: 100%;
}

.loading-placeholder:has(.card-image) {
    height: 20rem;
    width: 100%;
    max-width: 100%;
}

.card-image-link:hover img {
    opacity: .8 !important;
}

.card-image-link .icon-pinned {
    position: absolute;
    top: 1rem;
    left: 1rem;
    fill: #fff;
    width: 1.3rem;
    height: 1.3rem;
    opacity: .8;
    z-index: 1;
}

.card-title {
    margin: 2rem 0 0 0;
    font-size: var(--font-size--large);
}

.card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.card h3 {
    margin-top: 0;
}

.map {
    height: 320px;
    border-radius: var(--border-radius--base);
    overflow: hidden;
    border: 1px solid var(--color--border);
    z-index: 1;
}

.event-separator {
    font-size: var(--font-size--18);
    font-weight: var(--font-weight--bold);
    border-bottom: 1px solid #e5e7eb;
    margin-block: 8rem 2rem;
    color: var(--text-decoration--color);

    :where(form,.filter-active,.card) + & {
        margin-block-start: 2rem;
    }
}

.filters {

    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: flex-end;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: #f8f8f8;
    border-radius: 8px;
    border: 1px solid var(--color--border);

    .group {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 180px;
        max-width: 22%;
    }

    .group--reset {
        min-width: auto;
        justify-content: flex-end;
        padding-bottom: 1px;
    }

    label {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: #666;
        white-space: nowrap;
    }

    select {
        width: 100%;
        padding: 7px 30px 7px 10px;
        font-size: 14px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background-color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        -webkit-appearance: none;
        appearance: none;
        cursor: pointer;
        transition: border-color .15s;
    }

    select:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 0 3px rgba(0,123,255,.15);
    }

    select:hover {
        border-color: #999;
    }

    .select:not([value=""]) {
        border-color: var(--color--primary);
        font-weight: 500;
    }

    .reset {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        font-size: 13px;
        color: #c00;
        border: 1px solid #c00;
        border-radius: 6px;
        text-decoration: none;
        white-space: nowrap;
        transition: background .15s, color .15s;
        line-height: 1.4;
    }

    .reset:hover {
        background: #c00;
        color: #fff;
    }

    .submit {
        padding: 7px 16px;
        font-size: 14px;
        border-radius: 6px;
        border: 1px solid #0057b7;
        background: #0057b7;
        color: #fff;
        cursor: pointer;
    }

}


.page-list {
    font-size: var(--font-size--16);
    flex-wrap: wrap;

    .current {
        font-weight: var(--font-weight--bold);
    }
    a:not(:last-child)::after {
        content: '|';
        margin-inline-start: 1em;
        opacity: .5;
        font-weight: 200;
        display: inline-flex;
        scale: .7;
    }
}

.filter-active {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #555;

    .label {
        font-weight: 600;
    }

    .pill {
        display: inline-block;
        padding: 2px 10px;
        background: #e8f0fb;
        border-radius: 100px;
        font-size: 12px;
        font-weight: 500;
    }
}

.event-status-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 4px 0 6px;
}

.event-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    background: #fff3cd;
    color: #664d03;
    border: 1px solid #ffda6a;
    line-height: 1.5;
}

.event-badge--postponed {
    background: #fff3cd;
    color: #664d03;
    border-color: #ffda6a;
}

.event-badge--rescheduled {
    background: #cff4fc;
    color: #055160;
    border-color: #9eeaf9;
}

.event-badge--cancelled {
    background: #f8d7da;
    color: #842029;
    border-color: #f1aeb5;
}

.event-badge--moved-online {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.event-badge--full {
    background: #e2e3e5;
    color: #41464b;
    border-color: #c4c8cb;
}

.event-badge--reg-closed {
    background: #e2e3e5;
    color: #41464b;
    border-color: #c4c8cb;
}

.event-item__attendance {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

.event-item__fee {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

.event-item__fee .icon {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    vertical-align: middle;
}

.event-item__subtopics {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 4px 0 2px;
}

.event-subtopic-tag {
    display: inline-block;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 100px;
    background: #f0f0f0;
    color: #444;
    border: 1px solid #ddd;
}

.event-no-results {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.event-no-results p {
    font-size: 16px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .event-filters {
        flex-direction: column;
        gap: 10px;
    }

    .event-filter-group {
        min-width: 100%;
    }

    .event-filter-group--reset {
        align-items: flex-start;
    }
}

.single-event {

    .layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;

        @media (min-width: 768px) {
            grid-template-columns: 1fr 340px;
            align-items: start;
        }
    }

    .color-bar {
        height: 5px;
        border-radius: var(--border-radius--base) var(--border-radius--base) 0 0;
    }

    .sidebar {
        border: 1px solid var(--color--border);
        border-radius: var(--border-radius--base);
        overflow: hidden;
        position: sticky;
        top: 5rem;

        .sidebar-header {
            background: #f9fafb;
            border-bottom: 1px solid var(--color--border);
            padding: 1rem 1.25rem;
            font-weight: 700;
            font-size: .85rem;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--color--grey);
        }
    }

    .map {
        margin-top: 1.5rem;
    }
}

.ev-meta {
    list-style: none;
    margin: 0;
    padding: 0;

    li {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        padding: .75rem 1.25rem;
        border-bottom: 1px solid var(--color--border);
        font-size: .9rem;
        line-height: 1.5;

        &:last-child {
            border-bottom: none;
        }
    }

    .ev-meta__icon {
        flex-shrink: 0;
        width: 1.1rem;
        height: 1.1rem;
        margin-top: .15em;
        color: var(--color--primary);
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .ev-meta__label {
        font-size: .7rem;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--color--grey);
        display: block;
        margin-bottom: .15rem;
    }
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .75rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.4;
}

.badge--cat { background: rgba(0,87,183,.08); color: var(--color--primary); }
.badge--status-postponed   { background: #fff3cd; color: #664d03; }
.badge--status-rescheduled { background: #cff4fc; color: #055160; }
.badge--status-cancelled   { background: #f8d7da; color: #842029; }
.badge--status-moved-online{ background: #d1ecf1; color: #0c5460; }
.badge--past               { background: #f3f4f6; color: var(--color--grey); }
.badge--fee      { background: #f0fdf4; color: #166534; }
.badge--fee-paid { background: #fefce8; color: #713f12; }

.ev-cal-links {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: .75rem 1.25rem;

    a {
        font-size: .8rem;
        color: var(--color--primary);
        display: flex;
        align-items: center;
        gap: .4rem;
        text-decoration: none;
    }
}

.ev-cal-links a:hover {
    text-decoration: underline;
}

.ev-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: .75rem;

    a {
        opacity: .8;
        transition: opacity .2s;
    }

    img {
        max-height: 3rem;
        width: auto;
        display: block;
    }
}

.ev-partners a:hover {
    opacity: 1;
}

.ev-online-box {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--border-radius--base);
    padding: .875rem 1.125rem;
    margin-bottom: 1.5rem;
    font-size: .9rem;

    strong {
        display: block;
        margin-bottom: .25rem;
        color: #1e40af;
    }
}

.ev-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .375rem;
    margin-top: .5rem;

    a {
        font-size: .78rem;
        padding: .2rem .65rem;
        border-radius: 4px;
        border: 1px solid var(--color--border);
        color: var(--color--grey);
        text-decoration: none;
        transition: border-color .15s, color .15s;
    }

    a:hover {
        border-color: var(--color--primary);
        color: var(--color--primary);
    }
}