/*
Theme Name: Salient Child Theme
Theme URI: http: //mysite.com/
Description: This is a custom child theme for Salient
Author: My Name
Author URI: http: //mysite.com/
Template: salient
Version: 0.1
*/

@import url("../salient/style.css");

:root {
    --color-primary-red: #E6001E;
    --color-primary-royal-blue: #0056A4;
    --color-primary-ink-blue: #002249;
    --color-primary-aero-light: #D4E7F8;
    --color-text-default: #291D1E;
    --color-secondary-grey-1: #B3B2B2;
    --color-secondary-grey-2: #727271;
    --color-secondary-grey-3: #4D4D4C;
    --color-secondary-light-grey: #EBEBEB;
    --color-bg-highlight: #FAF7F7;
    --color-accent-green: #6FC700;
    --color-comment-box-outline: #D4E7F8;
    --color-comment-box-bg: rgba(212, 231, 248, .24);
    --category-color: #000;
	--color-alert-success-bg: #ebffd0;
	--color-alert-success-border: #bbc6a3;
	--color-alert-warning-bg: #fffad9;
	--color-alert-warning-border: #c9c3a9;
	--color-alert-error-bg: #fdd3db;
	--color-alert-error-border: #c7a6ac;
}

html {
	scroll-behavior: auto !important; /* verhindert "smooth" Chaos */
}

h1, h2, h3, h4, h5, h6 {
	color: #000;
}


.bs-row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.bs-row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.bold, strong, b {
    font-weight: 500;
}

article.post .post-meta .month {
    line-height: 13px;
}

article.post .post-header h3 a:hover {
    color: #E6001E;
}

article.post .post-header h3 a {
    color: #000;
}

article.post .post-header .category-widget-title {
	background: var(--category-color);
	color: #fff;
	padding: 5px 10px;
	font-size: 11px;
	font-weight: 500;
	line-height: 11px;
	margin-right: 10px;
	margin-bottom: 15px;
	display: inline-block;
}

.container-home-recent-posts article.post .post-header .category-widget-title {
	margin-bottom: 5px;
	margin-right: 5px;
}

article.post .excerpt {
    line-height: 23.4px;
}

.search-result-pagination #pagination,
.post-area #pagination {
    padding-left: 0;
    display: flex;
}


.search-result-pagination #pagination a.page-numbers,
.search-result-pagination #pagination span.page-numbers,
.search-result-pagination #pagination a.page-numbers.current,
.search-result-pagination #pagination span.page-numbers.current,
.post-area #pagination a.page-numbers,
.post-area #pagination span.page-numbers,
.post-area #pagination a.page-numbers.current,
.post-area #pagination span.page-numbers.current {
    border: 1px solid var(--color-secondary-grey-1);
    height: 36px;
    min-width: 36px;
    background: #fff !important;
    box-shadow: none;
    margin: 0;
    line-height: 14px;
    margin-right: -1px;
}

.search-result-pagination #pagination a.page-numbers.current,
.search-result-pagination #pagination span.page-numbers.current,
.post-area #pagination a.page-numbers.current,
.post-area #pagination span.page-numbers.current {
    background: var(--color-bg-highlight) !important;
}

.search-result-pagination #pagination a.page-numbers,
.search-result-pagination #pagination span.page-numbers,
.post-area #pagination a.page-numbers,
.post-area #pagination span.page-numbers {
    color: var(--color-text-default) !important;
}

.search-result-pagination #pagination a.page-numbers.current,
.search-result-pagination #pagination span.page-numbers.current,
.post-area #pagination a.page-numbers.current,
.post-area #pagination span.page-numbers.current {
    color: var(--color-primary-red) !important;
}

.search-result-pagination #pagination > .page-numbers:first-child,
.post-area #pagination > .page-numbers:first-child {
    /* linker Rand */
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.search-result-pagination #pagination > .page-numbers:last-child,
.post-area #pagination > .page-numbers:last-child {
    /* rechter Rand */
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search-result-pagination #pagination .page-numbers.dots,
.post-area #pagination .page-numbers.dots {
    border: none;
    margin-right: 0;
}

.search-result-pagination #pagination .page-numbers.prev,
.search-result-pagination #pagination .page-numbers.next,
.post-area #pagination .page-numbers.prev,
.post-area #pagination .page-numbers.next {
    padding-left: 8px !important;
    padding-right: 8px !important;
    min-width: 0;
}

