:root {
    --background: #floralwhite;
    --text: #333333;

    --baseColor: rgb(44, 113, 122); 
    --baseColor-25: rgba(44, 113, 122, 0.25);
    --baseColor-50: rgba(44, 113, 122, 0.50);
    --baseColor-85: rgba(44, 113, 122, 0.85);
    --highlight: rgb(211, 168, 134);
    --highlight-25: rgba(211, 168, 134, 0.25);
    --highlight-50: rgba(211, 168, 134, 0.50);
    --highlight-85: rgba(211, 168, 134, 0.85);

    --greyLight: #999999;
    --greyDark: #666666;
    --greyDarker: #4d4d4d;

    --whiteYellow: floralwhite;
    --black-20: rgba(0, 0, 0, 0.2);
    --black-30: rgba(0, 0, 0, 0.3);
    --black-40: rgba(0, 0, 0, 0.4);

    --fontDefault: 'Source Sans Pro', 'Quire Sans Pro', 'Aptops', 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

    --layoutMaxWidth: 1470px;
    --layoutGutter: clamp(1rem, 2.5vw, 2.25rem);
    --baseLight: #e7f0f1;
    --footerHeight: 0px;

    --headerHeight: 80px;
    --headerHeightScrolled: 64px;

    --heroheight-vh: 66vh;
    --heroheight-dvh: 66dvh;

    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;

    --imprint-0: "Lübker";
	--imprint-1: "Stahnsdorfer";
	--imprint-2: "48a";
	--imprint-3: "144";
	--imprint-4: "Potsdam";
	--imprint-5: "0176";
	--imprint-6: "7161907";
	--imprint-7: "luebker";
	--imprint-8: "org";

    --anzeige-text: 'Werbung / Affiliate-Link: Wenn Du über diese Links etwas kaufst, erhalten wir eine Provision. Für Dich entstehen keine zusätzlichen Kosten. Vielen Dank für Deine Unterstützung!';
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/source-sans-pro/SourceSans3VF-Upright.ttf.woff2') format('woff2'),
         url('../fonts/source-sans-pro/SourceSans3VF-Upright.ttf.woff') format('woff');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    src: url('../fonts/source-sans-pro/SourceSans3VF-Italic.ttf.woff2') format('woff2'),
         url('../fonts/source-sans-pro/SourceSans3VF-Italic.ttf.woff') format('woff');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--fontDefault);
    color: var(--text);
    background:
        radial-gradient(circle at 10% 15%, rgba(188, 174, 138, 0.35), transparent 42%),
        radial-gradient(circle at 90% 10%, rgba(171, 154, 109, 0.3), transparent 35%),
        linear-gradient(180deg, #faf7ed 0%, var(--background) 44%, #efe9d7 100%);
}

body {
    --currentHeaderHeight: var(--headerHeight);
}

body.scrolled {
    --currentHeaderHeight: var(--headerHeightScrolled);
}

article.site-shell {
    min-height: var(--heroheight-vh);
    display: flex;
    flex-direction: column;
}

.content-inner {
    width: min(100%, calc(var(--layoutMaxWidth) + (2 * var(--layoutGutter))));
    margin: 0 auto;
    padding-left: var(--layoutGutter);
    padding-right: var(--layoutGutter);
}

.site-header {
    position: fixed;
    top: 0;
    z-index: 1100;
    width: 100%;
    height: var(--currentHeaderHeight);
    background: var(--highlight-85);
    box-shadow: 0 6px 8px var(--black-40);
    backdrop-filter: blur(8px);
    transition: height 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header .content-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
}

#header-logo {
    display: flex;
    align-items: center;
    min-width: 0;
    z-index: 2;
}

#header-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

#header-logo img {
    width: clamp(65px, 5vw, 65px);
    height: auto;
    transition: transform 0.25s ease;
}

body.scrolled #header-logo img {
    transform: scale(0.75);
    transform-origin: left center;
}

