/*
 Theme Name: Frei und Zeit
 Theme URI: https://freiundzeit.it
 Description: Custom Theme für Frei und Zeit
 Author: Markus Denicolo, Freiundzeit
 Author URI: https://freiundzeit.it
 Version: 3.0
 Text Domain: freiundzeit
*/

@font-face {
    font-family: 'TeX Gyre Heros';
    src: url('assets/fonts/texgyreheros-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TeX Gyre Heros';
    src: url('assets/fonts/texgyreheros-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-size: 90%;
    --fuz-padding-side: 80px;
    --fuz-padding-top-full: 200px;
    --fuz-padding-top-medium: 100px;
    --fuz-padding-top-small: 0;
    --fuz-padding-bottom-full: 200px;
    --fuz-padding-bottom-medium: 100px;
    --fuz-padding-bottom-small: 0;
    --fuz-content-max-width: 1346px;
    --fuz-global-color-blue: #B6DDFF;
    --fuz-global-color-pink: #FFA8D2;
    --fuz-global-color-yellow: #F4FFBB;
    --fuz-global-color-green: #AEF3CF;
    --fuz-global-color-orange: #FFB396;
    --fuz-global-color-viola: #EAC9FF;
}

.wp-menu li {
    list-style: none;
}

.wp-menu li a {
    text-decoration: none;
}

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

@media screen and (min-width: 1441px) {
    :root {
        --fuz-padding-side: 140px;
        font-size: 100%;
    }
}


@media screen and (max-width: 1024px) {
    :root {
        --fuz-padding-side: 40px;
        --fuz-padding-top-full: 70px;
        --fuz-padding-top-half: 40px;
        --fuz-padding-top-none: 0;
        --fuz-padding-bottom-full: 70px;
        --fuz-padding-bottom-half: 40px;
        --fuz-padding-bottom-none: 0;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --fuz-padding-side: 16px;
        --fuz-padding-top-full: 80px;
        --fuz-padding-top-half: 40px;
        --fuz-padding-top-none: 0;
        --fuz-padding-bottom-full: 80px;
        --fuz-padding-bottom-half: 40px;
        --fuz-padding-bottom-none: 0;
        /*font-size: 90%;*/
    }

}

body,
html {
    font-family: 'TeX Gyre Heros', Helvetica, Arial, sans-serif;
    color: #111;
}



/* Global Layouts*/

.fuz-section {
    padding-left: var(--fuz-padding-side);
    padding-right: var(--fuz-padding-side);
}

.fuz-section-full-width {
    padding-left: 0;
    padding-right: 0;
}

.fuz-section__inner {
    width: 100%;
    max-width: var(--fuz-content-max-width);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.fuz-section-full-width .fuz-section__inner {
    width: 100vw;
    max-width: 100vw;
}

.fuz-padding-top-full {
    padding-top: var(--fuz-padding-top-full);
}

.fuz-padding-top-medium {
    padding-top: var(--fuz-padding-top-medium);
}

.fuz-padding-top-small {
    padding-top: var(--fuz-padding-top-small);
}

.fuz-padding-bottom-full {
    padding-bottom: var(--fuz-padding-bottom-full);
}

.fuz-padding-bottom-medium {
    padding-bottom: var(--fuz-padding-bottom-medium);
}

.fuz-padding-bottom-small {
    padding-bottom: var(--fuz-padding-bottom-small);
}

p {
    margin-bottom: 20px;
}

.fuz-border-top {
    border-top: 2px solid black;
}

.fuz-border-bottom {
    border-bottom: 2px solid black;
}

/* Buttons */

.fuz-hero_button,
.fuz-button {
    display: flex;
    background-color: transparent;
    color: black;
    gap: 16px;
    border: 2px solid black;
    border-radius: 500px;
    padding: 8px 16px;
    align-items: center;
}

.fuz-button-icon {
    line-height: 0;
    height: 18px;
    width: auto;
}

.fuz-button-text {
    line-height: 1.2em;
    font-size: 1.5rem;
}


/* Global Typography */

.fuz-heading-lg,
.fuz-hero_heading {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

h1.fuz-heading-lg {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 700;
}

.fuz-subheading {
    font-size: 1.5rem;
    line-height: 1.4em;
    font-weight: 700;
}

.fuz-copy-text-lg {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2em;
    letter-spacing: 0.64px;
}

.fuz-copy-text-nrm {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.36px;
    line-height: 1.2em;
}

#breadcrumbs {
    font-size: 0.875rem;
    margin-bottom: 0;
    text-transform: uppercase;
}


/*Header Styling*/
.fuz-site-header {
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: 0.5s ease-in-out;
    background-color: transparent;
}

.fuz-body-scrolled .fuz-site-header {
    background-color: white;
    box-shadow: inset 0 -2px 0 black;
}

.fuz-site-header__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 60px;
}

.fuz-site-logo {
    line-height: 0;
}

.fuz-site-logo img {
    height: 24px;
    width: auto;
}

.fuz-site-header__col {
    width: 50%;
    display: flex;
    align-items: center;
}

.fuz-site-header__col-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 16px
}

.fuz-header-nav-primary-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 24px;
    align-items: center;
}