.search-result-pagination #pagination .page-numbers.prev i,
.search-result-pagination #pagination .page-numbers.next i,
.post-area #pagination .page-numbers.prev i,
.post-area #pagination .page-numbers.next i {
    font-size: 10px !important;
}

.search-result-pagination #pagination .page-numbers.prev,
.post-area #pagination .page-numbers.prev {
    border-color: rgba(179, 178, 178, .38);
}

#related-posts {
    background: var(--color-primary-aero-light);
    padding: 40px 0;
}

#related-posts h3 {
    font-weight: 500;
    font-size: 36px;
    text-align: center;
    line-height: 40px;
    margin-bottom: 20px;
}

#related-posts ul {
    list-style-type: none;
    gap: 15px;
    padding: 0;
    margin: 0;
}

#related-posts ul li {
    background: #fff;
    border: 1px solid var(--color-secondary-light-grey);
    padding: 15px;
    list-style-type: none;
    width: 100%;
    display: inline-block;
	margin-bottom: 15px;
}

#related-posts ul li a {
    color: var(--color-text-default);
}

#related-posts ul li a h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .25px;
}

#related-posts ul li a p {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .5px;
    margin: 0;
    color: var(--color-secondary-grey-3);
}

#related-posts ul li a img {
    aspect-ratio: 71 / 37;
    object-fit: cover;
    width: 100%;
}

@media screen and (min-width: 1000px){
	#related-posts .container {
		padding: 0 90px !important;
	}
	
	#related-posts ul {
		display: flex;
	}
	
	#related-posts ul li {
		width: 33%;
		margin-bottom: 0;
	}
}

/*#pagination a.page-numbers, #pagination span.page-numbers {*/
/*    border: 1px solid var(--color-secondary-grey-1);*/
/*}*/

#sidebar {
    /*background-color: white;*/
    /*padding: 16px;*/
    /*box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.07);*/
}

#sidebar .category-widget-title {
    background: var(--category-color);
    color: #fff;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 500;
    position: absolute;
    line-height: 11px;
    right: 0;
    top: 15px;
}

.post .post-meta .date {
    border-bottom: 0;
}

.post .post-meta .day {
    color: #E6001E;
}

.post .more-link span,
.blog-recent .more-link span,
.single .post-content .nectar-button[data-color-override="false"].regular-button {
    background-color: transparent !important;
    border: 1px solid #E6001E;
    font-family: "EuclidFA", Arial, sans-serif;
    color: #E6001E;
}

.post .more-link span:hover,
.blog-recent .more-link span:hover,
.single .post-content .nectar-button[data-color-override="false"].regular-button:hover {
    background-color: #E6001E !important;
    font-family: "EuclidFA", Arial, sans-serif;
    color: #fff;
}

/*
.single .post-content .wpb_text_column h2::before {
    content: "\f550";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    margin-left: -45px;
}
*/

.single p.lead {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 28px !important;
    letter-spacing: .5px !important;
    margin-bottom: 20px;
}

body #sidebar h4,
body .widget h4 {
    font-size: 16px;
    color: #333;
}

body #sidebar h4 {
    border-top: 1px solid var(--color-secondary-light-grey);
    border-bottom: 1px solid var(--color-secondary-light-grey);
    line-height: 28px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .5px;
    padding: 10px 0;
    opacity: 1;
}

.yarpp-thumbnail img.attachment-yarpp-thumbnail {
    margin-bottom: 5px;
}

.yarpp-thumbnail .yarpp-thumbnail-title {
    color: #000;
}

.yarpp-thumbnail .yarpp-thumbnail-title:hover {
    color: #E6001E;
}

#author-bio p {
    line-height: 23.4px;
}

#sidebar a {
    color: #000;
    line-height: 23.4px;
}

#sidebar a:hover {
    color: #E6001E;
    line-height: 23.4px;
}

#sidebar p,
#sidebar small {
    padding-bottom: 5px;
    line-height: 23.4px;
}

#sidebar small {
    font-size: 10px;
    line-height: 1.2;
}

#sidebar button[type=submit],
#submit,
.wpcf7-form input[type=submit] {
    margin-top: 10px;
    border: 1px solid transparent;
    background: #E6001E;
    font-family: "EuclidFA", Arial, sans-serif;
    font-size: 12px;
}

#sidebar button[type=submit]:hover,
#submit:hover,
.wpcf7-form input[type=submit]:hover {
    background-color: transparent !important;
    border: 1px solid #E6001E;
    font-family: "EuclidFA", Arial, sans-serif;
    color: #E6001E;
}