#header-area {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 10rem), 980px);
    text-align: center;
}
#header-area .slogan,
#header-area .slogan2 {
    text-align: center;
    margin: 0 !important;
    color: white;
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: font-size 0.25s ease;
}
#header-area .slogan {
    font-size: 1.35rem;    
    padding: 0 1rem 0 1rem !important;
}
#header-area .slogan2 {
    font-size: 1.15rem;
    padding: 0.25rem 1rem 0 1rem !important;
}
body.scrolled #header-area .slogan {
    font-size: 1.15rem;
}
body.scrolled #header-area .slogan2 {
    font-size: 1rem;
}

#menu-toggle {
    display: none;
    position: relative;
    width: 36px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
}

#menu-toggle::before,
#menu-toggle::after,
#menu-toggle span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--whiteYellow);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

#menu-toggle::before {
    top: 1px;
}

#menu-toggle span {
    top: 50%;
    transform: translateY(-50%);
}

#menu-toggle::after {
    bottom: 1px;
}

#menu-toggle.open span {
    opacity: 0;
}

#menu-toggle.open::before {
    transform: translateY(11px) rotate(45deg);
}

#menu-toggle.open::after {
    transform: translateY(-11px) rotate(-45deg);
}

.site-main {
    width: 100%;
    flex: 1;
}

h1 {    
    font-size: 2.5rem;
    margin: 0.5rem 0 0.65rem;
}
.split-feature-col :is(h1, h2, h3):nth-child(1 of h1, h2, h3) {
    margin-top: 0;
}
h2 {
    font-size: 2rem;
    margin: 2rem 0 0.65rem;
}
h3 {
    font-size: 1.5rem;
    margin: 1.25rem 0 0.5rem;
}
a {
    color: var(--baseColor);
    font-weight: var(--font-semi-bold);
    text-decoration: none;
    border-bottom: solid 2px transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
a:not(:is(.featured-weather-card, nav ul ul a)):hover, a:not(:is(.featured-weather-card, nav ul ul a)):focus-visible {
    color: var(--highlight);
    border-bottom: solid 2px var(--highlight);
}
a:not(:is(.featured-weather-card, nav ul ul a)):has(img):hover,
a:not(:is(.featured-weather-card, nav ul ul a)):has(img):focus-visible {
    border-bottom: transparent; 
} 
h1 a, h2 a, h3 a {
    font-weight: inherit;
}

p {
    margin: 0.75rem 0;
    font-size: 1.25rem;
    line-height: 1.5;
}
.medium {
    font-weight: var(--font-medium) !important;
}
.semi-bold {
    font-weight: var(--font-semi-bold) !important;
}
.bold {
    font-weight: var(--font-bold) !important;
}
nav > ul {
    margin: 1rem 0;
    padding: 0;
    width: 100%;
    border-top: 3px solid var(--highlight);
    border-bottom: 3px solid var(--highlight);
    background: rgba(255, 255, 255, 0.55); 
}
nav > ul > li { 
    list-style: none !important;
    width: 100%;
    border-bottom: 1px solid var(--highlight-85);
}
nav > ul > li:last-child {
    border-bottom: none;
}
nav > ul > li > a {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--baseColor);
    background: transparent;
    border-bottom: none;
    font-size: 1.2rem;
    transition: background-color 0.25s ease, color 0.25s ease;
}
nav > ul > li > a:hover,
nav > ul > li > a:focus-visible {
    color: var(--whiteYellow) !important;
    background: var(--baseColor-85);
    border-bottom: none !important;
}
nav ul ul {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}
nav ul ul li {
    list-style: none !important;
    border-bottom: 1px solid rgba(185, 165, 135, 0.6);
}
nav ul ul li:first-child {
    border-top: 1px solid rgba(185, 165, 135, 0.6);
}
nav ul ul li:last-child {
    border-bottom: none;
}
nav ul ul a {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    line-height: 1.25;
    padding: 0.45rem 1.5rem 0.45rem 2rem;
    color: var(--baseColor);
    background: rgba(255, 255, 255, 0.35);
    border-bottom: none;
    transition: background-color 0.25s ease, color 0.25s ease;
}
nav ul ul a:hover,
nav ul ul a:focus-visible {
    color: var(--whiteYellow);
    background: var(--highlight-85);
    border-bottom: none;
}
nav ul a.active {
    color: var(--whiteYellow);
    background: var(--baseColor-85);
}

