/*
==================
= PAGE STRUCTURE =
==================
*/

/* Basic Page Structure (Container and Frame Sizes, standard-Padding etc...)

/*PAGE-SEGMENTS
**************************************************************/

body {
}

.fade_up {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
    will-change: opacity, transform;
}

.fade_up.is_visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    /* Einblend-Animation: sofort sichtbar */
    .fade_up {
        opacity: 1;
        transform: translateY(0);
        transition: none;
        will-change: auto;
    }

    /* Accordion: Pfeil-Rotation und max-height-Animation */
    .accordion-trigger:after {
        transition: none;
    }
    .accordion-content {
        transition: none;
    }

    /* Dropdown-Karten und -Überblendungen */
    .herocaption-card {
        transform: translateY(0);
        transition: none;
    }

    /* Allgemeine Hintergrundfarb-Übergänge */
    * {
        transition-duration: 0.01ms !important;
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

/*contains the whole Page */
.container {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-light);
    background-image: url(../images/ui/lsh-signet-bg.svg);
    background-position: right -100px top 110vh;
    background-size: 40%;
    background-repeat: no-repeat;
}

.content {
    position: relative;
    flex-grow: 1;
}
section {
    position: relative;
    margin-bottom: 100px;
}
section:first-child {
    margin-top: 140px;
}
@media screen and (min-width: 768px) {
    section {
        margin-bottom: 176px;
    }
    .flex-main-grp:first-child {
        margin-top: 305px;
    }
}

@media screen and (min-width: 1380px) {
    section {
        margin-bottom: 230px;
    }
}

section.no-mt:first-child {
    margin-top: 0;
}

.single section {
    margin-bottom: 59px;
}
.padded {
    padding-left: 18px;
    padding-right: 18px;
}
/*frame, contains Content-Modules, no padding! Values come from the settings.css file*/
.frame,
[class*=" frame-"],
[class^="frame-"] {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.frame,
.frame-8,
.frame-10 {
    max-width: 784px;
}

@media screen and (min-width: 1380px) {
    .frame {
        max-width: var(--grid-width);
    }
}
.frame-2,
.width-2 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 2 - var(--grid-gap));
}

.frame-3,
.width-3 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 3 - var(--grid-gap));
}

.frame-4,
.width-4 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 4 - var(--grid-gap));
}
.frame-5,
.width-5 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 5 - var(--grid-gap));
}
.frame-6,
.width-6 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 6 - var(--grid-gap));
}
.frame-7,
.width-7 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 7 - var(--grid-gap));
}
@media screen and (min-width: 1380px) {
    .frame-8,
    .width-8 {
        width: 100%;
        max-width: calc((var(--grid-col) + var(--grid-gap)) * 8 - var(--grid-gap));
    }
}
.frame-9,
.width-9 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 9 - var(--grid-gap));
}
@media screen and (min-width: 1380px) {
    .frame-10,
    .width-10 {
        width: 100%;
        max-width: calc((var(--grid-col) + var(--grid-gap)) * 10 - var(--grid-gap));
    }
}
.frame-11,
.width-11 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 11 - var(--grid-gap));
}
.frame-12,
.width-12 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 12 - var(--grid-gap));
}
.frame-13,
.width-13 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 13 - var(--grid-gap));
}
.frame-14,
.width-14 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 14 - var(--grid-gap));
}
.frame-15,
.width-15 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 15 - var(--grid-gap));
}
.frame-16,
.width-16 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 16 - var(--grid-gap));
}
.frame-17,
.width-17 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 17 - var(--grid-gap));
}
.frame-18,
.width-18 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 18 - var(--grid-gap));
}
.frame-19,
.width-19 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 19 - var(--grid-gap));
}
.frame-20,
.width-20 {
    width: 100%;
    max-width: calc((var(--grid-col) + var(--grid-gap)) * 20 - var(--grid-gap));
}

/* Utility */

.sans {
    font-family: var(--sans);
}

.serif {
    font-family: var(--serif);
}

.mono {
    font-family: courier, monospace;
}

.fancy {
    font-family: "Didot", "Times New Roman", Georgia, Times, serif;
    font-feature-settings: "liga" 1;
}

.circle {
    border-radius: 50%;
}

