/**************************************************** RESET ****************************************************/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

button {
    appearance: none;
    font-weight: inherit;
    font-family: inherit;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**************************************************** VARIABLE ****************************************************/

:root {
    --padding-s: 12px;
    --padding-m: calc(var(--padding-s) * 2);

    --animationspeed: 600ms;

    --green: #A1FF9B;
    --black: #000000;
    --white: #ffffff;

    --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --fontsize-s: 16px;
    --fontsize-m: 32px;
    --fontsize-l: 48px;
    --fontsize-xl: clamp(4.8vw,4.8vw,64px);
    --lineheight-s: 1.0;
    --lineheight-m: 1.2;
    --lineheight-l: 1.2;
    --fontweight-s: 400;
    --fontweight-m: 500;
    --fontweight-l: 600;

}

/**************************************************** BASIC ****************************************************/

* {
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-style: normal;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    touch-action: manipulation;
    -ms-overflow-style: none;
    scrollbar-width: none;
    font-size: inherit;
    line-height: inherit;
}

body {
    font-family: var(--font-family) !important;
    font-size: var(--fontsize-s);
    line-height: var(--lineheight-l);
    font-weight: var(--fontweight-l);
}

/**************************************************** LINK ****************************************************/

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

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

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

.underline-no:hover {
    text-decoration: underline;
}

.underline-no:has(h2) {
    text-decoration: none !important;
}

*:focus {
    outline: 3px solid rgb(146, 146, 255) !important;
    outline-offset: -3px !important;
}

/**************************************************** TYPE ****************************************************/

.text-s {
    font-size: var(--fontsize-s);
    line-height: var(--lineheight-l);
    font-weight: var(--fontweight-l);
}

.text-m {
    font-size: var(--fontsize-m);
    line-height: var(--lineheight-m);
    font-weight: var(--fontweight-m);
}

.text-l {
    font-size: var(--fontsize-l);
    line-height: var(--lineheight-s);
    font-weight: var(--fontweight-s);
}

.text-xl {
    font-size: var(--fontsize-xl);
    line-height: var(--lineheight-s);
    font-weight: var(--fontweight-s);
}

p {
    margin-bottom: 1em;
    display: block;
    width: 100%;
}

h2 {
    font-weight: inherit;
    margin-bottom:1em;
    display: block;
    width: 100%;
}

p:last-child,
h2:last-child {
    margin-bottom: 0;
}

.case-upper,
.case-upper * {
    text-transform: uppercase;
}

em {
    font-style: italic;
}

.mirrored {
    transform: scaleX(-1);
    display: inline-block;
    color: inherit !important;
}

a:hover .mirrored,
#searchForm:hover .mirrored,
#languageForm:hover .mirrored,
#menuToggle:hover .mirrored {
    transform: scaleX(1);
}



/**************************************************** PADDING ****************************************************/

.padding-s {
    padding:var(--padding-s);
}

.padding-m {
    padding:var(--padding-m);
}

.padding-s-cap {
    padding-top: clamp(calc(var(--padding-s) - 0.35vw), calc(var(--padding-s) - 0.35vw), 5px);
    padding-bottom: clamp(calc(var(--padding-s) - 0.5vw), calc(var(--padding-s) - 0.5vw), 5px);
}

.padding-top-s {
    padding-top:var(--padding-s);
}

.padding-bottom-s {
    padding-bottom:var(--padding-s);
}

.padding-top-m {
    padding-top:var(--padding-m);
}

.padding-bottom-m {
    padding-bottom:var(--padding-m);
}

.padding-bottom-0 {
    padding-bottom:0px;
}

.gap-s {
    gap:var(--padding-s);
}

.gap-m {
    gap:var(--padding-m);
}

/**************************************************** COLOR ****************************************************/

.bg-green {
    background-color: var(--green);
}

.bg-white {
    background-color: var(--white);
}

.bg-black {
    background-color: var(--black);
}