#sidebar div ul li {
    padding: 0;
    border: none;
}

#footer-outer {
    background: var(--color-primary-aero-light) !important;
}

#footer-outer .row {
    padding: 10px 0;
}

#footer-outer #newsletter-widget {
    background: #fff;
	border-top: 1px #dedede solid;
}

#footer-outer .widget.widget_pages li a,
#footer-outer .widget.widget_nav_menu li a {
    border-bottom: 0;
    padding: 10px 0px;
}

#footer-outer .widget h4 {
    font-weight: 16px;
}

#footer-outer #copyright .container div:last-child {
    display: none;
}

#footer-outer #copyright .col {
    width: 100%;
    font-weight: bold
}

body.original #footer-outer #footer-widgets .col ul li,
#footer-outer .widget.widget_nav_menu li a,
#footer-outer #footer-widgets .col ul ul li:last-child {
    border: none !important;
}

#footer-outer .widget h4 {
    font-size: 16px;
    font-weight: 500;
}

body #header-outer #mobile-menu:before {
    background-color: #1F1F1F;
}

body #header-outer #mobile-menu ul li a {
    color: rgba(255, 255, 255, 0.6) !important;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

body #header-outer #mobile-menu ul li a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

body header .col.span_9 .logo-spacing {
    display: none;
}

body header .search-form {
    position: relative;
}

body header#top .container > .row {
    align-items: center;
}

body header .search-form input {
    border: 1px solid var(--color-secondary-grey-1);
    background: #fff;
    height: 40px;
    width: 160px;
    margin-right: 40px;
}

body header .search-form button {
    border: 1px solid var(--color-primary-red);
    background: var(--color-primary-red);
    color: #fff;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
}

@media screen and (max-width: 999px){
	body header .search-form {
		display: none;
	}
	body header #mobile-menu .search-form,
	body header #mobile-search .search-form {
		display: block;
	}
}

body header #mobile-menu .search-form {
    padding-bottom: 20px;
}

body header #mobile-menu .search-form input,
body header #mobile-search .search-form input {
    width: calc(100% - 40px);
}

body header #mobile-search {
	display: none;
	padding-top: 15px;
}

body header #mobile-search-toggle {
	color: #291D1E !important;
	font-size: 20px;
	margin-top: 5px;
	margin-right: 10px;
}

@media screen and (min-width: 1000px){
	body header #mobile-menu .search-form,
	body header #mobile-search .search-form,
	body header #mobile-search-toggle {
		display: none;
	}
}

.single .post-content {
    line-height: 23.4px;
}

/*
.comments-section .comment-wrap {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px #dedede solid;
}
*/

p.comment-hint {
	padding: 0;
	margin-top: 10px;
}

.comment-form label {
    display: inline-block;
    padding-bottom: 10px;
}

#author-bio {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

body #boxed #page-header-bg {
    background-color: transparent;
    height: 120px;
    text-align: left;
    border-bottom: 1px solid #dedede;
}

#page-header-bg span {
    color: #888;
}

#search-results .result .title a {
    background-image: none !important;
    color: #000 !important;
}

#search-results .result .title a:hover {
    color: #E6001E !important;
}

.nectar_single_testimonial {
    padding: 15px;
}

.nectar_single_testimonial span, body .testimonial_slider blockquote span {
    font-weight: 500;
    color: var(--color-text-default);
}

.nectar_single_testimonial p {
    font-weight: 300;
    font-size: 16px;
    letter-spacing: .25px;
    color: var(--color-primary-ink-blue);
}

.vc_column-inner p,
.vc_column-inner li,
.vc_column-inner .iwt-text {
    line-height: 23.4px;
}

.inspiration {
    margin: 0 auto;
    max-width: 1200px;
}

@media screen and (min-width: 480px) {
    .inspiration .grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }

    .inspiration .cell {
        display: flex;
        flex: 1 1 50%;
    }
}

@media screen and (min-width: 600px) {
    .inspiration .grid {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
    }

    .inspiration .cell {
        display: flex;
        flex: 1 1 33.3%;
    }
}

.inspiration .cell {
    position: relative;
    padding: 0.5vw;
    min-width: 300px;
}

.inspiration .cell a {
    position: relative;
    display: block;
    border: 1px solid #e5e5e5;
    color: black;
    text-decoration: none !important;
}

.inspiration .cell img {
    display: block;
}

.inspiration .cell iframe {
    height: 145px;
}