.mask-circle {
    border-radius: 50%;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.small {
    font-size: 0.75em;
}

/*alignment*/

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

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

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

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

/*
 Main Content Styles 
*/

.section-hero {
    width: 100%;
    height: 100vh;
    margin-bottom: 20px;
}
.home .section-hero:after {
    content: "";
    position: absolute;
    display: block;
    background-color: rgba(0, 0, 0, 0.15);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.hero-caption {
    z-index: 2;
}
.home::before {
    content: "";
    left: 0;
    right: 0;
    top: 0;
    height: 166px;
    background-image: url(../images/ui/hero-bg-dt.svg);
    background-repeat: repeat-x;
    background-position: center top;
    z-index: 1;
    pointer-events: none;
    display: block;
    position: absolute;
}

.section-heroimg {
    margin-bottom: 100px;
}
.section-heroimg:first-child {
    margin-top: 140px;
}
@media screen and (min-width: 768px) {
    .section-hero {
        margin-bottom: 150px;
    }
    .section-heroimg:first-child,
    .section-herovid:first-child {
        margin-top: 190px;
    }
    .section-heroimg {
        margin-bottom: 115px;
    }
}
.section-hero video {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.section-fullbleedslider.variant-historyslider {
    margin-bottom: 140px;
}
/* .variant-historyslider:after {
    content: "";
    width: 100vw;
    border-top: 1px dashed #faf9f7;
    position: absolute;
    display: block;
    bottom: 190px;
    z-index: 1;
} */

.variant-historyslider .slide-img:after {
    content: "";
    width: 100vw;
    border-top: 1px dashed #faf9f7;
    position: absolute;
    display: block;
    bottom: 190px;
    z-index: 1;
}
.slide-content .frame {
    z-index: 1;
}
.history-nav-txt {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    position: absolute;
    display: block;
    color: var(--gold-dark);
}
.history-nav-txt.history-nav-txt-prev {
    top: 14px;
    left: 55px;
}
.history-nav-txt.history-nav-txt-next {
    top: 14px;
    right: 55px;
}
.hero-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 118px;
    padding-left: 17px;
}
@media screen and (min-width: 768px) {
    .hero-caption {
        padding-left: 0;
        bottom: 0;
        margin-bottom: 190px;
    }
    .styled-txt .hero-caption-inner .arrow-link {
        font-size: 0.809524rem;
    }
}
.hero-caption-inner {
    padding-left: 38px;
    border-left: 1px solid;
}
.hero-caption-inner h1 {
    text-shadow: 0 0 11 rgba(0, 0, 0, 0.3);
}

.hero-caption-inner h1:last-child {
    margin-bottom: 0 !important;
}
.styled-txt .arrow-link {
    font-size: 0.812352941rem;
    font-weight: var(--bold);
    line-height: calc(20 / var(--rootsize));
    margin-bottom: 17px;

    text-transform: uppercase;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 10px;
    text-decoration: none;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
    .styled-txt .arrow-link {
        font-size: 0.714285714rem;
    }
    .herovid-caption h1 {
        font-size: calc(72 / var(--rootfactor) * 1rem);
        line-height: 89px;
    }
    .hero-caption .h1-ish {
        letter-spacing: -0.031em;
    }
}
.section-herovid .herovid-caption {
    margin-bottom: 120px;
    padding-left: 18px;
    padding-right: 18px;
}
@media screen and (min-width: 768px) {
    .section-herovid .herovid-caption {
        padding-left: 0;
        padding-right: 0;
    }
}
.bg-blue .arrow-link {
    color: var(--gold);
}
.arrow-link:before {
    content: "";
    display: block;
    position: relative;
    flex: 0 0 8px;
    width: 8px;
    height: 13px;
    margin-top: 3px;
    background-image: url(../images/ui/icn-arrow-link-gold.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.card-content .arrow-link {
    font-size: calc(15 / var(--rootfactor) * 1rem);
    line-height: 1.33;
}
.txt-light .arrow-link:before {
    background-image: url(../images/ui/icn-arrow-link.svg);
}

.txt-light {
    color: var(--white);
}

.bg-blue {
    color: var(--white);
    background-color: var(--blue-dark);
}
.heroimg {
    width: 100%;
}
.heroimg img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
}
/* Homeintro Main */

.homeintro-main {
    border-radius: 4px;
    background-color: var(--white);
    padding-top: 65px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
    .homeintro-main {
        padding-top: 105px;
        padding-bottom: 104px;
        margin-bottom: 112px;
    }

    .honeintro-main-content {
        max-width: 682px;
    }
}
@media screen and (min-width: 1380px) {
    .section-homeintro {
        margin-bottom: 0;
    }
    .homeintro-main {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 190px;
    }
    .layout-homeintro {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0 var(--grid-gap);
    }
}
.flex-main-grp {
    position: relative;
}
.sticky-side {
    display: none;
    position: absolute;
    top: 0;
    /* bottom: 475px; */
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    z-index: 5;
}
@media screen and (min-width: 768px) {
    .sticky-side {
        display: block;
    }
    .single-sport .sticky-side,
    .single-personlich .sticky-side {
        display: block;
    }
}

.sticky-grp {
    display: none;
    padding-top: 180px;
    position: absolute;
    width: 100%;
    max-width: 100px;
    justify-content: center;
    text-align: center;
    left: -140px;
}
@media screen and (min-width: 1090px) {
    .sticky-grp {
        display: block;
    }
}
@media screen and (min-width: 1380px) {
    .sticky-grp {
        left: 0;
    }
}
.sticky-sidelink {
    display: inline-block;
    text-decoration: none;
    font-size: calc(14 / var(--rootfactor) * 1rem);
    line-height: calc(19 / var(--rootfactor) * 1rem);
    font-weight: 500;
    margin-bottom: 36px;
}
@media (hover: hover) {
    .sticky-sidelink:hover,
    .section-txt a:hover,
    .section-inforound a:hover {
        color: var(--gold-dark) !important;
    }
}
/* Newsflash */

.newsflash {
    margin-left: auto;
    margin-right: auto;
    max-width: 916px;
    margin-bottom: 100px;
}
@media screen and (min-width: 1380px) {
    .newsflash {
        margin-right: 0;
        margin-bottom: 190px;
    }
}

@media screen and (min-width: 768px) {
    .newsflash-grp {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0 12px;
    }
    .newsflash h2 {
        margin-bottom: 31px;
    }
}
@media screen and (min-width: 1380px) {
    .newsflash-grp {
        display: block;
        max-width: 336px;
    }
}
.newsflash-item {
    display: block;
    text-decoration: none;
    margin-bottom: 56px;
    max-width: 384px;
}

@media screen and (min-width: 768px) {
    .newsflash-item {
        flex: 0 0 calc(50% - 8px);
        margin-bottom: 55px;
    }
    .newsflash-item:last-of-type {
        margin-bottom: 35px;
    }
}
@media (hover: hover) {
    .newsflash-item:hover {
        color: var(--gold-dark) !important;
    }
}
.newsdate {
    font-family: var(--sans);
    font-weight: var(--light);
    font-size: calc(15 / var(--rootfactor) * 1rem);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 8px !important;
}
@media screen and (min-width: 768px) {
    .newsdate {
        font-size: 0.714285714rem;
    }
}
.newsflash-item-title {
    position: relative;
    font-family: var(--serif);
    font-size: calc(18 / var(--rootfactor) * 1rem);
    letter-spacing: -0.025em;
    line-height: 1.555555556em;
}
.newsflash-item-title:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 1px;
    width: 116px;
    background-color: var(--gold-dark);
}
@media screen and (min-width: 768px) {
    .newsflash-item-title {
        font-size: 0.857142857rem;
    }
}

.newsflash-img {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    height: 171px;
}

/* teaser */
.teaser {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
    overflow: hidden;
}
.teaser-txt {
    padding-top: 40px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 60px;
}
.teaser-txt h3 {
    font-size: calc(40 / var(--rootfactor) * 1rem);
    letter-spacing: -0.018em;
    line-height: 1;
    margin-bottom: 17px;
}
@media screen and (min-width: 768px) {
    .teaser {
        display: flex;
        justify-content: flex-start;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }
    .teaser-img {
        flex: 0 0 42.9%;
    }
    .teaser-txt {
        flex: 1 1 auto;
        padding-left: 30px;
        padding-top: 30px;
        padding-bottom: 26px;
    }
    .teaser-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
}

@media screen and (min-width: 1380px) {
    .teaser-img {
        flex: 0 0 42.02%;
    }
    .teaser-txt {
        padding-left: 92px;
        padding-top: 49px;
        padding-right: 42px;
        padding-bottom: 56px;
    }
}

.arrow-link-gold {
    color: var(--gold);
}
.arrow-link:not(.arrow-link-gold):hover {
    color: var(--gold-dark);
}
.teaser-txt h2 {
    font-size: 2.352941176rem;
    letter-spacing: -0.018em;
    margin-bottom: 17px;
}

@media screen and (min-width: 1380px) {
    .teaser-txt h2 {
        font-size: 2.666666667rem;
        margin-bottom: 0;
    }
}

.teaser-txt p {
    font-size: calc(20 / 17 * 1rem);
    letter-spacing: -0.018em;
    margin-bottom: 30px;
}
@media screen and (min-width: 1380px) {
    .teaser-txt p {
        font-size: calc(20 / 21 * 1rem);
        letter-spacing: -0.018em;
        margin-bottom: 27px;
    }
}
/* inforound */
.section-inforound {
    margin-top: 100px;
}
@media screen and (min-width: 768px) {
    .section-inforound {
        margin-top: 190px;
    }
}
@media screen and (min-width: 768px) {
    .inforound {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 50px;
    }
    .inforound h3 {
        margin-bottom: 18px;
    }

    .inforound .arrow-link {
        padding-top: 10px;
    }
}

@media screen and (min-width: 1380px) {
    .inforound {
        gap: 90px;
    }
}

.inforound-media {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
    flex: 0 0 300px;
}

.inforound-caption p {
    font-family: var(--serif);
    font-size: calc(20 / var(--rootfactor) * 1rem);
    line-height: 1.4;
    letter-spacing: -0.025em;
    text-align: center;
}
.inforound-img {
    max-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
}

.inforound-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

@media screen and (min-width: 768px) {
    .inforound-media {
        max-width: 250px;
        flex: 0 0 250px;
        margin-bottom: 23px;
    }
    .inforound-img {
        max-width: 250px;
    }

    .inforound-content {
        border-left: 1px solid var(--gold-dark);
        padding-left: 40px;
    }
}
@media screen and (min-width: 1380px) {
    .inforound-media {
        max-width: 335px;
        flex: 0 0 335px;
    }
    .inforound-img {
        max-width: 335px;
    }
    .inforound-content {
        padding-left: 40px;
    }
}

/* Carousel */
.section-carousel {
    max-width: 100%;
    overflow: hidden;
}
/* Swiper container */
.carousel {
    width: 100%;
    overflow: visible;
    padding-left: var(--grid-gap);
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    display: none !important;
}
@media screen and (min-width: 1380px) {
    .carousel {
        padding-left: 0;
        overflow: hidden;
    }
}
.carousel-sec-hl h2 {
    margin-bottom: 16px !important;
}
.carousel-sec-hl {
    margin-bottom: 46px !important;
}
@media screen and (min-width: 768px) {
    .carousel-sec-hl {
        margin-bottom: 66px !important;
    }
}
/* Swiper wrapper */
.carousel .swiper-wrapper {
    display: flex;
}

/* Each slide */
.carousel .swiper-slide {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: auto;
}

/* Slide content */
.singleimgslider .slide-img {
    overflow: hidden;
    border-radius: 4px;
}
/* Image Behavior */
.slide-content img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.carousel-item,
.card-item {
    width: 336px;
    max-width: calc(100% - 36px);
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--blue-dark);
    display: flex;
    flex-direction: column;
}
.card-img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.card-content,
.carousel-item .slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.carousel-item {
    margin-right: var(--grid-gap) !important;
}
@media screen and (min-width: 1380px) {
    .carousel .carousel-item {
        margin-right: var(--grid-gap) !important;
    }
}
.carousel .carousel-item:last-child {
    margin-right: 0 !important;
}
.carousel-item h3,
.card-item h3 {
    font-size: calc(20 / 17 * 1rem);
    line-height: calc(28 / 17);
    letter-spacing: -0.025em;
    margin-bottom: 3px;
}
.carousel-item p,
.card-item p {
    font-size: calc(15 / 17 * 1rem);
    line-height: 22px;
    margin-bottom: 10px;
    font-weight: var(--light);
}
@media screen and (min-width: 1380px) {
    .carousel-item h3,
    .card-item h3 {
        font-size: calc(20 / 21 * 1rem);
        line-height: calc(28 / 21);
        letter-spacing: -0.025em;
        margin-bottom: 11px;
    }
    .carousel-item p,
    .card-item p {
        font-size: calc(15 / 21 * 1rem);
    }
}

.carousel-item .slider-caption,
.card-item .card-txt {
    padding-top: 38px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 49px;
    flex: 1;
}
.card-txt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-txt-main {
    margin-bottom: 10px;
}
.section-carousel .swiper-pagination {
    padding-top: 42px;
    position: relative;
    top: auto;
    z-index: 1;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

.styled-txt .swiper-button-prev,
.styled-txt .swiper-button-next {
    background-color: transparent;
    border: none;
    padding: 0;
}

.styled-txt .swiper-button-prev:hover path,
.styled-txt .swiper-button-next:hover path {
    opacity: 1;
}
@media (hover: hover) {
    .styled-txt .swiper-button-prev:hover,
    .styled-txt .swiper-button-next:hover {
        background-color: transparent;
    }
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    border: 1px solid var(--blue);
    background-color: transparent;
    border-radius: 50%;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--gold-dark);
}

.slider-nav {
    top: auto;
    bottom: 21px;
    z-index: 2;
    max-width: 768px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 1500px) {
    .slider-nav {
        bottom: auto;
        top: 336px;
        z-index: 11;
        max-width: none;
        width: calc(100% + 100px);
        left: -50px;
    }
}
.slider-nav button {
    background-color: transparent !important;
}
/* .section-carousel .slider-nav {
    display: none !important;
} */

/* Video */
.video-intro {
    margin-bottom: 45px;
}
.section-people:first-child {
    margin-top: 100px !important;
}
@media screen and (min-width: 768px) {
    .video-intro {
        text-align: center;
    }
    .section-people:first-child {
        margin-top: 140px !important;
    }
}
.section-hl.underlined,
.layout-txt h1 {
    padding-bottom: 23px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gold-dark);
}
@media screen and (min-width: 768px) {
    .section-hl.underlined,
    .layout-txt h1 {
        padding-bottom: 4px;
        margin-bottom: 36px;
        margin-left: auto;
        margin-right: auto;
    }
    .layout-txt h1 {
        margin-bottom: 45px;
    }
    h2.section-hl.underlined {
        padding-bottom: 18px;
        margin-bottom: 18px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-people .sec-hl {
        margin-bottom: 84px;
    }
}
.video {
    border-radius: 4px;
    overflow: hidden;
}

/* YouTube Embed - Responsive 16:9 Aspect Ratio */
.video-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Numbers */

.section-numbers {
    padding-top: 102px;
    padding-bottom: 30px;
    margin-bottom: 230px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
@media screen and (min-width: 768px) {
    .section-numbers {
        padding-top: 159px;
        padding-bottom: 122px;
    }
}
.section-numbers .section-hl {
    letter-spacing: -0.018em;
}
@media screen and (min-width: 768px) {
    .numbers-grp {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px;
        flex-wrap: wrap;
    }
}
.sec-intro-numbers {
    margin-bottom: 76px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .sec-intro-numbers {
        margin-bottom: 60px;
        max-width: 358px;
    }
}
@media screen and (min-width: 1380px) {
    .sec-intro-numbers {
        margin-bottom: 84px;
        max-width: 674px;
    }
}
.txt-gold {
    color: var(--gold);
}
.numbers-item {
    text-align: center;
    margin-bottom: 76px;
}
@media screen and (min-width: 768px) {
    .numbers-item {
        flex: 0 0 calc(50% - 25px);
        max-width: 335px;
    }
}
.numbers-item p {
    font-size: calc(16 / 17 * 1rem);
    letter-spacing: -0.025em;
    line-height: calc(24 / 17 * 1rem);
    margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
    .numbers-item p {
        font-size: calc(16 / 21 * 1rem);
        line-height: calc(24 / 21 * 1rem);
    }
}
.numbers-item .number {
    position: relative;
    text-align: center;
    font-size: calc(76 / var(--rootfactor) * 1rem);
    line-height: 1;
    padding-bottom: 24px;
    margin-bottom: 20px;
    letter-spacing: -0.018em;
}

@media screen and (min-width: 1380px) {
    .numbers-item .number {
        font-size: calc(96 / 21 * 1rem);
    }
}
.numbers-item .number:after {
    content: "";
    display: block;
    width: 96px;
    height: 1px;
    background-color: var(--gold);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .numbers-item .number:after {
        width: 116px;
    }
}
/* Slider */
.section-heronews {
    margin-bottom: 30px !important;
    margin-top: 164px !important;
}
.section-heronews .article-hl {
    margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
    .section-heronews {
        margin-bottom: 50px !important;
        margin-top: 304px !important;
    }
}
.layout-singleimgslider {
    margin: 0 auto;
    position: relative;
}

.singleimgslider {
    width: 100%;
    overflow: hidden;
}

.singleimgslider .swiper-wrapper {
    display: flex;
}

.singleimgslider .swiper-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fullwidth .singleimgslider .swiper-slide {
    display: block;
}
.fullwidth .singleimgslider .slider-caption {
    padding-left: 30px;
    padding-right: 30px;
}
.fullwidth .swiper-pagination {
    padding-right: 30px;
}
.slide-content img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}
.slider-nav.is_hidden {
    display: none;
}

.styled-txt p > small {
    font-size: calc(15 / var(--rootsize));
}
@media screen and (min-width: 768px) {
    .styled-txt .numbers-item p > small {
        font-size: calc(16 / var(--rootsize));
        line-height: 24px;
        -webkit-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }
}
.slide-content .slider-caption {
    text-align: left;
    padding-left: 18px;
    padding-right: 18px;
    min-height: 36px;
}
.section-contentslider {
    margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
    .section-contentslider {
        margin-bottom: 42px !important;
    }
}
@media screen and (min-width: 768px) {
    .slide-content .slider-caption {
        padding-left: 30px;
        padding-right: 30px;
    }
    .contentsliderslider .slider-caption {
        padding-left: 0;
        padding-right: 0;
    }
}
.contentsliderslider .slider-caption {
    padding-top: 10px;
}
.swiper-pagination {
    padding-top: 0;
    position: relative;
    top: auto;
    z-index: 1;
    text-align: right;
    padding-right: 14px;
}
@media screen and (min-width: 1380px) {
    .swiper-pagination {
        position: absolute;
        top: auto;
        bottom: 2px !important;
        padding-right: 0;
    }
}
.styled-txt .h1-small {
    font-size: calc(28 / var(--rootsize));
    letter-spacing: -0.018em;
    line-height: calc(45 / var(--rootsize));
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gold-dark);
}
@media screen and (min-width: 768px) {
    .styled-txt .h1-small {
        font-size: calc(36 / var(--rootsize));
        line-height: calc(45 / var(--rootsize));
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}
.styled-txt .postmeta {
    font-size: calc(15 / var(--rootsize));
    line-height: 1;
    margin-bottom: 0;
    letter-spacing: 0.04em;
}

/* Txt */

.section-txt {
    margin-bottom: 130px;
}
@media screen and (min-width: 768px) {
    .section-txt {
        margin-bottom: 95px;
    }
}

/* morenews */
.article-hl {
    margin-bottom: 30px;
}

@media screen and (min-width: 1380px) {
    .article-hl {
        margin-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: var(--grid-gap);
        margin-bottom: 50px;
    }
    .article-hl .arrow-link {
        padding-bottom: 18px;
    }
}
.article-hl h2 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gold-dark);
}