.fg-green,
.bg-black * {
    color: var(--green);
}

.fg-white {
    color: var(--white);
}

.fg-black,
.bg-green * {
    color: var(--black);
}

.hv-black:hover {
    background-color: var(--black);
}

.hv-green:hover {
    background-color: var(--green);
}

.hv-black:hover,
.hv-black:hover * {
    color: var(--green);
}

.hv-green:hover,
.hv-green:hover * {
    color: var(--black);
}

/**************************************************** GRID ****************************************************/

.grid {
    display: flex;
    flex-flow: row wrap;
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    align-items: start;
    align-content: start;
}

.w-1-12 {
    width: calc(100% / 12 * 1);
}

.w-2-12 {
    width: calc(100% / 12 * 2);
}

.w-3-12 {
    width: calc(100% / 12 * 3);
}

.w-4-12 {
    width: calc(100% / 12 * 4);
}

.w-5-12 {
    width: calc(100% / 12 * 5);
}

.w-6-12 {
    width: calc(100% / 12 * 6);
}

.w-7-12 {
    width: calc(100% / 12 * 7);
}

.w-8-12 {
    width: calc(100% / 12 * 8);
}

.w-9-12 {
    width: calc(100% / 12 * 9);
}

.w-10-12 {
    width: calc(100% / 12 * 10);
}

.w-11-12 {
    width: calc(100% / 12 * 11);
}

.w-12-12 {
    width: calc(100% / 12 * 12);
}

.w-auto {
    width: auto;
}

/**************************************************** POSITION ****************************************************/

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
}

/**************************************************** MEDIA ****************************************************/

img,
video,
figure {
    width: 100%;
    display: block;
}

figure {
    position: relative;
}

figcaption {
    font-size: 10px !important;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--green) !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/**************************************************** RATIO ****************************************************/

.ratio-16-9 {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ratio-3-4 {
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.ratio-1-1 {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ratio-3-2 {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.block-type-image502525 .w-6-12 .ratio-1-1,
.block-type-image255025 .w-6-12 .ratio-1-1,
.block-type-image252550 .w-6-12 .ratio-1-1 {
    aspect-ratio: 2 / 1;
}

.block-type-image502525 .w-6-12 .ratio-3-4,
.block-type-image255025 .w-6-12 .ratio-3-4,
.block-type-image252550 .w-6-12 .ratio-3-4 {
    aspect-ratio: 6 / 4;
}

/**************************************************** ALIGN ****************************************************/

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

.align-left {
    justify-content: flex-start;
    text-align: left;
}

.align-right {
    justify-content: flex-end;
    text-align: right;
}

/**************************************************** HEADER ****************************************************/

header {
    flex-wrap: nowrap !important;
    justify-content: space-between;
    position: sticky;
    top:0px;
    z-index: 100;
}

header a {
    text-decoration: none;
}

header .bg-black:hover {
    background-color: var(--green);
    color: var(--black);
}

header .bg-black {
    color: var(--green);
    background-color: var(--black);
}

header .bg-black:hover {
    background-color: var(--green);
    color: var(--black);
}

header .active {
    color: var(--black);
    background-color: var(--green);
}

#searchToggle,
#languageToggle,
#menuToggle {
    cursor: pointer;
    appearance: none;
    outline: none;
    border: none;
}

/**************************************************** FOOTER ****************************************************/

footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/**************************************************** MENU ****************************************************/

nav {
    position: fixed;
    top: -100%;
    height:calc(100dvh - var(--header-height));
    left: 0;
    z-index: 99;
    width: 100%;
    overflow: auto;
    background: var(--green);
    transition: top var(--animationspeed) ease-in-out;
    align-content: space-between !important;
}

nav.visible {
    top: calc(var(--header-height) - 1px);
}

nav a {
    text-decoration: none;
}

nav .bg-green {
    color: var(--black);
    background-color: var(--green);
}

@media (min-width: 769px) {

    nav .bg-green:hover {
        background-color: var(--black);
        color: var(--green);
    }

}

nav .bg-black {
    color: var(--green);
    background-color: var(--black);
}

nav .bg-black:hover {
    background-color: var(--green);
    color: var(--black);
}

nav .hassubmenu {
    position: relative;
}

.menu-toggle {
    appearance: none;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    width: 100%;
}

@media (min-width: 769px) {

    .menu-toggle:hover {
        background: var(--black) !important;
        color: var(--green) !important;
    }

}

.menuitem:hover .menu-toggle,
.menu-toggle[aria-expanded="true"] {
    background: var(--black) !important;
    color: var(--green) !important;
}

nav .hassubmenu .submenu {
    display: none;
    position: fixed;
    height:calc(100dvh - var(--header-height));
    top: calc(var(--header-height) - 1px);
    right: 0;
    z-index: 10;
    overflow:auto;
}

nav .hassubmenu .menu-toggle[aria-expanded="true"] + .submenu {
    display: flex;
}

@media (min-width: 769px) {

    nav .hassubmenu:hover .submenu {
        display: flex;
    }

}

nav .hassubmenu .submenu:not([hidden]) {
    display: flex;
}

nav:not(.visible) .submenu {
    display: none !important;
}

.submenu {
    background: var(--black);
}

/**************************************************** SEARCH ****************************************************/

#searchForm {
    position: fixed;
    top: -100%;
    height:auto;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: top var(--animationspeed) ease-in-out;
    overflow: hidden;
    background: var(--green);
    height: var(--header-height);
}

#searchForm.visible {
    top: calc(var(--header-height) - 1px);
}

#searchForm input,
#searchForm button {
    appearance: none;
    border: none;
    background: none;
    outline:none;
    color: var(--black);
    height: var(--header-height);
    box-sizing: border-box;
}