#header-nav li.has-submenu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
}

#header-nav li.has-submenu > a {
    grid-column: 1;
    min-width: 0;
}

#header-nav li.has-submenu > ul {
    grid-column: 1 / -1;
}

#header-nav li.has-submenu > ul[hidden] {
    display: none !important;
}

#header-nav .nav-submenu-toggle {
    grid-column: 2;
    border: none;
    border-left: 1px solid rgba(185, 165, 135, 0.6);
    background: var(--baseColor-25);
    color: var(--baseColor);
    width: 3rem;
    min-width: 3rem;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#header-nav .nav-submenu-toggle::before {
    content: '▸';
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 0.2s ease;
}

#header-nav li.has-submenu.is-expanded > .nav-submenu-toggle::before {
    transform: rotate(90deg);
}

#header-nav .nav-submenu-toggle:hover,
#header-nav .nav-submenu-toggle:focus-visible {
    background-color: var(--baseColor);
    color: var(--whiteYellow);
}
hr.major {
    width: 75%;
    margin: 4rem auto; 
    border: 3px solid var(--highlight);
}

.hinweis {
    margin: 1rem 0;
    padding: 0.5rem 1.5rem;
    background: var(--highlight-25);
    border-left: 6px solid var(--highlight);
    border-radius: 6px;
    font-weight: var(--font-medium);
}
ul.staedte_liste {
    list-style: square;

}
ul.staedte_liste li {
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: var(--font-semi-bold);
    border-bottom: none;
}
ul.staedte_liste li a {    
    color: var(--baseColor);
}

.anzeige {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: var(--font-regular);
    padding: 0.1rem 0.5rem;
    margin: 0.25rem;
    border: solid 1px var(--greyDark);
    color: var(--whiteYellow);
    background-color: var(--black-20);
    border-radius: 2px;
    cursor: help;
}

.anzeige::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    top: calc(100% + 0.45rem);
    transform: translateX(-50%);
    min-width: 260px;
    max-width: min(88vw, 420px);
    padding: 0.5rem 0.65rem;
    border-radius: 4px;
    background: rgba(40, 40, 40, 0.95);
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.35;
    font-weight: var(--font-regular);
    box-shadow: 0 4px 10px var(--black-30);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 20;
}

.chart-vorhersage, .chart-klimatabelle {
    margin: 1.5rem 0; 
    border: solid 1px #ccc; 
    border-radius: 6px; 
    padding: 0.33rem; 
    background: 0 4px 0 var(--black-30);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease;
}
.chart-vorhersage:hover, .chart-klimatabelle:hover  {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.anzeige:hover::after,
.anzeige:focus-visible::after,
.anzeige.is-open::after {
    opacity: 1;
    visibility: visible;
}

body.anzeige-tooltips-enhanced .anzeige::after {
    display: none;
}

.anzeige-tooltip {
    position: fixed;
    left: 0;
    top: 0;
    width: max-content;
    max-width: min(88vw, 420px);
    padding: 0.5rem 0.65rem;
    border-radius: 4px;
    background: rgba(40, 40, 40, 0.95);
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.35;
    font-weight: var(--font-regular);
    box-shadow: 0 4px 10px var(--black-30);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2200;
}

.anzeige-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.anzeige-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 350px;
}

.anzeige-image-wrap .anzeige {
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    margin-left: 0 !important;
    z-index: 3;
    background-color: rgba(250, 247, 237, 0.8);
}

.anzeigenblock {
    background-color: var(--highlight-25); 
    border: solid 1px var(--highlight-50);
    padding: 0; 
    margin: 0.5rem 0 1rem 0;
    border-radius: 4px;
}
.anzeigenblock-inner {
    padding: 1rem 1rem 0.8rem 1rem;
}
.anzeigenblock-inner h3 {
    margin-top: 0;
}
.anzeigenblock-inner .split-feature {
    margin: 0;
}
.anzeigenblock .marker {
    background-color: var(--highlight);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.33rem;
}