@media screen and (min-width: 1380px) {
    .article-hl h2 {
        padding-bottom: 18px;
        margin-bottom: 0;
    }
}
.section-morenews {
    margin-top: 70px;
}

@media screen and (min-width: 1380px) {
    .section-morenews {
        margin-top: 210px;
    }
}
.morenews-grp {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: var(--grid-gap);
    flex-wrap: wrap;
}
.morenews-grp .newsflash-item {
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .morenews-grp .newsflash-item {
        width: calc(33.33% - var(--grid-gap) / 2);
        max-width: 452px;
        margin-left: 0;
        margin-right: 0;
    }
    .article-hl.morenews-hl p {
        margin-bottom: 10px !important;
    }
}
@media screen and (min-width: 1380px) {
    .morenews-grp .newsflash-item {
        width: calc(33.33% - 12px);
        max-width: 452px;
    }
}
@media screen and (min-width: 768px) {
    .section-newsgrid {
        margin-top: 271px !important;
    }
}
/* newsgrid */
.article-hl h1 {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gold-dark);
}
.newsgrid-item {
    display: block;
    border-bottom: 1px solid var(--gold-dark);
    margin-bottom: 30px;
    padding-bottom: 30px;
    text-decoration: none;
    max-width: 586px;
    margin-left: auto;
    margin-left: auto;
}
@media screen and (min-width: 768px) {
    .newsgrid {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0 var(--grid-gap);
        flex-wrap: wrap;
    }
    .newsgrid-item {
        flex: 0 0 calc(50% - var(--grid-gap) / 2);
        max-width: 568px;
        margin-left: 0;
        margin-left: 0;
        margin-bottom: 80px;
    }
}
.newsgrid-item-title {
    margin-bottom: 15px !important;
    padding-right: 32px;
}
.blog .article-hl p,
.article-hl .postmeta {
    line-height: 24px;
    letter-spacing: 0.04em;
}
.arrow-link:last-child {
    margin-bottom: 0;
}
.blog .article-hl {
    margin-bottom: 40px !important;
}
@media screen and (min-width: 768px) {
    .blog .article-hl {
        margin-bottom: 85px !important;
    }
}
.newsgrid-item h3 {
    font-size: calc(18 / var(--rootsize));
    letter-spacing: -0.018em;
    line-height: calc(28 / var(--rootsize));
    margin-bottom: 10px;
}