.inspiration .cell__container {
    position: relative;
    overflow: hidden;
    max-width: 340px;
    border: 1vw solid white;
}

.inspiration .cell__image {
    display: block;
}

.cell__caption {
    opacity: 0;
    background: rgba(0, 0, 0, 0.33);
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 12px;
    transition: 0.5s opacity ease-in-out;
}

.inspiration .cell__container:hover .cell__caption {
    opacity: 1;
    background: rgba(0, 0, 0, 0.33);
}

.inspiration .cell__container .cell__image img {
    transform: scale(1);
    transition: 0.5s transform ease-in-out;
}


.inspiration .cell__container:hover .cell__image img {
    transform: scale(1.2);
}

.inspiration .cell__description {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.inspiration .cell__title {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 1.2 !important;
}

.inspiration img {
    width: unset;
}

.inspiration .responsive-image {
    max-width: 100%;
}

.inline {
    display: none;
    max-width: 90vw;
}

.responsive-image {
    width: 100%;
}

.page-numbers {
    font-family: "EuclidFA", Arial, sans-serif !important;
}

/* YARPP */
.yarpp-related h3 {
    text-transform: none !important;
}

/* Fix blurred image in sidebar */
#sidebar > .widget_media_image img {
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

/* Fix newsletter subscription line-height in sidebar */
#fa-plugin-newsletter-sign-up-container-form a {
    line-height: 1;
}

.flit-newsletter-sign-up-container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.flit-newsletter-sign-up-container #flit_newsletter_email {
    margin-top: 9px;
}

.flit-newsletter-sign-up-container p {
    line-height: 1.2 !important;
}


.flit-newsletter-sign-up-container .small {
    /*padding-top: 9px;*/
}

.flit-newsletter-sign-up-container .flit-newsletter-sign-up-input {
    padding-bottom: 9px;
}

.flit-newsletter-sign-up-container .legal,
.flit-newsletter-sign-up-container .voucher {
    padding-top: 9px !important;
    font-size: 9px !important;
    line-height: 9px !important;
}

.flit-plugin-newsletter-sign-up-container .flit-newsletter-sign-msg-text {
    padding-top: 9px
}

.flit-newsletter-sign-up-container .voucher a {
    line-height: 1 !important;
}

.flit-newsletter-sign-up-container .flit-newsletter-sign-msg {
    margin-top: 10px;
}

/* Social Icons */
#sidebar .wp-block-social-links .wp-social-link {
    position: relative;
    background-color: #E6001E !important;
    border-radius: 4px !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
}

#sidebar .wp-block-social-links .wp-social-link .wp-block-social-link-anchor {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff !important;
    padding: 0.25em !important;
}

#sidebar .wp-block-social-links .wp-social-link:hover {
    background-color: #000 !important;
}

#sidebar .wp-block-social-link .wp-block-social-link-label {
    display: none !important;
}

.container-wrap, .project-title {
    background: none;
}

.fill-primary {
    fill: var(--color-primary-red);
}

.flyeralarm_footer_social svg {
    height: 24px;
    max-width: 100%;
}

.flyeralarm_footer_social .social-icons {
    margin-top: 15px;
}

.flyeralarm_footer_social .social-icons i {
    font-size: 36px;
    margin-right: 10px;
}

.row .col.section-title {
    border: none;
}

.row .col.section-title h1 {
    border: none;
    font-size: 42px;
    color: var(--category-color);
    font-weight: 500;
}

.row .col.section-title p {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .5px;
}

.row .col.section-title .subheader {
    display: none !important;
}

.page-header-no-bg {
    background: none !important;
}

.post-content {
    padding-left: 0;
}

.post .post-content.classic .content-inner {
    border: none;
    padding-bottom: 0;
}

.post .post-content.classic .content-inner .post-header span a {
    text-decoration: underline;
}

.blog-recent .more-link span, .post .more-link span {
    padding: 10px 16px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: .5px;
    font-size: 14px;
}


#newsletter-widget {
    text-align: center;
}

#newsletter-widget h4 {
    font-size: 36px !important;
    color: #0a0a0a !important;
    margin-bottom: 30px !important;
}

#newsletter-widget .flit-newsletter-sign-up-container .flit-newsletter-sign-up-text .small {
    font-size: 24px;
}

#newsletter-widget .flit-newsletter-sign-up-container .flit-newsletter-sign-up-text2 .small {
    font-size: 16px;
}

#newsletter-widget .flit-newsletter-sign-up-container .flit-newsletter-voucher .darkgrey {
    color: var(--color-secondary-grey-2);
}