.fuz-header-nav-primary-menu ul {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.fuz-header-nav-primary-menu a {
    font-size: 1.25rem;
    font-weight: 700;
}


/* Template Parts */

/* FUZ Text Section */

.fuz-text-section__inner {
    gap: 40px;
}

.fuz-text-section__text {
    width: 100%;
    max-width: 1117px;
}

.fuz-text-section__inner .fuz-button {
    margin-top: 20px;
}

/* Fuz Hero Section */

.fuz-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fuz-pb-hero-height-full {
    min-height: 100vh;
}

.fuz-pb-hero-height-auto {
    min-height: auto;
}

.fuz-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.fuz-hero__inner {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: var(--fuz-content-max-width);
    margin: auto;
}

.fuz-hero-has-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.fuz-hero_buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

/* FUZ Subpage Hero */

.fuz-hero-subpage__inner {
    gap: 0;
}

.fuz-hero-subpage__heading {
    margin-bottom: 80px;
}

/* Fuz List Section */

.fuz-list__inner {
    width: 100%;
}

.fuz-list__header {
    padding-left: var(--fuz-padding-side);
    padding-right: var(--fuz-padding-side);
}

.fuz-list__header-inner {
    margin: 0 auto 40px auto;
    max-width: var(--fuz-content-max-width);
}

.fuz-list__heading {
    margin-bottom: 80px;
}

.fuz-list__items {
    margin: 0;
    padding: 0;
}

.fuz-list li {
    list-style: none;
    border-bottom: 2px solid #000;
    padding-left: var(--fuz-padding-side);
    padding-right: var(--fuz-padding-side);
}

.fuz-list li:first-child {
    border-top: 2px solid #000;
}

.fuz-list__item-row {
    max-width: var(--fuz-content-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    padding: 40px 0;
}

.fuz-list__item-left,
.fuz-list__item-right {
    flex: 1 1 0;
    min-width: 0;
}

.fuz-list__item-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.fuz-list__item-right {
    display: flex;
    justify-content: flex-end;
}

.fuz-list__item--clickable:hover {
    cursor: pointer;
}

.fuz-list__item-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.fuz-list__item--clickable .fuz-list__item-arrow {
    transition: transform 0.5s ease;
}

.fuz-list__item--clickable:hover .fuz-list__item-arrow {
    transform: translateX(10px);
}

@media screen and (max-width: 767px) {
    .fuz-list__item-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .fuz-list__item-left,
    .fuz-list__item-right {
        width: 100%;
        flex: 1 1 auto;
    }

    .fuz-list__item-right {
        justify-content: flex-start;
    }
}

/* FUZ Team Section*/

/* =========================
   Team Section Grid
========================= */

.fuz-team-section__grid {
    display: grid;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    /* Desktop Standard */
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.fuz-team-card {
    min-width: 0;
    width: 100%;
}

.fuz-team-card img {
    width: 100%;
    height: auto;
}

/*Media Block*/

.fuz-media-block__inner {
    max-width: var(--fuz-content-max-width);
    margin: auto;
}


/* =========================================================
   MEDIA BLOCK – 2x2 GRID BASIS (Container immer 2:1)
   ========================================================= */

.fuz-media-block__media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;

    /* das komplette Grid ist 2:1 */
    aspect-ratio: 2 / 1;
    width: 100%;

    /* optional (falls ihr rounded corners / clipping wollt) */
    /* overflow: hidden; */
}

.fuz-media-block__media-cell {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.fuz-media-block__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Border Radiuses */

.fuz-media-block__media-grid {
    border-radius: 20px;
    overflow: hidden;
}



/* =========================================================
   Layout-Spans
   ========================================================= */

/* SINGLE: nimmt alle 4 Grid-Zellen ein */
.fuz-media-block__media-grid--single .fuz-media-block__media-cell {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
}

/* DOUBLE: jedes Medium = 1 Spalte, 2 Zeilen */
.fuz-media-block__media-grid--double .fuz-media-block__media-cell:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / -1;
}

.fuz-media-block__media-grid--double .fuz-media-block__media-cell:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / -1;
}

/* TRIPLE_12:
   1. Medium = links 1 Spalte, 2 Zeilen
   2. Medium = rechts oben
   3. Medium = rechts unten
*/
.fuz-media-block__media-grid--triple-12 .fuz-media-block__media-cell--a {
    grid-column: 1 / 2;
    grid-row: 1 / -1;
}

.fuz-media-block__media-grid--triple-12 .fuz-media-block__media-cell--b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.fuz-media-block__media-grid--triple-12 .fuz-media-block__media-cell--c {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* TRIPLE_21:
   1. Medium = links oben
   2. Medium = links unten
   3. Medium = rechts 1 Spalte, 2 Zeilen
*/
.fuz-media-block__media-grid--triple-21 .fuz-media-block__media-cell--a {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.fuz-media-block__media-grid--triple-21 .fuz-media-block__media-cell--b {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.fuz-media-block__media-grid--triple-21 .fuz-media-block__media-cell--c {
    grid-column: 2 / 3;
    grid-row: 1 / -1;
}

/* FOUR: jedes Medium = genau 1 Grid-Zelle (default reicht),
   aber wir schreiben’s explizit für Klarheit */
.fuz-media-block__media-grid--four .fuz-media-block__media-cell:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.fuz-media-block__media-grid--four .fuz-media-block__media-cell:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.fuz-media-block__media-grid--four .fuz-media-block__media-cell:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.fuz-media-block__media-grid--four .fuz-media-block__media-cell:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* =========================================================
   Responsive (optional)
   - Wenn du willst: auf Mobile lieber 1 Spalte, 2:1 beibehalten
   ========================================================= */

@media (max-width: 900px) {
    .fuz-media-block__media-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        aspect-ratio: auto;
    }

    /* dann geben wir den Medien eine sinnvolle Ratio */
    .fuz-media-block__media-cell {
        aspect-ratio: 2 / 1;
    }

    /* Spans zurücksetzen */
    .fuz-media-block__media-grid--single .fuz-media-block__media-cell,
    .fuz-media-block__media-grid--double .fuz-media-block__media-cell,
    .fuz-media-block__media-grid--triple-12 .fuz-media-block__media-cell,
    .fuz-media-block__media-grid--triple-21 .fuz-media-block__media-cell,
    .fuz-media-block__media-grid--four .fuz-media-block__media-cell {
        grid-column: auto;
        grid-row: auto;
    }
}

.fuz-media-block__item--hidden {
    display: none;
}


/* FUZ Counter Section */

/* =========================
   Counter Grid
========================= */

.fuz-section-counter .fuz-section__inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-left: 2px solid black;
    border-right: 2px solid black;
}

/* Element base */
.fuz-section-counter__element {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    align-items: center;
    /* falls ihr Linien wie im Screenshot wollt */
    padding: 40px 60px;
    height: 100%;
    text-align: center;
    transition: 1s ease-in-out;
    background-color: #fff;
}

/* Typography (nur Grundwerte, feinjustieren kannst du später) */
.fuz-section-counter__element-number {
    font-size: 6rem;
    line-height: 1em;
    font-weight: 400;
}

.fuz-section-counter__element-headline {
    margin-top: 20px;
    font-size: 2rem;
    line-height: 1em;
}

.fuz-section-counter__element-text {
    margin-top: 16px;
    font-size: 1.125rem;
    white-space: pre-line;
    /* \n aus PHP wird Zeilenumbruch */
    max-width: 22ch;
}

/* =========================
   Grid placement (6x2)
========================= */

/* YEARS: col 1-2, rows 1-2 */
.fuz-section-counter__element-years {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    border-right: 2px solid black;
}

.fuz-section__inner .fuz-section-counter__element-years:hover {
    background-color: var(--fuz-global-color-blue);
}

.fuz-section-counter__element-years .fuz-section-counter__element-number {
    font-size: 9rem;
}

/* CLIENTS: col 3-4, row 1 */
.fuz-section-counter__element-clients {
    grid-column: 3 / span 2;
    grid-row: 1 / span 1;
    border-right: 2px solid black;
    border-bottom: 2px solid black;
}

.fuz-section-counter__element-clients:hover {
    background-color: var(--fuz-global-color-pink);
}

/* PROJECTS: col 5-6, row 1 */
.fuz-section-counter__element-projects {
    grid-column: 5 / span 2;
    grid-row: 1 / span 1;
    border-bottom: 2px solid black;
}

.fuz-section-counter__element-projects:hover {
    background-color: var(--fuz-global-color-yellow);
}

/* WEBSITES: col 3-4, row 2 */
.fuz-section-counter__element-websites {
    grid-column: 3 / span 2;
    grid-row: 2 / span 1;
    border-right: 2px solid black;
}

.fuz-section-counter__element-websites:hover {
    background-color: var(--fuz-global-color-green);
}

/* EMPLOYEES: col 5-6, row 2 */
.fuz-section-counter__element-employees {
    grid-column: 5 / span 2;
    grid-row: 2 / span 1;
}

.fuz-section-counter__element-employees:hover {
    background-color: var(--fuz-global-color-orange);
}

@media (max-width:1024px) {

    .fuz-section-counter {
        padding: 0;
    }

    .fuz-section-counter .fuz-section__inner {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        border-left: 0;
        border-right: 0;
    }

    .fuz-section-counter__element-number {
        font-size: 4.5rem;
    }

    .fuz-section-counter__element-years .fuz-section-counter__element-number {
        font-size: 6rem;
    }

    .fuz-section-counter__element-text {
        margin-top: 8px;
    }

    /* YEARS */
    .fuz-section-counter__element-years {
        grid-column: 1 / span 2;
        grid-row: 1;
        border-bottom: 2px solid black;
        border-right: 0;
    }

    /* CLIENTS */
    .fuz-section-counter__element-clients {
        grid-column: 1;
        grid-row: 2;
    }

    /* PROJECTS */
    .fuz-section-counter__element-projects {
        grid-column: 2;
        grid-row: 2;
    }

    /* WEBSITES */
    .fuz-section-counter__element-websites {
        grid-column: 1;
        grid-row: 3;
    }

    /* EMPLOYEES */
    .fuz-section-counter__element-employees {
        grid-column: 2;
        grid-row: 3;
    }

}

@media (max-width: 767px) {

    .fuz-section-counter .fuz-section__inner {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(5, auto);
        border-left: 0;
        border-right: 0;
    }

    .fuz-section-counter__element {
        padding: 32px 16px;
    }

    .fuz-section-counter__element-number {
        font-size: 4rem;
    }

    .fuz-section-counter__element-years .fuz-section-counter__element-number {
        font-size: 4rem;
    }

    /* CLIENTS */
    .fuz-section-counter__element-clients {
        grid-column: 1;
        grid-row: 2;
        border-right: 0;
    }

    /* PROJECTS */
    .fuz-section-counter__element-projects {
        grid-column: 1;
        grid-row: 3;
    }

    /* WEBSITES */
    .fuz-section-counter__element-websites {
        grid-column: 1;
        grid-row: 4;
        border-right: 0;
        border-bottom: 2px solid black;
    }

    /* EMPLOYEES */
    .fuz-section-counter__element-employees {
        grid-column: 1;
        grid-row: 5;
    }
}


/* Full width gallery slider */

.fuz-slide-gallery-full-width {
    overflow: hidden;
}

.fuz-slide-gallery-full-width__viewport {
    width: 100%;
    overflow: hidden;
}

.fuz-slide-gallery-full-width__track {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.fuz-slide-gallery-full-width__set {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 0 0 auto;
}

.fuz-slide-gallery-full-width__item {
    flex: 0 0 auto;
    width: 13rem;
    object-fit: cover;
    object-position: center;
}

.fuz-slide-gallery-full-width__item img {
    object-fit: cover;
    object-position: center;
}

.fuz-slide-gallery-full-width__item:nth-child(3n+1) img {
    aspect-ratio: 20 / 32;
}

.fuz-slide-gallery-full-width__item:nth-child(3n+2) img {
    aspect-ratio: 20 / 29;
}

.fuz-slide-gallery-full-width__item:nth-child(3n+3) img {
    aspect-ratio: 20 / 25;
}

.fuz-slide-gallery-full-width__link {
    display: block;
    text-decoration: none;
}

.fuz-slide-gallery-full-width__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
}

/* Projects compact*/

.fuz-projects-compact__inner {
    gap: 80px;
}

.fuz-projects-compact__heading-container {
    padding-left: var(--fuz-padding-side);
    padding-right: var(--fuz-padding-side);
    width: 100%;
}

.fuz-projects-compact__heading-container-inner {
    max-width: var(--fuz-content-max-width);
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.fuz-projects-compact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 80px;
}

.fuz-projects-compact__item {
    width: 100%;
}

.fuz-projects-compact__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.fuz-projects-compact__media {
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4 / 5;
}

.fuz-projects-compact__media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    width: 100%;
    transition: 0.75s ease-in-out;
}

.fuz-projects-compact__media img:hover {
    transform: scale(1.2);
}

.fuz-projects-compact__title {
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .fuz-projects-compact__grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 var(--fuz-padding-side);
    }
}