@media screen and (min-width: 1380px) {
    .newsgrid-item h3 {
        font-size: calc(28 / var(--rootsize));
        letter-spacing: -0.018em;
        line-height: calc(44 / var(--rootsize));
        margin-bottom: 10px;
    }
}

.newsgrid-img {
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}
@media screen and (min-width: 1380px) {
    .newsgrid-img {
        margin-bottom: 25px;
    }
}

/* Hero-img */

.herocaption-card {
    position: relative;
    padding-top: 40px;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 50px;
    border-radius: 4px;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
    transform: translateY(-30px);
    margin-bottom: -30px;
}

@media screen and (min-width: 1380px) {
    .herocaption-card {
        padding-top: 82px;
        padding-left: 18px;
        padding-right: 18px;
        padding-bottom: 105px;
        transform: translateY(-40px);
        margin-bottom: -40px;
    }
}

/* accrdion */
.section-accordion {
    margin-top: 100px !important;
}
@media screen and (min-width: 768px) {
    .section-accordion {
        margin-top: 130px !important;
    }
}
.accordion-item {
    border-bottom: 1px solid var(--gold-dark);
}
.accordion-item:first-child {
    border-top: 1px solid var(--gold-dark);
}
.section-accordion .accordion-trigger {
    font-family: var(--serif);
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-right: 85px;
    padding-left: 0;
    display: block;
    background-color: transparent;
    width: 100%;
    text-align: left;
    border: none;
    font-size: calc(18 / var(--rootsize));
    letter-spacing: -0.02em;
    line-height: calc(28 / var(--rootsize));
    background-color: transparent !important;
    color: var(--blue-dark);
}
@media screen and (min-width: 1380px) {
    .section-accordion .accordion-trigger {
        font-size: calc(20 / var(--rootsize));
        line-height: calc(33 / var(--rootsize));
        padding-top: 32px;
        padding-bottom: 32px;
    }
}
@media (hover: hover) {
    .section-accordion .accordion-trigger:hover {
        color: var(--gold-dark);
    }
}