#newsletter-widget .flit-newsletter-sign-up-container .flit-newsletter-voucher .darkgrey a {
    color: var(--color-secondary-grey-2) !important;
    text-decoration: underline;
}

#newsletter-widget .flit-newsletter-sign-up-container .flit-newsletter-voucher {
    text-align: left;
    font-size: 12px;
    margin-top: 30px;
}

#newsletter-widget .flit-newsletter-sign-up-container .flit-newsletter-voucher p {
    padding: 0;
    font-size: 12px !important;
    line-height: 16px !important;
}

#newsletter-widget .flit-newsletter-submit-container {
    display: flex;
    width: 600px;
    margin: 0 auto;
    max-width: 100%;
}

#newsletter-widget .flit-newsletter-submit-container div {
    display: flex;
    align-items: center;
}

#newsletter-widget .flit-newsletter-submit-container .flit-newsletter-sign-up-input input,
#newsletter-widget .flit-newsletter-submit-container .flit-newsletter-sign-up-submit button {
    height: 36px;
    padding: 0 16px;
}

#newsletter-widget .flit-newsletter-submit-container .flit-newsletter-sign-up-submit button {
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: .5px;
    font-weight: 500;
    background: var(--color-primary-red);
}

#newsletter-widget .flit-newsletter-sign-up-benefits {
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    margin-top: 40px;
}

#newsletter-widget .flit-newsletter-sign-up-benefits i {
    color: var(--color-accent-green);
    margin-right: 10px;
}


.container-home-recent-posts .posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px !important;
}

.container-home-recent-posts .posts-container article {
    flex: 1 1 calc(33.333% - 32px);
    padding: 24px;
    border: 1px solid var(--color-secondary-light-grey);
}

.container-home-recent-posts .posts-container article .content-inner {
    margin: 0 !important;
}

.container-home-recent-posts .posts-container article .content-inner .post-featured-img img {
    object-fit: cover;
	object-fit: cover;
    aspect-ratio: 71 / 37;
	transition: transform .5s ease;
	will-change: transform;
}

.container-home-recent-posts .posts-container article .content-inner .post-featured-img img:hover {
    transform: scale(1.05);
}

.container-home-recent-posts .posts-container article .content-inner .excerpt,
.container-home-recent-posts .posts-container article .content-inner .more-link {
    display: none !important;
}

.container-home-recent-posts .posts-container article .content-inner .post-header h3 {
    font-size: 16px;
    line-height: 24px;
}

.container-home-recent-posts .section-title {
    padding: 0 !important;
}

.container-home-recent-posts .section-title h2,
.container-home-podcasts .section-title h2 {
    font-size: 36px !important;
    font-weight: 500 !important;
}

.container-home-podcasts .section-title h2 {
    margin-bottom: 25px !important;
}

.container-home-podcasts .section-title p {
    font-size: 16px !important;
}

.post-content .post-featured-img {
	display: block;
	overflow: hidden;
	aspect-ratio: 71 / 37;
	margin-bottom: 15px;
}
.post-content .post-featured-img > img:hover {
    transition: transform .5s ease;
	will-change: transform;
}
.post-content .post-featured-img > img:hover {
    transform: scale(1.05);
}



body #header-secondary-outer .nectar-center-text {
    text-align: right;
    max-width: none;
    padding: 0;
    font-size: 16px;
    letter-spacing: .25px;
}

body.single-post .post-area .iwithtext,
body.single-post .post-area .iwithtext .iwt-icon > i {
    color: var(--color-secondary-grey-3);
}

body.single-post .post-area .post-index {
    background: var(--color-bg-highlight);
    padding: 30px;
}

body.single-post .post-area .post-index a {
    color: var(--color-secondary-grey-3) !important;
    text-decoration: underline;
    font-weight: 400;
    margin-bottom: 15px;
    display: inline-block;
    margin-left: 75px;
}

body.single-post .post-area .post-index a::before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    margin-left: -20px;
}


body.single-post .comment-list .comment-body {
    background: var(--color-comment-box-bg);
    border: 1px solid var(--color-comment-box-outline);
    box-shadow: none;
    padding: 20px;
}

body.single-post .comment-list .comment-body.be-user .comment-author,
body.single-post .comment-list .comment-body.be-user .comment-meta {
    padding-left: 55px;
}

body.single-post .comment-list .comment-body .comment-meta {
    color: var(--color-secondary-grey-3);
}

body.single-post .comment-list .comment-body .comment-author .says {
    display: none;
}