#searchForm form {
    align-items:center;
}

#searchForm input {
    flex:1;
}

@media (min-width: 769px) {

    #searchForm button:hover {
        background: var(--black);
        color: var(--green);
        cursor: pointer;
    }

}

.search-result:nth-of-type(2n + 1) {
    background: var(--white);
}

.search-result:nth-of-type(2n + 1) * {
    color:var(--black) !important;
}

.search-result *  {
    align-items: center;
}

/**************************************************** LANGUAGE ****************************************************/

#languageForm {
    position: fixed;
    top: -100%;
    height:auto;
    left: 0;
    z-index: 99;
    width: 100%;
    transition: top var(--animationspeed) ease-in-out;
    overflow: auto;
    background: var(--green);
}

#languageForm.visible {
    top: calc(var(--header-height) - 1px);
}

#languageForm a {
    text-decoration: none;
}

#languageForm .bg-green {
    color: var(--black);
    background-color: var(--green);
}

#languageForm .bg-green:hover,
#languageForm .active {
    background-color: var(--black);
    color: var(--green);
}

/**************************************************** NEWSTICKER ****************************************************/

#newsticker {
    position: fixed;
    bottom:0px;
    height:auto;
    left: 0;
    z-index: 98;
    width: 100%;
    outline: none;
    padding-left:0px;
    padding-right:0px;
}

.newsticker-active {
    padding-bottom: var(--header-height);
}

/**************************************************** HOMEPAGE ****************************************************/

.homepage-header {
    position: relative;
    height: calc(100dvh - (var(--header-height) * 3));
    overflow: hidden;
}

.homepage-header img,
.homepage-header video{
    width: 100%;
    height: calc(100dvh - (var(--header-height) * 3));
    object-fit: cover;
    aspect-ratio: unset;
}