.anzeigenblock .marker .anzeige {
    margin: 0;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.blur-in {
    opacity: 0;
    filter: blur(5px);
}
.blur-in.visible {
    animation: blurIn 1s ease-out forwards;
}
@keyframes blurIn {
    to {
        opacity: 1;
        filter: blur(0);
    }
}

.hero {
    position: relative;
    width: 100%;
    height: var(--heroheight-vh);
    height: var(--heroheight-dvh);
    min-height: var(--heroheight-vh);
    min-height: var(--heroheight-dvh);
    overflow: hidden;
    background: var(--baseLight);    
    box-shadow: 0 4px 6px var(--black-40);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.2) 0,
            rgba(0, 0, 0, 0) max(0px, calc((100vw - var(--layoutMaxWidth)) / 2))
        ),
        linear-gradient(
            to left,
            rgba(0, 0, 0, 0.2) 0,
            rgba(0, 0, 0, 0) max(0px, calc((100vw - var(--layoutMaxWidth)) / 2))
        );
}

.hero .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: none;
    animation: heroFade 32s linear infinite;
    animation-fill-mode: both;
    z-index: 0;
}

.hero .bg .bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: center center;
    image-rendering: auto;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: heroZoom 32s linear infinite;
    animation-fill-mode: both;
}

.hero .bg.is-active {
    opacity: 1;
}

.hero .bg:nth-child(1) {
    animation-delay: 0s;
}

.hero .bg:nth-child(1) .bg-media {
    animation-delay: 0s;
}

.hero .bg:nth-child(2) {
    animation-delay: 8s;
}

.hero .bg:nth-child(2) .bg-media {
    animation-delay: 8s;
}

.hero .bg:nth-child(3) {
    animation-delay: 16s;
}

.hero .bg:nth-child(3) .bg-media {
    animation-delay: 16s;
}

.hero .bg:nth-child(4) {
    animation-delay: 24s;
}

.hero .bg:nth-child(4) .bg-media {
    animation-delay: 24s;
}


@keyframes heroFade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    35% {
        opacity: 0;
    } 
    100% {
        opacity: 0;
    }
}

@keyframes heroZoom {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    5% {
        transform: translate3d(0, 0, 0) scale(1.005);
    }
    25% {
        transform: translate3d(0, 0, 0) scale(1.040);
    }
    35% {
        transform: translate3d(0, 0, 0) scale(1.050);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1.050);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    z-index: 2;
    padding-bottom: clamp(2rem, 6vh, 4rem);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-content {
    max-width: 33rem;
    padding: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

body.is-resizing .hero .bg, 
body.is-resizing .hero .bg .bg-media {
    animation: none !important;
}

.hero-content h2 {
    margin: 0 0 0.65rem;
    font-size: 3.5rem;
    line-height: 1.15;
}

.hero-content p {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.5;
}

#contentWrapperFullPage {
    width: 100%;
    padding: 2rem 0 3rem 0;
}

.split-feature {
    margin: 0.75rem 0 0;
    display: grid;
    --split-main: 2fr;
    --split-side: 1fr;
    --split-gap: 3rem;
    --split-divider-width: 0;
    --split-divider-color: var(--highlight);
    --split-divider-offset: 1.1rem;
    --split-divider-shift: 0rem;
    grid-template-columns: minmax(0, var(--split-main)) minmax(0, var(--split-side));
    gap: var(--split-gap);
    align-items: stretch;
}

.split-feature.split-feature--half {
    --split-main: 1fr;
    --split-side: 1fr;
}

.split-feature.split-feature--third {
    --split-main: 2fr;
    --split-side: 1fr;
}

.split-feature > * {
    min-width: 0;
}
.split-feature .colored {
    background-color: var(--highlight-25); 
    padding: 0.2rem 1rem; 
    margin-bottom: 0.5rem;
    border-radius: 4px;
}
.split-feature .colored h3 {
    margin-top: 0.5rem;
}

.box {
    margin: 1rem 0 0.5rem 0;
    padding: 1rem 1.25rem 0 1.25rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: start;
    overflow: hidden;
    border-radius: 6px;
    background: #f8f8f8;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.33s ease;
}
.box img {
    border-radius: 4px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);    
    transition: box-shadow 0.33s ease;
}
.box img.noborder {
    border: none;
    box-shadow: none;
}