body.single-post .comment-list .comment-body .comment-author .avatar {
    position: absolute;
    left: 20px !important;
    top: 23px !important;;
    height: 42px !important;;
    width: 42px !important;;
    object-fit: cover;
    border-radius: 50%;
}

body.single-post .comment-list .comment-body .comment-text {
    margin-top: 25px;
    margin-bottom: 25px;
}

body.single-post .comment-list .children {
    border: none;
    background: none;
    position: relative;
}

body.single-post .comment-list .children::before {
    content: "\f149";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 3px;
    left: 3px;
    transform: rotate(-90deg) scaleX(-1);
    font-size: 20px;
}

body.single-post .comment-list .reply {
    position: relative;
    top: unset;
    right: unset;
    margin-top: 10px;
}

body.single-post .comment-list .reply a {
    color: var(--color-primary-royal-blue);
    border: 1px solid var(--color-primary-royal-blue);
    background: transparent !important;
    font-size: 12px;
    padding: 9px 12px;
    display: inline-block;
    transition: all .2s ease;
    box-shadow: none;
}

body.single-post .comment-list .reply a:hover {
    background: var(--color-primary-royal-blue) !important;
    color: #fff;
}

body.single-post .comment-wrap h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}

body.single-post .comment-wrap #comment-count {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .5px;
}

body.single-post #sidebar h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

body.single-post #sidebar p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .5px;
}

body.single-post #sidebar #author-info {
    position: relative;
}

body.single-post #sidebar #author-info h3 {
    padding-left: 50px;
}

body.single-post #sidebar #author-info img {
    position: absolute;
    left: 0;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    top: -11px;
}

body.single-post .post-meta {
    margin-bottom: 40px;
}

body.single-post .post-meta,
body.single-post .post-meta span {
    font-size: 12px !important;
}

body.single-post .post-meta span {
    padding-left: 10px;
    padding-right: 10px !important;
}

body.single-post .post-meta a {
    color: var(--color-secondary-grey-2);
}

.tabbed > ul, .wpb_content_element .tabbed .wpb_tabs_nav {
    border-bottom: 1px solid var(--color-secondary-light-grey);
}

.tabbed[data-style="default"] li:not(.cta-button) a {
    background-color: transparent !important;
    border: none;
    font-weight: 400;
    letter-spacing: .5px;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
}

.tabbed[data-style="default"] li:not(.cta-button) {
    margin-right: 16px;
}

.tabbed[data-style="default"] li:not(.cta-button) a {
	background: none !important;
}

.tabbed[data-style="default"] li:not(.cta-button) .active-tab {
    color: var(--color-primary-red);
    border: none;
}

.tabbed[data-style="default"] li:not(.cta-button) .active-tab::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: var(--color-primary-red);
}

.post-tags {
    padding: 15px;
    padding-bottom: 5px;
    border-top: 1px solid var(--color-secondary-light-grey);
    border-bottom: 1px solid var(--color-secondary-light-grey);
    position: relative;
}

.post-tags .reading-time {
    position: absolute;
    right: 0;
    bottom: 15px;
    display: inline-block;
}

.reading-time {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .5px;
    text-align: right;
}

.flyeralarm-tagcloud a,
.post-tags span {
    background: var(--color-primary-aero-light);
    color: var(--color-text-default) !important;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: .5px;
    padding: 8px 10px;
    display: inline-block;
    margin-bottom: 8px;
    margin-right: 10px;
}

.post-tags a:hover {
	background: none !important;
}


@media screen and (max-width: 768px) {
	.post-tags {
		padding-left: 0;
		padding-right: 0;
	}
	
	.post-tags span {
		margin-right: 4px;
		font-size: 15px !important;
		padding: 5px 10px !important;
	}
}

.flyeralarm-tagcloud a > .qty {
    color: var(--color-text-default) !important;;
    font-weight: 300;
    letter-spacing: .25px;
}

/* Container */
.share-buttons {
    display: flex;
    gap: 0.5rem; /* Abstand zwischen den Buttons */
    align-items: center;
    margin: 1rem 0;
}