.homepage-header .container-text {
    position: absolute;
    bottom:0px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.homepage-readmore {
    position: absolute;
    bottom: 0;
    right: 0;
    width:auto;
    text-decoration: none;
    z-index: 1;
}

.homepage-readmore a {
    text-decoration: none;
}

/**************************************************** EVENTS ****************************************************/

.events .event > .grid,
.events .event > .grid > .grid {
    align-items: unset;
}

.events .event .container-text {
    align-content:space-between;
}

.events .event .container-image {
    overflow: hidden;
    position: relative;
}

.events .event h2 {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.events .event p {
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.events .event a {
    width:100%;
}

.events .event .container-image img {
    transition: transform var(--animationspeed) ease-in-out;
}

.events .event a:hover img {
    transform: scale(1.025);
}

.year-title:first-of-type {
    display: none;
}

/* Show year titles in archive */
.archive-events .year-title:first-of-type,
.catalogue .year-title:first-of-type  {
    display: flex;
}

.events .event:nth-of-type(2n + 1) {
    background: var(--white);
    color:var(--black);
}

.events .event:nth-of-type(2n + 2) {
    background: var(--black);
    color:var(--green);
}

.events .event:nth-of-type(2n + 3) {
    background: var(--green);
    color:var(--black);
}

.tanzkalender .event.featured .container-image,
.tanzkalender .event.featured .container-text {
    width:50%;
}

.tanzkalender .event.featured h2 {
    -webkit-line-clamp: 6;
    line-clamp: 6;
}

.tanzkalender .event.featured p {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    z-index: 1;
}

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

.events .event h2 {
    padding-top: calc( var(--padding-s) / 2);
    padding-bottom: calc( var(--padding-s) / 2);
}

/**************************************************** ACCORDION ****************************************************/

/* Accordion trigger button styling */
.accordion-trigger {
    appearance: none;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    color: inherit;
    text-align: left;
    width: 100%;
    padding: 0;
    position: relative;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
    content: "▲";
}

.accordion-title {
    cursor: pointer;
}

.accordion-icon::after {
    content: "▼";
    position:absolute;
    right: var(--padding-s);
    top:0px;
}

.accordion-icon.active::after {
    content: "▲";
    position:absolute;
    right: var(--padding-s);
}

.accordion-headline {
    padding-right: calc(var(--padding-s) + 24px);
}

.accordion.bg-green:hover,
.accordion.bg-green:hover *,
.accordion.bg-green.open,
.accordion.bg-green.open * {
    background-color: var(--black) !important;
    color: var(--green) !important;
}

.accordion.bg-black:hover,
.accordion.bg-black:hover *,
.accordion.bg-black.open,
.accordion.bg-black.open * {
    background-color: var(--green) !important;
    color: var(--black) !important;
}

.accordion.bg-white:hover,
.accordion.bg-white:hover *,
.accordion.bg-white.open,
.accordion.bg-white.open * {
    background-color: var(--green) !important;
    color: var(--black) !important;
}

/**************************************************** ARTICLES ****************************************************/

.articles,
.articles > .article,
.articles > .article > .grid,
.articles > .article > .grid > .grid {
    align-items: unset;
    align-content: unset;
}

.articles .article > .grid > .grid {
    flex-flow: column;
}

.articles .article {
    align-content: stretch;
    flex-flow: column;
}

.articles .article h2 {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    width:100%;
}

.articles .article p {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.articles .article a {
    width:100%;
    flex:1;
}

.articles .article .container-text {
    align-content:space-between;
    flex:1;
    min-height:15vw;
}

.articles .article .container-image {
    overflow: hidden;
    flex:none;
    position: relative;
    height:calc((100vw / 3) / 3 * 2)
}

.articles .article .container-image img {
    transition: transform var(--animationspeed) ease-in-out;
}

.articles .article a:hover img {
    transform: scale(1.025);
}

.articles .article:nth-of-type(2n + 1) {
    background: var(--white);
    color:var(--black);
}

.articles .article:nth-of-type(2n + 2) {
    background: var(--black);
    color:var(--white);
}

.articles .article h2 {
    padding-top: calc(var(--padding-s) / 2);
    padding-bottom: calc(var(--padding-s) / 2);
}

/**************************************************** FILTER ****************************************************/

select {
    appearance: none;
    border: none;
    background: none;
    outline:none;
    color: var(--black);
    width: 100%;
    padding-right: calc(var(--padding-s) + 24px) !important;
    cursor: pointer;
    text-transform: uppercase;
    font-family: inherit;
    border-radius: 0px;
}

option {
    appearance: none;
    border: none;
    outline:none;
    font-family: inherit;
    border-radius: 0px;
}

.filter {
    position: relative;
    width:auto;
    align-content: center;
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: var(--padding-s);
}

.filter::after {
    content: "▼";
    right: var(--padding-s);
    position: absolute;
    pointer-events: none;
}

.filter-reset {
    width:auto;
    margin-left:auto;
}

.filter-reset a {
    text-decoration: none;;
}

.filter option {
    background: var(--black);
    color: var(--green);
    cursor: pointer;
}

.filters form {
    flex-wrap: nowrap;
    overflow: auto;
}


/**************************************************** CTA 50-50 ****************************************************/

.block-type-cta5050 .text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.block-type-cta5050 .w-6-12 {
    position: relative;
    overflow: hidden;
}

.block-type-cta5050 figcaption {
    display:none !important
}

.block-type-cta5050  img {
    transition: transform var(--animationspeed) ease-in-out;
}

.block-type-cta5050 a:hover img {
    transform: scale(1.025);
}

/**************************************************** CTAS ****************************************************/

.block-type-cta + .block-type-cta,
.block-type-cta:has(+ .block-type-cta) {
    width: calc(100vw / 3);
}

.block-type-cta .container-image {
    overflow: hidden;
    position: relative;
}

.block-type-cta .container-image img {
    transition: transform var(--animationspeed) ease-in-out;
}

.block-type-cta a:hover img {
    transform: scale(1.025);
}


.block-type-cta .container-text {
    align-content:space-between;
    flex:1;
    min-height:15vw;
}

/**************************************************** CATALOGUE ****************************************************/

.catalogue-item img {
    max-height: calc(100dvh - var(--header-height) - var(--header-height) - var(--header-height) - var(--padding-s) - var(--padding-s));
    object-fit: contain;
}

.catalogue-item {
    background-color: var(--black);
}

#content.catalogue a .image {
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 50vh;
    width:50vw;
    z-index: 10;
    object-fit: contain;
    pointer-events: none;

}

#content.catalogue a:hover .image {
    display:block;
}

.catalogue .catalogue-item {
    background:white;
}

/**************************************************** COOKIES ****************************************************/

.cookie {
    z-index:100;
    bottom:0px;
    left:0px;
    width:100%;
    max-width:400px;
}

.cookie input[type="checkbox"] {
    margin: 0px;
    top: 2px;
    margin-right: var(--padding-s);
    position: relative;
}

.cookie label {
    margin-bottom:1em;
}

/* Cookie button styles */
.cookie-button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, outline 0.2s ease;
    outline: none;
}

.cookie-button:hover {
    opacity: 0.9;
}

.cookie-button:focus {
    outline: 2px solid var(--color-focus, #0066cc);
    outline-offset: 2px;
}

.cookie-button:active {
    transform: translateY(1px);
}

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

/**************************************************** LOGOS ****************************************************/

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.logos .logo {
    width:50%;
    max-width:200px;
}

.logos .logo img {
    width:100%;
    aspect-ratio: 1 / 1;
    height:auto;
    object-fit: contain;
}

/**************************************************** MOBILE ****************************************************/

@media (min-width: 769px) {

    .mobile {
        display:none;
        visibility: hidden;
    }

}

@media (max-width: 768px) {

    .desktop {
        display:none;
        visibility: hidden;
    }
    
    /**************************************************** VARIABLE ****************************************************/

    :root {
        --padding-s: 12px;
        --padding-m: calc(var(--padding-s) * 2);

        --fontsize-s: 16px;
        --fontsize-m: 24px;
        --fontsize-l: 36px;
        --fontsize-xl: 16px;
        --lineheight-s: 1.0;
        --lineheight-m: 1.2;
        --lineheight-l: 1.4;
        --fontweight-s: 400;
        --fontweight-m: 500;
        --fontweight-l: 600;
    }

    
    *:focus {
        outline: 0px solid rgb(146, 146, 255) !important;
        outline-offset: -3px !important;
    }

    /**************************************************** TYPE ****************************************************/

    .text-s {
        font-size: var(--fontsize-s);
        line-height: var(--lineheight-l);
        font-weight: var(--fontweight-l);
    }

    .text-m {
        font-size: var(--fontsize-m);
        line-height: var(--lineheight-m);
        font-weight: var(--fontweight-m);
    }
    
    .text-l {
        font-size: var(--fontsize-l);
        line-height: var(--lineheight-s);
        font-weight: var(--fontweight-s);
    }

    .text-xl {
        font-size: var(--fontsize-xl);
        line-height: var(--lineheight-l);
        font-weight: var(--fontweight-l);
    }
    .events .event h2,
    body.event h2,
    body.article h2 {
        font-size: var(--fontsize-l);
        line-height: var(--lineheight-s);
        font-weight: var(--fontweight-s);
    }
    
    /**************************************************** PADDING ****************************************************/

    .padding-s-cap {
        padding-top: var(--padding-s);
        padding-bottom: var(--padding-s);
    }

    /**************************************************** GRID ****************************************************/

    .w-1-12,
    .w-2-12,
    .w-3-12,
    .w-4-12,
    .w-5-12,
    .w-6-12 {
        width: 100%;
    }

    /**************************************************** HEADER ****************************************************/

    header {
        flex-wrap: wrap !important;
    }

    header > div {
        justify-content: space-between;
    }

    /**************************************************** ARTICLE EVENTS BLOCKS ****************************************************/

    .articles .article .container-image {
        height:unset;
        aspect-ratio: 3 / 2;
    }

    .events .event .container-text {
        width:100%;
    }

    .block-type-text5050 .w-12-12:has(.empty) > div {
        width: calc(100vw / 12 * 11);
    }   

    .block-type-text5050 .empty {
        width: calc(100vw / 12 * 1) !important;
    }   

    .dates * {
        font-size: var(--fontsize-s);
        line-height: var(--lineheight-l);
        font-weight: var(--fontweight-l);
    }

    .dates .w-4-12 {
        width: calc(100vw / 12 * 4);
    }

    .dates .w-2-12 {
        width: calc(100vw / 12 * 2);
    }
    
    .dates .w-3-12 {
        width: calc(100vw / 12 * 3);
    }

    /**************************************************** MENU ****************************************************/
    
    nav .hassubmenu .submenu {
        display: none;
        position: relative;
        height:auto;
        top: unset;
        right: unset;
        z-index: unset;
    }
    
    nav .hassubmenu button::after {
        content: "▼";
        position:absolute;
        right: var(--padding-s);
    }

    nav .hassubmenu button[aria-expanded="true"]::after {
        content: "▲";
    }

    nav .w-auto {
        width:100%;
    }

    /**************************************************** CATALOGUE ****************************************************/

    .catalogue-item .w-6-12 {
        width:80%;
    }

    .catalogue-item .w-4-12 {
        display:none;
    }

    .catalogue-item .w-2-12 {
        width:20%;
    }

    .catalogue .catalogue-item .image {
        display: none !important;
    }

    /**************************************************** CTA ****************************************************/

    .block-type-cta + .block-type-cta,
    .block-type-cta:has(+ .block-type-cta) {
        width: 100vw;
    }

    /**************************************************** CTA 50-50 ****************************************************/

    .block-type-cta5050 .text-xl {
        font-size: var(--fontsize-l);
        line-height: var(--lineheight-s);
        font-weight: var(--fontweight-s);
    }

}