.accordion-trigger:after {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 25px;
    transform: rotate(0);
    right: 0;
    background-image: url(../images/ui/drop-arrow.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all 0.2s ease-in-out;
}
@media screen and (min-width: 1380px) {
    .accordion-trigger:after {
        top: 32px;
        width: 35px;
        height: 35px;
    }
}
.accordion-item.is_open .accordion-trigger:after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.is_open .accordion-content {
    max-height: 500px; /* adjust as needed or use scrollHeight in JS for auto height */
}
.accordion-content-inner {
    margin-bottom: 25px;
    padding-right: 85px;
}
.accordion-content-inner p {
    font-size: calc(17 / var(--rootfactor) * 1rem);
    line-height: 30px;
}
@media screen and (min-width: 768px) {
    .accordion-content-inner p {
        font-size: calc(18 / var(--rootfactor) * 1rem);
        line-height: 32px;
    }
}

/* people */
.section-peoplecarousel .swiper-pagination {
    padding-top: 30px;
}
.people-item {
    display: block;
    position: relative;
    border-radius: 4px;
    background-color: var(--white);
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    margin-bottom: 75px;
}
@media screen and (min-width: 768px) {
    .people-group {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0 var(--grid-gap);
    }
    .people-item {
        flex: 0 0 calc(50% - var(--grid-gap) / 2);
        margin-left: 0;
        margin-right: 0;
    }
}
.people-item .arrow-link,
.peoplecarousel-item .arrow-link {
    margin-top: 30px;
    color: var(--gold);
    width: 246px;
}
.peoplecarousel-item {
    text-decoration: none;
}
.peoplecarousel-item .people-item {
    margin-bottom: 0 !important;
}
.people-item .arrow-link:before,
.peoplecarousel-item .arrow-link:before {
    background-image: url(../images/ui/icn-arrow-link-dark.svg);
}
@media (hover: hover) {
    a.people-item:hover,
    a.peoplecarousel-item:hover {
        color: var(--gold-dark) !important;
    }
    a.people-item:hover,
    a.peoplecarousel-item:hover {
        color: var(--blue-dark) !important;
    }
    a.people-item:hover .arrow-link,
    a.peoplecarousel-item:hover .arrow-link {
        color: var(--gold-dark) !important;
    }
}
.people-img {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.people-item .people-img {
    margin-bottom: 15px;
    transform: translateY(-20px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.people-img img {
    height: 100%;
}
.people-item-content {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
}
.people-item-title {
    text-align: center;
}
.people-item-title h5 {
    font-size: calc(22 / var(--rootfactor) * 1rem);
    line-height: calc(30 / var(--rootfactor) * 1rem);
    margin-bottom: 6px;
}
.styled-txt .subtitle {
    font-size: calc(15 / var(--rootfactor) * 1rem);
    line-height: calc(24 / var(--rootfactor) * 1rem);
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}
.people-item-txt p {
    font-size: calc(16 / var(--rootfactor) * 1rem);
    line-height: calc(22 / var(--rootfactor) * 1rem);
    letter-spacing: -0.025em;
    margin-bottom: 15px;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
}

.people-item {
    color: var(--blue-dark);
    text-decoration: none;
}

/* Quotelarge */

.section-quotelarge {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 120px;
    border-bottom: 1px solid var(--gold);
    background-color: var(--blue-dark);
}
@media screen and (min-width: 768px) {
    .section-quotelarge {
        padding-top: 199px;
        padding-bottom: 199px;
    }
}
@media screen and (min-width: 1380px) {
    .quotelarge {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 130px;
    }
}
.section-quotelarge:last-child {
    margin-bottom: 0 !important;
}
.quotelarge .people-img {
    margin-bottom: 59px;
}
@media screen and (min-width: 1380px) {
    .quotelarge .people-img {
        flex: 0 0 335px;
        width: 335px;
        height: 335px;
        margin-bottom: 0;
    }
}
.section-quotelarge blockquote {
    margin-bottom: 0;
}
.section-quotelarge blockquote p {
    font-size: calc(22 / var(--rootfactor) * 1rem);
    line-height: calc(34 / var(--rootfactor) * 1rem);
    letter-spacing: -0.018em;
    margin-bottom: 35px;
}
.section-quotelarge blockquote cite {
    font-family: var(--sans);
    font-size: calc(15 / var(--rootfactor) * 1rem);
    line-height: calc(28 / var(--rootfactor) * 1rem);
    letter-spacing: 0.15em;
    margin-bottom: 49px;
    font-weight: var(--bold);
    font-style: normal;
    display: block;
    margin-bottom: 0;
}
@media screen and (min-width: 1380px) {
    .section-quotelarge blockquote p {
        font-size: calc(34 / var(--rootfactor) * 1rem);
        line-height: calc(50 / var(--rootfactor) * 1rem);
        margin-bottom: 15px;
    }
    .section-quotelarge blockquote cite {
        font-size: calc(15 / var(--rootfactor) * 1rem);
        line-height: calc(28 / var(--rootfactor) * 1rem);
        letter-spacing: 0.15em;
        margin-bottom: 35px;
    }
}

/* herovid */

.herovid {
    min-height: 450px;
    max-height: 890px;
}

.herovid video {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 890px;
}
.card-item {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
@media screen and (min-width: 600px) {
    .cardgrid {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0 var(--grid-gap);
        max-width: 690px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-item {
        flex: 0 0 calc(50% - var(--grid-gap) / 2);
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (min-width: 1380px) {
    .cardgrid {
        max-width: none;
    }
    .card-item {
        flex: 0 0 calc(25% - var(--grid-gap) * 3 / 4);
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 75px;
    }
}

/* Singleimgslider Fullbleed */
.section-fullbleedslider {
    margin-bottom: 80px;
}
.section-fullbleedslider:first-child {
    margin-top: 0 !important;
}
@media screen and (min-width: 1380px) {
    .section-fullbleedslider {
        margin-bottom: 180px;
    }
}
.fullbleedslider .singleimgslider-item .slide-img {
    min-height: 600px;
    max-height: 890px;
}
.fullbleedslider .singleimgslider-item .slide-img img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100%;
    min-height: 600px;
    max-height: 890px;
}
@media screen and (min-width: 1380px) {
    .fullbleedslider .singleimgslider-item .slide-img {
        min-height: 100vh;
        max-height: 100vh;
    }
    .fullbleedslider .singleimgslider-item .slide-img img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        width: 100%;
        height: 100%;
        min-height: 100vh;
        max-height: 100vh;
    }
}
.slide-content .fullbleedslider-caption {
    border-radius: 4px;
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
    width: 100%;
    max-width: 600px;
    transform: translateY(-45px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-left: 34px;
    padding-top: 15px;
    padding-right: 34px;
    padding-bottom: 40px;
}

@media screen and (min-width: 1380px) {
    .slide-content .fullbleedslider-caption {
        position: absolute;
        right: 86px;
        bottom: -10px;
        transform: translateY(0);
        margin-right: 0;
        padding-left: 38px;
        padding-top: 56px;
        padding-right: 38px;
        padding-bottom: 49px;
    }
}

.section-fullbleedslider .slider-nav {
    top: 600px;
    bottom: auto;
    max-width: 635px;
}
.section-fullbleedslider .slider-nav button:after {
    display: none;
}
.section-fullbleedslider .swiper-button-prev {
    left: 5px;
    width: 27px;
}
.section-fullbleedslider .swiper-button-next {
    right: 5px;
    width: 27px;
}
@media screen and (min-width: 768px) {
    .section-fullbleedslider .swiper-button-prev {
        left: 1px;
        width: 35px;
    }
    .section-fullbleedslider .swiper-button-next {
        right: 1px;
        width: 35px;
    }
}
.fullbleedslider-caption h2 {
    font-size: calc(52 / var(--rootsize));
    line-height: calc(64 / var(--rootsize));
    letter-spacing: -0.018em;
}

@media screen and (min-width: 1380px) {
    .fullbleedslider-caption h2 {
        font-size: calc(72 / var(--rootsize));
        line-height: calc(72 / var(--rootsize));
        margin-bottom: 16px;
    }
}

@media screen and (min-width: 1380px) {
    .section-fullbleedslider .slide-content {
        padding-bottom: 20px;
    }
    .section-fullbleedslider .slider-nav {
        max-width: 1380px;
        width: 1380px;
        margin-left: auto;
        margin-right: auto;
        bottom: 190px;
        top: auto;
    }
    .section-fullbleedslider .slider-nav-inside {
        position: relative;
        width: 100%;
        max-width: 635px;
        margin-left: auto;
        margin-right: 42px;
    }
}
/* sticky scrollover */

.stickyfull {
    position: relative;
    overflow: unset;
}

.layout-stickyfull {
    height: 100vh;
}

.scrollover {
    height: 200vh;
    -webkit-mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
    -webkit-mask-size: 100% 100vh;
    mask-size: 100% 100vh;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.stickyfull {
    /* position: -webkit-sticky;
    position: sticky; */
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
}
.stickyfull-inner {
    height: 100vh;
}

.stickyfull-inner img,
.stickyfull-inner video {
    display: block;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    height: 100% !important;
}

.scrollover-caption-inner {
    background-color: var(--white);
    border-radius: 4px;
    width: 100%;
    max-width: 315px;
    position: absolute;
    bottom: 50px;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}

.scrollover-caption-inner p {
    font-size: calc(16 / var(--rootsize));
    line-height: calc(32 / var(--rootsize));
    padding-bottom: 15px;
    margin-bottom: 15px;
    letter-spacing: -0.025em;
    border-bottom: 1px solid var(--gold-dark);
}

@media screen and (min-width: 1380px) {
    .scrollover-caption {
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        transform: translateY(-20px);
    }
    .scrollover-caption-inner {
        max-width: 563px;
        position: relative;
        bottom: auto;
        right: auto;
        padding-left: 60px;
        padding-right: 60px;
        padding-top: 48px;
        padding-bottom: 60px;
    }
    .scrollover-caption-inner p {
        position: relative;
        font-size: calc(20 / var(--rootsize));
        line-height: calc(36 / var(--rootsize));
        padding-bottom: 15px;
        margin-bottom: 15px;
        letter-spacing: -0.025em;
        border-bottom: none;
    }

    .scrollover-caption-inner p:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 232px;
        height: 1px;
        background-color: var(--gold-dark);
    }
}
/* .section-stickyfull + section {
    padding-top: 100px;
}

.section-stickyfull + .section-stickyfull {
    padding-top: 0;
} */

/* People Carousel */

.peoplecarousel .peoplecarousel-item {
    display: block;
    max-width: none;
    width: 100%;
    overflow: visible;
    padding-top: 20px;
}
.people-item-link-container {
    display: flex;
    justify-content: center;
}
.layout-peoplecarousel .swiper-pagination {
    text-align: center;
}
.peoplecarousel-item {
    background-color: transparent;
}
/* Form Styling */

/* Container für zweispaltiges Layout */
@media screen and (min-width: 768px) {
    .styled-checkbox.custom-checkboxes {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* WPCF7 Struktur: list-item => label => input + span */
.styled-checkbox .wpcf7-list-item {
    margin: 0;
    display: block;
}
.wpcf7-list-item label {
    margin-bottom: 0;
}
/* Verstecke die native Checkbox */
.styled-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

/* Style den sichtbaren Ersatz-Checkbox-Rahmen */
.styled-checkbox .wpcf7-list-item-label::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid var(--blue-dark);
    border-radius: 4px;
    background-color: white;
    margin-right: 0.5rem;
    vertical-align: middle;
    transition: background-color 0.2s ease-in-out;
}

/* Wenn Checkbox aktiviert ist */
.styled-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: var(--blue-dark);
}

/* Optional: Haken anzeigen */
.styled-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: -2px;
    font-size: 16px;
    color: white;
}

/* Basis-Layout */
.styled-acceptance .wpcf7-list-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-left: 26px; /* Platz für Pseudo-Checkbox */
}

/* Native Checkbox ausblenden */
.styled-acceptance input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    z-index: 2;
}

/* Custom Checkbox-Styling */
.styled-acceptance .wpcf7-list-item {
    margin-left: 0;
}
.styled-acceptance .wpcf7-list-item-label::before {
    content: "";
    display: block;
    position: absolute;
    left: -28px;
    top: 0px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--blue-dark);
    border-radius: 4px;
    background: white;
    transition: background-color 0.2s ease-in-out;
    z-index: 1;
}

/* Haken bei Aktivierung */
.styled-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    content: "✓";
    position: absolute;
    display: block;
    left: -24px;
    top: -2px;
    color: white;
    font-size: 16px;
    z-index: 3;
}

/* Aktivierter Zustand */
.styled-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.wpcf7-list-item-label {
    position: relative;
    font-size: calc(16 / var(--rootsize));
    letter-spacing: -0.025em;
    line-height: calc(26 / var(--rootsize));
    font-weight: var(--light);
}

.form-group {
    margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
    .form-group {
        margin-bottom: 100px;
    }
}
.wpcf7-checkbox {
    display: block;
    margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
    .wpcf7-checkbox {
        display: block;
        margin-bottom: 50px;
    }
}
textarea {
    line-height: 1.2;
}

.wpcf7 h2 {
    font-size: calc(24 / var(--rootsize));
    letter-spacing: -0.025em;
    line-height: calc(36 / var(--rootsize));
    font-weight: var(--regular);
    margin-bottom: 15px;
}

.wpcf7 p {
    font-size: calc(16 / var(--rootsize));
    letter-spacing: -0.025em;
    line-height: calc(26 / var(--rootsize));
    font-weight: var(--light);
    margin-bottom: 20px;
}
@media screen and (min-width: 1380px) {
    .wpcf7 p {
        font-size: calc(20 / var(--rootsize));
        line-height: calc(36 / var(--rootsize));
        margin-bottom: 16px;
    }
}
.wpcf7 p + .checkbox-grid {
    margin-top: 60px;
}

@media screen and (min-width: 1380px) {
    .wpcf7 p + .checkbox-grid {
        margin-top: 50px;
    }
}
input[type="submit"] {
    position: relative;
    display: block;
    background-color: transparent;
    width: auto;
    padding-left: 20px;
    background-image: url(../images/ui/arrow-link-icn.svg);
    background-position: 4px center;
    background-repeat: no-repeat;
}
.wpcf7-submit.arrow-link {
    color: var(--blue);
}
.wpcf7-not-valid-tip {
    font-size: 13px;
    position: absolute;
    bottom: -25px;
}
.section-search-results {
    margin-top: 184px !important;
}
@media screen and (min-width: 768px) {
    .section-search-results {
        margin-top: 305px !important;
    }
}
.search-entry {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--gold-dark);
}
.search-entry h2 {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.018em;
    margin-bottom: 10px;
}
.search-entry h2 a {
    text-decoration: none;
}

.read-more-link {
    font-weight: 500;
    color: var(--gold-dark);
    text-decoration: none;
}

.search-entry p:last-child {
    margin-bottom: 0;
}
/* Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(0, 37, 65, 0.45);
    height: 100vh;
    overflow: auto;
    margin-top: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}
@media screen and (min-width: 1000px) {
    .popup-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 37, 65, 0.45);
        height: 100vh;
        overflow: auto;
        margin-top: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
.popup-close:focus:not(:focus-visible),
.popup-close.js-no-outline:focus,
.popup-close.js-no-outline:focus-visible {
    outline: none;
}
.popup-text li {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.764705882;
    letter-spacing: -0.025em;
}
@media screen and (min-width: 1380px) {
    .popup-text li {
        font-size: 21px;
        line-height: 1.714285714em;
    }
}
/* Popup Container */
.popup {
    position: relative;

    width: calc(100% - 36px);
    max-width: 450px;

    display: flex;
    flex-direction: column;

    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

/* Close Button */
.popup-close {
    position: fixed;
    top: 50px;
    right: 36px;
    z-index: 2;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
}

@media screen and (min-width: 1000px) {
    .popup-close {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 2;

        width: 44px;
        height: 44px;

        background: none;
        border: 0;
        cursor: pointer;
    }
}

/* Media */
.popup-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.popup-media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* Content */
.popup-content {
    padding: 24px 20px 28px;
    display: flex;
    flex-direction: column;
}

/* Separator */
.popup-separator {
    margin: 16px 0;
    border: none;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.styled-txt .popup-title {
    font-size: calc(18 / var(--rootfactor) * 1rem);
    line-height: 28px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gold-dark);
}
@media screen and (min-width: 768px) {
    .styled-txt .popup-title {
        font-size: calc(28 / var(--rootfactor) * 1rem);
        line-height: 40px;
        padding-bottom: 15px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--gold-dark);
    }
}
.styled-txt .popup-eyebrow {
    font-size: calc(15 / var(--rootfactor) * 1rem);
    line-height: 26px;
    margin-bottom: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.styled-txt .popup-text {
    margin-bottom: 20px;
}

.styled-txt .popup-text p {
    font-size: calc(17 / var(--rootfactor) * 1rem);
    line-height: 30px;
    margin-bottom: 15px;
}

.popup .arrow-link {
    color: var(--gold-dark);
    font-size: calc(15 / var(--rootfactor) * 1rem);
    letter-spacing: 0.05em;
    line-height: 28px;
    text-transform: uppercase;
}

.popup .arrow-link:before {
    background-image: url(../images/ui/icn-arrow-link-dark.svg);
    margin-top: 7px;
}

@media (min-width: 768px) {
    .popup {
        max-width: 1145px;
        flex-direction: row;
        min-height: 448px;
    }

    .popup-media {
        width: 40%;
        max-width: 441px;
        aspect-ratio: auto;
        height: 100%;

        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
    }

    .popup-media img {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    .popup-content {
        width: 60%;
        margin-left: 40%;
        padding: 66px 114px 53px 61px;
        justify-content: center;
    }

    .popup-close {
        top: 24px;
        right: 24px;
    }

    .styled-txt .popup-title {
        font-size: calc(32 / var(--rootfactor) * 1rem);
        line-height: 54px;
        padding-bottom: 12px;
        margin-bottom: 16px;
    }

    .styled-txt .popup-text p {
        font-size: calc(18 / var(--rootfactor) * 1rem);
        line-height: 28px;
    }
}
.swiper-button-prev path,
.swiper-button-next path {
    opacity: 1;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    display: none !important;
}