.text-flow {
    display: flow-root;
}

.text-flow-image {
    display: block;
    width: min(46%, 22rem);
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.text-flow-image.left {
    float: left;
    margin-right: clamp(1rem, 2vw, 1.5rem);
}

.text-flow-image.right {
    float: right;
    margin-left: clamp(1rem, 2vw, 1.5rem);
}

.box:hover, .box img:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}
.box img.noborder:hover  {
    box-shadow: none;
}

footer {
    width: 100%; 
    height: auto;
    min-height: var(--footerHeight);
    background: var(--highlight);
    color: var(--whiteYellow);
    box-shadow: 0 -6px 8px var(--black-40);
}

footer .content-inner {
    min-height: var(--footerHeight);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/* three footer elements */
footer .footer-col {
    text-align: center;
    padding: 0;
    align-self: stretch;
}
footer .footer-col.c1 {
    text-align: left;
    padding: 0 2rem 0 0;
}
footer .footer-col.c2 {
    padding: 0 2rem;
    /*border-left: solid 2px var(--whiteYellow);
    border-right: solid 2px var(--whiteYellow); */
    text-align: center;
}
footer .footer-col.c3 {
    padding: 0 0 0 2rem;
    text-align: right;
}

footer p {
    color: var(--whiteYellow);
}

footer h2 {
    font-size: 1.25rem;
    margin: 1rem 0 0.75rem 0;
}
footer h2:first-of-type {    
    margin: 0 0 0.75rem 0;
}


footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul  li {
    margin: 0 0 1rem 0;
}
footer .footer-col.c3 ul li {
    margin: 0 0 0.25rem 0;
}
footer ul li a {
    font-size: 1.4rem;
    color: var(--whiteYellow);
    text-decoration: none;
    font-weight: bold;
    border-bottom: none;
}
footer .footer-col.c3 ul li a {
    font-size: 1.15rem;
}
footer ul li a:hover,
footer ul li a:focus-visible {
    color: var(--baseColor);
    text-decoration: none;
    border-bottom: none;
}

.footer-col.c2 img {
    width: 100%;
    max-width: 333px;
    height: auto;
}


.imprint-0::after {
    content: var(--imprint-0);
}
.imprint-1::before {
    content: var(--imprint-1);
}
.imprint-1::after {
    content: var(--imprint-2);
}
.imprint-3::before {
    content: var(--imprint-3);
}
.imprint-3::after {
    content: var(--imprint-4);
}
.imprint-5::before {
    content: var(--imprint-5);
}
.imprint-5::after {
    content: var(--imprint-6);
}
.imprint-7::after {
    content: "\0040" var(--imprint-7);
}
.imprint-8::before {
    content: ".";
}
.imprint-8::after {
    content: var(--imprint-8);
}

/* Featured Weather Cards */
.featured-weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 14px 0 20px 0;
}

.featured-weather-card {
    display: block;
    padding: 4px 14px 12px 14px;
    border: 3px solid var(--highlight);
    border-radius: 6px;
    background: #fafafa;
    text-decoration: none;
    color: #222;
    font-weight: normal;
    transition: all 0.25s ease;
}

.featured-weather-card:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(44, 113, 122, 0.15);
}

.featured-weather-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0;
}

.featured-weather-card__title {
    font-size: 1.2rem;
    margin: 0;
}

.featured-weather-card__icon {
    width: 45px;
    height: 45px;
    display: block;
    flex-shrink: 0;
}

.featured-weather-card__body {
    font-size: 1rem;
    line-height: 1.45;
}

.featured-weather-card__row {
    display: block;
    margin-bottom: 2px;
}

.featured-weather-card__label {
    font-weight: var(--font-semi-bold);
}

.featured-weather-card__meta {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 4px;
}

