

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400&family=Open+Sans:wght@700&family=Poppins:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;400&family=Open+Sans:wght@700&family=Poppins:wght@900&family=Roboto+Serif:opsz,wght@8..144,300&family=Roboto:wght@300&display=swap');

.news-event__hero-image figure {
    min-width: fit-content;
    background-image: none;
}

.row--1-2-1, .row--2-1, .row--1-2, .row--2,.row--3, .row--4  {
    h1 {
        @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
        font-family: 'Poppins', sans-serif;
        font-weight: 900; 
        font-size: 1.75rem;
        text-transform: uppercase;
        strong {
            @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
            font-family: 'Poppins', sans-serif;
            font-weight: 900; 
            font-size: 1.75rem;
            text-transform: uppercase;
        }
    }
    
    h2 {
        @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
        font-family: 'Poppins', sans-serif;
        font-weight: 900; 
        font-size: 1.5rem;
        text-transform: uppercase;
        margin: 0;
        margin-bottom: spacing(-2);
            
        strong {
            @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
            font-family: 'Poppins', sans-serif; 
            font-weight: 900;
            font-size: 1.1rem; 
            text-transform: uppercase;
        }
    }
    
    h3 {
        @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
        font-family: 'Poppins', sans-serif; 
        font-weight: 900;
        font-size: 1.1rem; 
        text-transform: uppercase;
    }
    
    p {
        @include set-font(0, "multiple", $weight: "light", $transform: "none", $max-width: 3);  
        font-size: 1rem;
        font-family: 'Roboto Serif', sans-serif;
    }

    span {
        @include set-font(0, "multiple", $weight: "light", $transform: "none", $max-width: 3);  
        font-size: 1rem;
        font-family: 'Roboto Serif', sans-serif;
    }
    
    strong {
        @include set-font(-1, "multiple", $weight: "bold", $transform: "none",$max-width: 3);
        font-size: 1rem;
        font-family: 'Roboto Serif', sans-serif;
        font-weight: 700; 
    }
    a.a--text-link {
        @include set-font(-1, "multiple", $weight: "light", $transform: "none",$max-width: 3);
        cursor: pointer;
        font-size: 1rem;
        font-family: 'Roboto Serif', sans-serif;
        border-bottom: 0.1rem dotted #000; 
        width: auto;
        background-image: none;
        margin: 0;
    }

    ul>li::before {
        font-family: au_icons;
        content: "≥";
        font-size: .6rem;
        position: absolute;
        line-height: 2.5em;
        font-weight: 700;
        color: black;
        background-color: transparent;
        margin-top: -0.3rem;
    }

    ul>li {
        @include set-font(0, "multiple", $weight: "light", $transform: "none", $max-width: 3);  
        font-size: 1rem;
        font-family: 'Roboto Serif', sans-serif;
    }

    img {
        width: 100%;
        height: auto;
        outline: black solid 0.1rem;
        outline-offset: -$outline-offset;   
    }
}