@media screen and (max-width: 767px) {
    .fuz-projects-compact__grid {
        grid-template-columns: 1fr;
        padding: 0 var(--fuz-padding-side);
    }
}


/*Branchen / Industries Template Part*/

.fuz-industries__inner {
    display: grid;
    gap: 32px;
}

.fuz-industries__intro {
    max-width: 800px;
}

.fuz-industries__heading {
    margin: 0 0 16px 0;
}

.fuz-industries__subheading {
    margin: 80px 0 16px 0;
}

.fuz-industries__text>*:first-child {
    margin-top: 0;
}

.fuz-industries__text>*:last-child {
    margin-bottom: 0;
}

.fuz-industries__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.fuz-industries__item {
    margin: 0;
}

.fuz-industries__link {
    text-decoration: none;
}

.fuz-industries__item--all a {
    background-color: black;
    color: white;
}

.fuz-industries__item--all a .fuz-button-icon svg path {
    stroke: white;
}


/* Contact CTA Template Part*/

.fuz-footer-cta__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: stretch;
    max-width: var(--fuz-content-max-width);
    margin: auto;
}

.fuz-footer-cta__inner.has-media {
    grid-template-columns: 1fr 1fr;
}

.fuz-footer-cta__content,
.fuz-footer-cta__media {
    min-width: 0;
    min-height: 0;
}