/* Grundstil der Buttons */
.share-btn {
    font-size: 1.5rem; /* Icon-Größe */
    color: var(--color-secondary-grey-2) !important; /* Standard-Farbe */
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Facebook (Blau) */
.share-facebook:hover {
    color: #3b5998 !important;
}

/* Twitter (Hellblau) */
.share-twitter:hover {
    color: #1da1f2 !important;
}

/* LinkedIn (Dunkelblau) */
.share-linkedin:hover {
    color: #0077b5 !important;
}

/* WhatsApp (Grün) */
.share-whatsapp:hover {
    color: #25D366 !important;
}

/* Pinterest (Rot) */
.share-pinterest:hover {
    color: #E60023 !important;
}

/* E-Mail (Grau) */
.share-envelope:hover {
    color: #777 !important;
}

.btn-podcast img {
    height: 36px !important;
    width: auto !important;
    margin-right: 5px;
}

.single .heading-title {
    margin-bottom: 15px;
    padding: 0;
    border: none;
}


body #footer-outer .social-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    margin-top: 15px !important;
}

body #footer-outer .social-links li,
body #footer-outer .social-links li > a {
    margin: 0;
    padding: 0 !important;
}

body #footer-outer .social-links a > i[class*="fa-"] {
    font-size: 17px;
    top: 0;
}

body #footer-outer .social-links a.manual-fa {
    font-size: 36px;
    display: inline-block;
}
body #footer-outer .social-links a.manual-fa > img {
    height: 36px;
}

body #footer-outer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--brand-color);
    color: #fff !important;
    text-decoration: none;
    font-size: 18px; /* Icon-Größe */
    transition: opacity 0.2s ease-in-out;
    font-size: 23px;
    top: 0;
}

body #footer-outer .social-link:hover,
body #footer-outer .social-link:focus {
    opacity: 0.8;
}

@media screen anx (max-width: 768px) {
	body #footer-outer .social-links {
		flex-wrap: wrap;
		justify-content: center;
	}
}

/* Screen-reader only */
body #footer-outer .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@font-face {
    font-family: 'Icons-FA';
    src: url('fonts/Icons-FA.woff2') format('woff2'),
    url('fonts/Icons-FA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class*=" ux-icon--"], [class^="ux-icon--"] {
    font-family: Icons-FA !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
}

.ux-icon--blog::before {
    color: rgb(230, 0, 30);
    content: "";
}

.ux-icon--facebook::before {
    color: rgb(37, 78, 137);
    content: "";
}

.ux-icon--twitter::before {
    content: "";
}

.ux-icon--xing::before {
    color: rgb(0, 100, 100);
    content: "";
}

.ux-icon--linkedin::before {
    color: rgb(0, 89, 131);
    content: "";
}

.ux-icon--pinterest::before {
    color: rgb(213, 33, 41);
    content: "";
}

.ux-icon--instagram::before {
    color: rgb(82, 61, 54);
    content: "";
}

.ux-icon--youtube::before {
    color: rgb(229, 35, 39);
    content: "";
}

.ux-icon--spotify::before {
    color: #1ed760;
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.ux-icon--applepodcast::before {
    color: #D56DFB;
    content: "\f1bc";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

#commentform .row {
    background-color: var(--color-bg-highlight);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
}

#commentform .row label {
    display: none;
}

#commentform .row input,
#commentform .row textarea {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .5px;
    color: var(--color-secondary-grey-2);
    background-color: var(--color-secondary-light-grey);
}

#commentform .form-submit {
    text-align: right;
    margin-top: 10px;
}

#commentform .form-submit #submit {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .5px;
    height: 36px;
}

#respond #reply-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    #top .col.span_3.col_last {
        display: none;
    }

    body #top #logo img, #header-outer[data-permanent-transparent="false"] #logo .dark-version {
        height: 45px !important;
    }
}

.flyerlarm-latest-posts-widget {
	background: var(--color-bg-highlight);
	padding: 20px;
}

.flyerlarm-latest-posts-widget h2 {
	font-weight: 500;
	font-size: 18px !important;
	line-height: 28px !important;
	text-transform: uppercase;
	color: var(--color-secondary-grey-3);
	margin-bottom: 20px !important;
}


.flyerlarm-latest-posts-widget ul.latest-posts-list {
	list-style:none; 
	margin:0; 
	padding:0;
}

.flyerlarm-latest-posts-widget ul.latest-posts-list li {
	display: flex;
	margin-bottom: 30px;
}

.flyerlarm-latest-posts-widget ul.latest-posts-list li:last-of-type {
	margin-bottom: 0;
}

.flyerlarm-latest-posts-widget ul.latest-posts-list li .post-thumb {
	flex: 0 0 82px;
	height: 67px;
	margin-right: 15px;
	background-size: cover;
	background-position: center;
	aspect-ratio: 71 / 37;
}