@include breakpoint("wide", $mobile-last: true) {
    .page-wrapper {
        margin-left: spacing(-2);
        margin-right: spacing(-2);
        margin-top: spacing(-2);
    }
    
    .omnibus-header {
        display: flex;
        justify-content: space-between;
        max-width: 99.5%;
        margin-bottom: 1rem;
        align-items: center;
        a.a--text-link {
            background-image: none;
            cursor: pointer;
        }
        &__logo-dot {
            height: 5rem;
            width: fit-content;
            cursor: pointer;
            align-items: center;
        }
        &__logo-titel {
            height: 2rem;
            width: fit-content;
            cursor: pointer;
            float: right;
        }
        &__list {
            display: none;
            height: 0;
            width: 0;
            ul {
                display: none;
                height: 0;
                width: 0;
            }
        }
        &__menu{
            height: 100%;
            cursor: pointer;
            margin-left: 1rem;
            margin-top: -0.1rem;
            font-size: 1.1rem;
            font-family: 'Font Awesome\ 5 Free';
            @include icon-style($style: "solid", $position: "after") {
                content: "\f0c9"
            };
        }
        &__mobile-options {
            cursor: pointer;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            min-height: 3rem;
        }
        .omnibus-header__container {
            display: flex;
            flex-direction: column;
            justify-content: end;
        }
        &__mobile-scroll {
            position: fixed;
            height: 3.3rem;
            top: -100px;
            left: 0;
            width: 100%;
            background-color: white;
            color: #fff;
            z-index: 199;
            padding: 1rem;
            align-items: center;
            outline: black solid 0.15rem;
            outline-offset: $outline-offset*0.5;
            -webkit-animation: slide 0.5s forwards;
            -webkit-animation-delay: 2s;
            animation: slide 0.5s forwards;
        
            @-webkit-keyframes slide {
                100% { top: 0; }
            }
            
            @keyframes slide {
                100% { top: 0; }
            }
            &--show {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            &--hide {
                display: none;
            }
            img {
                height: 2rem;
                margin-bottom: -0.004rem;
            }
            button {
                float: right;
                margin-right: 0.2rem;
            }
            .omnibus-header__menu {
                font-size: 1.1rem;
                align-items: center;
            }
            .omnibus-header__logo-dot {
                align-items: center;
            }
            .language-toggle{
                @include set-font(0, "multiple", $weight: "bold");
                cursor: pointer;
                font-family: 'Poppins', sans-serif; 
                font-weight: 1000; 
                font-size: 1.1rem;
                align-items: center;
                a.a--text-link  {
                    text-decoration: none;
                    background-image: none;
                    font-family: 'Poppins', sans-serif; 
                    font-weight: 1000; 
                    text-transform: uppercase;
                }
            }
            .search-button {
                font-size: 1.1rem;
                align-items: center;
                padding-right: 0.2rem;
                @include icon-style($style: "solid", $position: "after") {
                    content: "\f002"
                };
                @include icon-style($style: "solid", $position: "after") {
                    content: "\f002"
                };
            }
        }
        &__modal-list{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin: 0;
            margin-top: 0.2rem;
            li{
                padding: 0;
                margin-bottom: spacing(-2,0.1);
                @include set-font(1, "single", $weight: "normal",$transform: "none", $max-width: 3); 
                &::before {
                    display: none;
                    width: 0;
                    height: 0;
                }
            } 
            a {
                font-family: 'Roboto Serif', sans-serif;
            } 
        }
    }
    
    hr {
        border-color: black;
        margin-top: 0;
    }
    
    .modal-view {
        background-color: color('shadow');
        padding: 0;
        height: 100%;
        width: 100%;
        &__body {
            height: auto;
            margin: 2rem;
            margin-top: 2rem;
        }
        a.a--text-link {
            background-image: none;
            cursor: pointer;
        }
    } 
    
    .bar-container {
        display: none;
    }
    
    .form__field--inline-label:not(.form__field--horizontal){
        border: 2px solid black;
    }
    
    form {
        font-family: 'Roboto Serif', sans-serif;
    }
    
    .language-toggle{
        @include set-font(0, "multiple", $weight: "bold");
        cursor: pointer;
        font-family: 'Poppins', sans-serif; 
        font-weight: 1000; 
        font-size: 1.1rem;
        a.a--text-link  {
            text-decoration: none;
            background-image: none;
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            text-transform: uppercase;
        }
    }
    
    .search-button {
        cursor: pointer;
        margin-left: 1rem;
        margin-top: -0.1rem;
        font-size: 1.1rem;
        font-family: 'Font Awesome\ 5 Free';
        @include icon-style($style: "solid", $position: "after") {
            content: "\f002"
        };
    }
    
    .news-story {
        &__main {
            display: flex;
            flex-direction: column;
            height: auto;
            outline: black solid 0.1rem;
            outline-offset: -$outline-offset;
            margin-bottom: spacing(0);
            overflow-y: hidden; 
            cursor: pointer;
        }
        &__normal {
            display: flex;
            flex-direction: column;
            height: auto;
            outline: black solid 0.1rem;
            outline-offset: -$outline-offset;
            margin-bottom: spacing(0);
            overflow-y: hidden; 
            cursor: pointer;
        }
        &__image {
            width: 100%;
            height: auto;
            vertical-align: top; 
            outline: black solid 0.05rem;
            outline-offset: -$outline-offset;
        }
        &__image-container {
            overflow: hidden;
            outline: black solid 0.1rem;
            outline-offset: -$outline-offset;
        }
        &__titel { 
            @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            margin: spacing(-2);
            margin-top: 1.1rem;
            margin-bottom: -0.2rem;
            display: -webkit-inline-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
        }
        &__sub-titel { 
            @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            margin: spacing(-2);
            margin-bottom: -0.5rem;
            display: -webkit-inline-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 8;
            overflow: hidden;
        }
        &__card-titel { 
            @include set-font(0, "single", $weight: "bold",$transform: "none", $max-width: 3); 
            margin-top: 0.2rem;
            display: -webkit-inline-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            font-size: 1.2rem;
        }
        &__card-date { 
            margin-left: spacing(-2);
            margin-right: spacing(-2);
            margin-top: 0.4rem;
            font-size: 0.6rem;
            font-family: 'Poppins', sans-serif; 
            font-weight: 900;
            text-transform: uppercase;
        }
        &__date-main { 
            margin: spacing(-2);
            margin-bottom: 0.05rem;
            @include set-font(-1, "single", $weight: "normal", $transform: "uppercase", $max-width: 3);  
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            font-size: 0.6rem;
        }
        &__date-normal { 
            margin: spacing(-2);
            margin-bottom: 0.05rem;
            @include set-font(-1, "single", $weight: "normal", $transform: "uppercase", $max-width: 3);  
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            font-size: 0.6rem;
        }
        &__main-teaser { 
            margin: spacing(-2);
            @include set-font(-1, "single", $weight: "normal", $transform: "none", $max-width: 3);  
            display: -webkit-inline-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
            font-family: 'Roboto Serif', sans-serif;
        }
        &__sub-teaser { 
            margin: spacing(-2);
            @include set-font(-1, "single", $weight: "normal", $transform: "none", $max-width: 3);  
            display: -webkit-inline-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 4;
            overflow: hidden;
            font-family: 'Roboto Serif', sans-serif;
        }
    }
    
    .button {
        color: black;
        background-color: white;
        outline: black solid 0.05rem;
        outline-offset: -$outline-offset;
        box-shadow: none;
        &:hover {
            color: white;
            background-color: black;
            border: black;
            outline: black solid 0.05rem;
            outline-offset: -$outline-offset;
        }
        &:active {
            color: white;
            background-color: grey;
            border: black;
        }
    }
    
    .horizontal-scroll{
        margin-top: spacing(1);
        margin-bottom: spacing(1);
    }
    
    .card {
        height: 16rem;
        outline: black solid 0.1rem;
        outline-offset: -$outline-offset;
        &__image-container {
            overflow: hidden;
            height: 45%;
            min-height: 9rem;
        }
        img {
            width: 100%;
            outline: none;
            overflow: hidden;
            padding: 0.07rem;
            padding-left: 0.06rem;
        }
        h3 {
            margin-left: spacing(-2);
            margin-right: spacing(-2);
            @include set-font(-1, "single", $weight: "bold", $transform: "none", $max-width: 3);
        }
    }
    
    .card__content {
        display: flex;
        flex-direction: column;
        position: relative;
        border-top: none;
        a.a--text-link {
            background-image: none;
            cursor: pointer;
        }
    }
    
    a.a--text-link {
        height: 10rem;
        &:hover {
            color: black;
        }
        &:active {
            color: black;
        }
        } 
        .search-option {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-bottom: spacing(1);
            h3 {
                @include set-font(1, "single", $weight: "normal",$transform: "none", $max-width: 3); 
                margin-bottom: -1rem;
                text-align: center;
                font-family: 'Roboto Serif', sans-serif;
                strong {
                    font-family: 'Poppins', sans-serif; 
                    font-weight: 1000; 
                }
            }
            a.a--text-link {
        &:hover {
          color: black;
        }
        &:active {
          color: black;
        }
        background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
      } 
          }
    .news-event__image {
        a.a--text-link {
            height: auto;
        }      
    }
    .omnibus-footer{
        display: flex;
        justify-content: center;
        align-self: center;
        flex-direction: column;
        div {
            width: 100%;
            justify-content: center;
        }
        h4 {
            margin: 0;
            margin-bottom: spacing(-2);
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
            font-size: 1.5rem;
        }
        p {
            @include set-font(-1, "single", $weight: "normal");
            font-size: 1rem;
            line-height: line-height("single"); 
            max-width: 90%;
            font-family: 'Roboto Serif', sans-serif;
        }
        strong {
            @include set-font(-1, "single", $weight: "normal");
            font-size: 1rem;
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
        }
        &__column {
            position: relative;
            height: auto;
        }
        .link-bar {
            width: 100%;
            margin: 0;
            margin-top: 0;
            margin-bottom: 0;
            img {
                height: 2rem;
                margin-right: 1.2rem;
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
            }
        }
        a.a--text-link {
            &:hover {
                color: black;
            }
            &:active {
                color: black;
            }
            background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
            } 
        }
        .form__inline-submit__button:focus-visible {
            display: none;
        }
    }
    
@include breakpoint("wide") {

.omnibus {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 2100px;
    margin: auto;
    .typo3-delphinus iframe {
        width: 100%;
    }
}

.page-wrapper {
    margin-left: spacing(2,0.6);
    margin-right: spacing(2,0.6);
    margin-top: spacing(-2);
}

.omnibus-margin {
    margin-left: spacing(2,1.2);
    margin-right: spacing(2,1.2);
    margin-bottom: spacing(2,0.5);
}

.omnibus_debate {
    h1, p {
        margin: 0;
    }

    h1 {
        min-height: 4rem;
    }

    p {
        margin-bottom: 0.8rem;
    }   

    h3, h6 {
        margin-left: 0;
        margin-right: 0;
    }
}

.omnibus-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -1rem;
    a.a--text-link {
        background-image: none;
        cursor: pointer;
    }
    &__list {
        ul {
            display: flex;
            flex-direction: column;
            align-items: end;
            margin: 0;
        }
        li{
            margin: 0;
            @include set-font(0, "single", $weight: "normal",$transform: "none", $max-width: 3); 
            &::before {
                display: none;
            }
        }  
        a {
            font-family: 'Roboto Serif', sans-serif;
        }
    }
    &__logo-dot {
        height: 6rem;
        width: 6rem;
        display: inline;
    }
    &__logo-titel {
        height: auto;
        width: 28rem;
        margin-top: spacing(-2);
        display: inline;
    }
    &__menu{
        display: none;
        visibility: hidden;
        width: 0;
        height: 0;
    }
    &__mobile-options {
        display: none;
        width: 0;
        height: 0;
    }
    &__mobile-scroll {
        display: none;
        height: 0;
        width: 0;
        &--show {
            display: none;
        }
        &--hide {
            display: none;
        }
    }
}

hr {
    margin-top: spacing(-1);
    border-color: black;
}

.bar-container {
    display: flex;
    justify-content: end;
    align-items: center;
    font-family: 'Poppins', sans-serif; 
    font-weight: 1000; 
    margin-top: -3.5rem;
    margin-bottom: 2rem;
    min-height: 5.2rem;
}

form {
    font-family: 'Roboto Serif', sans-serif;
}

.form__field--inline-label:not(.form__field--horizontal){
    border: 2px solid black;
}

.language-toggle{
    @include set-font(0, "single", $weight: "bold");
    cursor: pointer;
    margin-right: 0.5rem;
    font-family: 'Poppins', sans-serif; 
    font-weight: 1000; 
    a.a--text-link  {
        text-decoration: none;
        background-image: none;
        font-family: 'Poppins', sans-serif; 
        font-weight: 1000; 
        text-transform: uppercase;
    }
    &:focus-visible {
        outline: $outline-width solid color("utility-focus");
        outline-offset: $outline-offset;
    }
}

.search-button {
    cursor: pointer;
    margin: 0;
    padding: 0;
    margin-left: 1rem;
    margin-top: -0.2rem;
    font-size: 1rem;
    @include icon-style($style: "solid", $position: "after") {
        content: "\f002"
    };
    &:focus-visible {
        outline: $outline-width solid color("utility-focus");
        outline-offset: $outline-offset;
    }
    &::after {
        content: '\f002';
        font-weight: 900;
    }
}

.modal-view {
    background-color: color('shadow');
    .nav--site-nav{
        margin-right: 3rem;
        margin-top: 2rem;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 5rem;
    }
}

.main-grid {
    display: grid; 
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.2rem;
    height: 100%;
    margin-bottom: spacing(2,0.5);
    }

.omnibus_debate {
    .news-story {
        &__main { 
            display: block;
            outline: none;
        }
    }
}


.news-story {
    &__main {
        outline: black solid 0.1rem;
        outline-offset: -$outline-offset;
        overflow-y: hidden; 
        cursor: pointer;
        margin-bottom: spacing(-1);
        grid-row-start: 1;
        grid-column-start: 1;
        grid-row-end: 3;
        grid-column-end: 3;
        height: auto;
    }
    &__normal{
        cursor: pointer;
        &--0{
            grid-row-start: 3;
            grid-column-start: 1;
            grid-row-end: 4;
            grid-column-end: 2;
        }
        &--1{
            grid-row-start: 3;
            grid-column-start: 2;
            grid-row-end: 4;
            grid-column-end: 3;
        }
        &--2{
            grid-row-start: 4;
            grid-column-start: 1;
            grid-row-end: 5;
            grid-column-end: 2;
        }
        &--3{
            grid-row-start: 4;
            grid-column-start: 2;
            grid-row-end: 5;
            grid-column-end: 3;
        }
        &--4{
            grid-row-start: 5;
            grid-column-start: 1;
            grid-row-end: 6;
            grid-column-end: 2;
        }
        &--5{
            grid-row-start: 5;
            grid-column-start: 2;
            grid-row-end: 6;
            grid-column-end: 3;
        }
        .news-container {
            max-height: none;
        }
    }
    &__image {
        width: 100%;
        height: auto;
        vertical-align: top; 
    }
    &__image-container {
        max-height: 70%;
        overflow: hidden;
        outline: black solid 0.1rem;
        outline-offset: -$outline-offset;
        &--max-size {
            max-height: 45rem;
        }
    }
    &__titel { 
        @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
        margin: spacing(-2);
        font-family: 'Poppins', sans-serif;
        font-weight: 1000; 
        font-size: 2rem;
        @include breakpoint("max-width") {
            font-size: 2.9rem; 
          }
        text-transform: uppercase;
    }
    &__sub-titel { 
        @include set-font(1, "single", $weight: "bold",$transform: "none", $max-width: 3); 
        margin-top: 0.3rem;
        display: -webkit-inline-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        font-family: 'Poppins', sans-serif; 
        font-weight: 900;
        font-size: 1.3rem; 
        @include breakpoint("max-width") {
            font-size: 1.9rem; 
          }
        text-transform: uppercase;
    }
    &__card-titel { 
        margin-top: 0.3rem;
        margin-left: spacing(-2);
        margin-right: spacing(-2);
        font-size: 0.75rem;
        font-family: 'Poppins', sans-serif; 
        font-weight: 800;
        align-items: end;
        text-transform: uppercase;
        display: -webkit-inline-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
    &__card-date { 
        margin-left: spacing(-2);
        margin-right: spacing(-2);
        margin-top: 0.4rem;
        font-size: 0.6rem;
        font-family: 'Poppins', sans-serif; 
        font-weight: 900;
        text-transform: uppercase;
    }
    &__date-main { 
        margin: spacing(-2);
        margin-top: 1rem;
        @include set-font(-1, "single", $weight: "normal", $transform: "uppercase", $max-width: 3);  
        font-family: 'Poppins', sans-serif; 
        font-weight: 1000; 
        text-transform: uppercase;
        font-size: 0.7em;
    }
    &__date-normal { 
        @include set-font(-1, "single", $weight: "normal", $transform: "uppercase", $max-width: 3);
        margin: 0;
        margin-top: 0.7rem;
        font-family: 'Poppins', sans-serif; 
        font-weight: 1000; 
        text-transform: uppercase;
        font-size: 0.6rem;
    }
    &__main-teaser { 
        margin: spacing(-2);
        margin-top: 0;
        @include set-font(0, "multiple", $weight: "light", $transform: "none", $max-width: 3);  
        font-size: 1rem;
        font-family: 'Roboto Serif', sans-serif;
        display: -webkit-inline-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    &__sub-teaser { 
        display: none;
        width: 0;
        height: 0;
        margin: spacing(-2);
        @include set-font(0, "single", $weight: "normal", $transform: "none", $max-width: 3);  
        font-size: 1rem;
    }
}

.button {
    color: black;
    background-color: white;
    outline: black solid 0.05rem;
    outline-offset: -$outline-offset;
    box-shadow: none;
    &:hover {
        color: white;
        background-color: black;
        border: black;
        outline: black solid 0.05rem;
        outline-offset: -$outline-offset;
    }
    &:active {
        color: white;
        background-color: grey;
        border: black;
    }
}

.horizontal-scroll{
    margin-top: -1.7rem;
    margin-bottom: 5rem;
}

.card {
    height: 15rem;
    outline: black solid 0.1rem;
    outline-offset: -$outline-offset*2;
    &__image-container {
        overflow: hidden;
        height: 45%;
        min-height: 9rem;
        max-height: 12rem;
    }
    img {
        width: 100%;
        outline: none;
        overflow: hidden;
        padding: 0.13rem;
        padding-left: 0.14rem;
    }
}

.card__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: none;
    a.a--text-link {
        background-image: none;
        cursor: pointer;
    }
}

a.a--text-link {
    &:hover {
        color: black;
    }
    &:active {
        color: black;
    }
    } 

    .search-option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    h3 {
        @include set-font(1, "single", $weight: "normal",$transform: "none", $max-width: 3); 
        margin-left: 2.6rem;
        font-family: 'Roboto Serif', sans-serif; 
        text-align: center;
        strong {
            font-family: 'Poppins', sans-serif; 
            font-weight: 1000; 
        }
    }
    a.a--text-link {
        &:hover {
            color: black;
        }
        &:active {
            color: black;
        }
        background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
        } 
    }

    .omnibus-footer{
    display: flex;
    justify-content: space-evenly;
    align-self: center;
    div {
        margin: spacing(-2);
        width: 25%;
    }
    h4 {
        margin: 0;
        height: 2rem;
        margin-bottom: 1rem;
        font-family: 'Poppins', sans-serif; 
        font-weight: 1000; 
    }
    p {
        line-height: line-height("single"); 
        font-family: 'Roboto Serif', sans-serif;
        font-size: 1rem;
        margin-bottom: 0;
    }
    strong {
        font-family: 'Poppins', sans-serif; 
        font-weight: 1000; 
        font-size: 1rem;
    }
    &__column {
        position: relative;
        height: auto;
    }
    .link-bar {
        position: absolute; 
        bottom: 0; 
        width: 100%; 
        margin: 0;
        img {
            height: 1.8rem;
            margin-right: 0.9rem;
        }
    }
    a.a--text-link {
        &:hover {
            color: black;
        }
        &:active {
            color: black;
        }
        background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
        } 
    }
    .form__inline-submit__button:focus-visible {
    display: none;
    }
}