.fuz-footer-cta__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 0;
}

/* Die Spalte selbst wird auf die Grid-Höhe gestreckt */
.fuz-footer-cta__media {
    position: relative;
    align-self: stretch;
}

/* Wrapper füllt exakt die Höhe der Spalte */
.fuz-footer-cta__media-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

/* Bild aus dem normalen Layout nehmen */
.fuz-footer-cta__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .fuz-footer-cta__inner.has-media {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fuz-footer-cta__inner.has-media {
        grid-template-columns: 1fr;
    }

    .fuz-footer-cta__media {
        min-height: 320px;
    }

    .fuz-footer-cta__media-inner {
        min-height: 320px;
        display: flex;
        justify-content: center;
    }

    .fuz-footer-cta__image {
        position: relative;
        inset: auto;
        max-width: 250px;
    }
}

/* Footer */

.fuz-footer__main {
    padding: 200px var(--fuz-padding-side);
    background-color: var(--fuz-global-color-viola);
}

.fuz-footer__main_col_wrapper {
    width: 100%;
    max-width: var(--fuz-content-max-width);
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.fuz-footer__main_col {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fuz-footer__contact {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.fuz-footer__contact-address,
.fuz-footer__contact-phone,
.fuz-footer__contact-destination-code {
    margin-bottom: 20px;
}

.fuz-footer__branding img {
    width: 240px;
    max-width: 100%;
    height: auto;
}

.fuz-footer__primary-menu,
.fuz-footer__meta-menu {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;

}

.fuz-footer__primary-menu li {
    font-size: 1.5rem;
    font-weight: 700;
}

.fuz-footer__bottom {
    padding: 40px var(--fuz-padding-side);
    background-color: var(--fuz-global-color-viola);
}

.fuz-footer__bottom_inner {
    max-width: var(--fuz-content-max-width);
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .fuz-footer__main_col_wrapper {
        flex-direction: column;
    }

    .fuz-footer__main_col {
        width: 100%;
    }
}


/* Specific section css*/

.fuz-page-section-top .fuz-section__inner {
    padding-top: 100px;
}

.fuz-hero-section-no-overlay::after {
    background-color: transparent;
}

/*Hide Elements depending on screensize*/

@media screen and (min-width: 1025px) {
    .fuz-hide-on-desktop {
        display: none;
    }
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
    .fuz-hide-on-tablet {
        display: none;
    }
}

@media screen and (max-width: 767px){
    .fuz-hide-on-mobile {
        display: none;
    }
}