@media (max-width: 1050px) {
    #menu-toggle {
        display: block;
        margin-left: auto;
    }

    #header-nav {
        display: none;
        position: fixed;
        top: var(--currentHeaderHeight);
        right: var(--layoutGutter);
        width: min(320px, calc(100vw - (2 * var(--layoutGutter))));
        max-height: calc(100dvh - var(--currentHeaderHeight) - 1rem);
        overflow: auto;
        z-index: 1200;
        background: var(--highlight);
        box-shadow: 0 6px 8px var(--black-40);
        padding: 0.65rem 0;
    }
 
    #header-nav.show {
        display: block;
    }

    #header-nav h3 {
        display: none;
    }

    #header-nav > ul,
    #header-nav ul {
        margin: 0;
        border: none;
        background: transparent;
    }

    #header-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    #header-nav a {
        display: block;
        padding: 0.8rem 1.1rem;
        border-bottom: none;
        background-color: transparent;
        font-size: 1rem;
        transition: background-color 0.2s ease;
    }

    #header-nav ul ul a {
        font-size: 0.9rem;
        line-height: 1.2;
        padding: 0.55rem 1rem 0.55rem 1.6rem;
    }

    #header-nav ul ul li {
        margin: 0;
    }

    #header-nav a:hover,
    #header-nav a:focus-visible,
    #header-nav a.active {
        background-color: rgba(33, 160, 154, 0.3);
    }
    #header-nav .nav-submenu-toggle {
        background: var(--baseColor-25);
        color: var(--baseColor);
    }
    #header-nav .nav-submenu-toggle:hover {
        background: var(--baseColor);
        color: var(--whiteYellow);
    }

}

@media (max-width: 1050px) {


    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.25rem;
    }

    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.85rem;
    }
    h3 {
        font-size: 1.35rem;
    }

    p {
        font-size: 1.15rem;
    }

    .split-feature,
    .split-feature.split-feature--half,
    .split-feature.split-feature--third {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .split-feature .split-feature {
        grid-template-columns: minmax(0, var(--split-main)) minmax(0, var(--split-side));
        gap: var(--split-gap);
    }

    .split-feature .split-feature.split-feature--half {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .split-feature .split-feature.split-feature--third {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }

}

@media (max-width: 750px) {

    
    #header-area .slogan {
        font-size: 1.25rem;    
    }
    #header-area .slogan2 {
        font-size: 1.05rem;
    }
    body.scrolled #header-area .slogan {
        display: none;
    }


    footer .content-inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        justify-items: center;
    }    

    footer .footer-col,
    footer .footer-col.c1,
    footer .footer-col.c2,
    footer .footer-col.c3 {
        width: 100%;
        text-align: center;
        padding: 0;
        border: none;
    }

    footer .footer-col.c2 {
        border-top: none;
        border-bottom: none;
        padding: 1.75rem 1rem;
    }
    footer .footer-col.c3 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    :root {
        --headerHeight: 80px;
        --headerHeightScrolled: 64px;
        --layoutGutter: 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    h3 {
        font-size: 1.1em;
    }

    p {
        font-size: 1.1rem;
    }

    hr.major {
        width: 85%;
        margin: 3rem auto; 
        border: 2px solid var(--highlight);
    }

    .split-feature .split-feature.split-feature--third {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 540px) {   

    .text-flow-image,
    .text-flow-image.left,
    .text-flow-image.right {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem;
        margin-top: 0;
    }

    .split-feature .split-feature:not(:has(.anzeige-image-wrap)),
    .split-feature .split-feature.split-feature--half:not(:has(.anzeige-image-wrap)),
    .split-feature .split-feature.split-feature--third:not(:has(.anzeige-image-wrap)),
    .split-feature .split-feature.split-feature--thirds:not(:has(.anzeige-image-wrap)) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #header-area .slogan2 {
        display: none;
    }
    
    body.scrolled #header-area .slogan {
        display: inline;
    }
    
    .hero .content-inner {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-overlay {
        padding-bottom: 0;
    }

    #contentWrapperFullPage {
        padding: 0;
    }

    .content-inner {
        padding-left: 0;
        padding-right: 0;
    }

    .site-header .content-inner {
        padding-left: var(--layoutGutter);
        padding-right: var(--layoutGutter);
    }

    .anzeige-image-wrap img {
        max-width: 250px;
    }

    
}

@media (max-width: 365px) {
    #header-nav a {
        font-size: 0.95rem;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.0rem;
    }

    p {
        font-size: 0.95rem;
    }
}