.flyerlarm-latest-posts-widget ul.latest-posts-list li .post-title {
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: .25px;
	color: var(--color-text-default);
}

.flyerlarm-latest-posts-widget ul.latest-posts-list li .post-title a {
	color: var(--color-text-default);
}
.flyerlarm-latest-posts-widget ul.latest-posts-list li .post-title a:hover {
	color: var(--color-primary-red);
}

#home-latest-posts-section .column_container .vc_column-inner .wpb_wrapper,
#home-latest-posts-section .column_container .vc_column-inner .wpb_wrapper .wpb_content_element, 
#home-latest-posts-section .column_container .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper,
#home-latest-posts-section .column_container .vc_column-inner .wpb_wrapper .wpb_content_element .wpb_wrapper .flyerlarm-latest-posts-widget {
	height: 100%;
}

.flit-newsletter-sign-up-container .flit-success .flit-newsletter-sign-msg {
	background: var(--color-alert-success-bg);
	border-color: var(--color-alert-success-border);
	color: #000;
	padding: 15px;
}
.flit-newsletter-sign-up-container .flit-error .flit-newsletter-sign-msg {
	background: var(--color-alert-error-bg);
	border-color: var(--color-alert-error-border);
	color: #000;
	padding: 15px;
}


/* Grid-Layout für Suchergebnisse */
body #search-results.custom-search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0;
}
body #search-results.custom-search-grid .result {
	width: 100%;
	opacity: 1;
	max-width: 308px;
}
body #search-results.custom-search-grid .result .inner-wrap {
	box-shadow: 1px 1px 6px rgba(0,0,0,.15);
}


.show-mobile {
	display: none;
}

@media screen and (max-width: 768px) {
	.show-mobile {
		display: block;
	}
		
	.hide-mobile {
		display: none;
	}
	
	body {
		font-size: 16px;
	}
}


.podcast-slider-wrap .swiper { 
	width: calc(100% - 150px);
	overflow:hidden; 
}
.podcast-slider-wrap .swiper-wrapper { display:flex; align-items:stretch; } /* KEIN gap */
.podcast-slider-wrap .swiper-slide {
  /* 3 pro Reihe – Beachte: Platz für 2 Zwischenräume von spaceBetween */
  flex: 0 0 calc((100% - 2 * 18px) / 3) !important;
  height: auto;
}
.podcast-slide-card { 
	background:#fff; 
	overflow:hidden; 
	border: 1px solid #dedede;
	border-radius: 0;
	padding: 15px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	margin-top: 1px;
}
.podcast-slide-media {
	aspect-ratio: 1 / 1;
	background-size: cover;
	background-position: center center;
}
.podcast-slide-body { padding:12px 14px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.podcast-slide-icon { 
	position: absolute;
	font-size: 16px;
	left: 25px;
}
.podcast-slide-title { 
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: .25px;
	color: var(--color-text-default);
	margin-left: 18px;
}
.podcast-slide-title:hover {
  color: var(--color-primary-red);
}
.podcast-slide-duration { 
	font-size: 14px;
	white-space: nowrap;
	display: block;
	margin-bottom: 12px; 
}

/* Nav */
.podcast-btn { 
	position:absolute; 
	top:50%; 
	transform:translateY(-50%); 
	z-index:5;
	width:42px; 
	height:38px; 
	display:grid; 
	place-items:center;
	background:#dedede; 
	opacity:.9; 
	cursor:pointer;
	border: 1px solid #ccc;
	color: #666;
}
.podcast-btn:hover { opacity:1; }
.podcast-btn--prev { left:-10px; }
.podcast-btn--next { right:-10px; }
.podcast-pagination {
	position: relative;
	text-align: center;
	margin-top: 40px !important;
}
.podcast-slider-wrap { direction: ltr; }
.podcast-slider-wrap .swiper-pagination-bullet {
  width: 8px; 
  height: 8px; 
  border-radius: 9999px;
  background: #cbd5e1; 
  opacity: 1; 
  margin: 0 10px !important;
}
.podcast-slider-wrap .swiper-pagination-bullet-active {
  background: #111; transform: scale(1.14);
}

@media (max-width: 768px) {
	.podcast-slider-wrap .swiper { 
		width: calc(100% - 90px);
		overflow:hidden; 
	}
	.podcast-slider-wrap .swiper-slide {
		width: 100% !important;     /* erzwingt 1 Slide pro View */
		flex: 0 0 auto !important;  /* keine flex-basierte Verkleinerung */
	}
}