:root {
    --gelb:#f8ba2b;
    --blau:#6b94ad;
    
    --rot:#a51f33;
    --hellrot:#fff2f2;

    --hellgelb:#fef8ea;
    --hellblau: #f0f4f7;

    --turkies: #1BAE9E;
    --hellturkies: #e8f7f5;

    --header-height:70px;
    --footer-height:300px;
}

@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend-VariableFont_wght.ttf') format('truetype-variations'); /* For variable fonts */
    src: url('../fonts/Lexend-VariableFont_wght.ttf') format('truetype'); /* Fallback for non-variable font support */
    font-weight: 100 900; /* Define the range of weights available in the variable font */
    font-display: swap; /* Optimale Darstellung während des Ladevorgangs */
}

@font-face {
    font-family: 'Lexend-Light';
    src: url('../fonts/Lexend-Light.ttf') format('truetype-variations'); /* For variable fonts */
    src: url('../fonts/Lexend-Light.ttf') format('truetype'); /* Fallback for non-variable font support */
    font-weight: 100 900; /* Define the range of weights available in the variable font */
    font-display: swap; /* Optimale Darstellung während des Ladevorgangs */
}

/* Rustico */
@font-face {
    font-family: 'Rustico';
    src: url('../fonts/Rustico-V2-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Zilla Slab (SemiBold, da du dies im Screenshot hervorgehoben hast) */
@font-face {
    font-family: 'Zilla Light';
    src: url('../fonts/Zilla/ZillaSlab-Light.ttf') format('truetype');
    font-weight: 600; /* SemiBold Gewicht */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zilla Slab';
    src: url('../fonts/Zilla/ZillaSlab-SemiBold.ttf') format('truetype');
    font-weight: 600; /* SemiBold Gewicht */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zilla Bold';
    src: url('../fonts/Zilla/ZillaSlab-Bold.ttf') format('truetype');
    font-weight: 600; /* SemiBold Gewicht */
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype-variations');
    src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* SemiBold Gewicht */
    font-display: swap;
}

/* Globale Box-Sizing und Standardschriftart */
html {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Raleway', Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    margin: 0;
    padding: var(--header-height) 0 0 0;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header */
.header {
    width: 100%;
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 9999999999;
    height: var(--header-height);
    top:0;
    left:0;
}

.header-left {
    display: flex;
    align-items: center;
    flex-grow: 1; /* Lässt den linken Bereich wachsen, um das Logo zu halten */
}

.site-logo {
    height: 40px; /* Anpassung der Logo-Größe */
    width: auto;
}

/* Desktop Navigation */
.header-nav {
    display: block; /* Standardmäßig auf Desktop sichtbar */
    flex-grow: 2; /* Lässt die Navigation mehr Platz einnehmen */
    text-align: center; /* Zentriert die Navigationspunkte */
}

.header-nav ul {
    display: flex;
    justify-content: center;
    gap: 25px; /* Abstand zwischen den Hauptmenüpunkten */
}

.header-nav li {
    position: relative; /* Für Submenüs */
}

.header-nav a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
    text-transform: uppercase;
}

.header-nav a.active {
    background: #333;
    color: #fff!important;
}

.header-nav a:hover {
    border-bottom:1px solid #333;
}

.header-nav .submenu a {
    text-transform: unset;
}

/* Submenü Stile */
.header-nav .submenu {
    display: none; /* Standardmäßig versteckt */
    position: absolute;
    top: 100%;
    left: 50%; /* Zentriert das Submenü unter dem Elternelement */
    transform: translateX(-50%); /* Korrektur für die Zentrierung */
    background-color: #fff;
    min-width: 200px; /* Breite der Submenüs */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 200;
    border-radius: 4px;
    padding: 10px 0;
    text-align: left; /* Text linksbündig im Submenü */
}

.header-nav .submenu li {
    margin: 0;
}

.header-nav .submenu a {
    padding: 8px 20px;
    white-space: nowrap;
    color: #555;
}

.header-nav .submenu a:hover {
    background-color: #333;
    color: #fff;
}

.header-nav li.has-submenu:hover > .submenu {
    display: block; /* Submenü beim Hover anzeigen */
}




/* --- Desktop Submenu Level 2 --- */
.header-nav .submenu-2 {
    display: none; /* Standardmäßig versteckt */
    position: absolute;
    top: 0; /* Auf gleicher Höhe wie das Elternelement */
    left: 100%; /* Rechts neben dem Elternelement */
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 300; /* Höherer z-index als erste Ebene */
    border-radius: 4px;
    padding: 10px 0;
    text-align: left;
}

.header-nav .submenu-2 li {
    margin: 0;
}

.header-nav .submenu-2 a {
    padding: 8px 20px;
    white-space: nowrap;
    color: #555;
}

.header-nav .submenu-2 a:hover {
    background-color: #f0f0f0;
    color: #007bff;
}

/* Zeige zweite Ebene beim Hover über das Elternelement */
.header-nav li.has-submenu-2:hover > .submenu-2 {
    display: block;
}

/* Pfeil für zweite Ebene (Rechts-Pfeil) */
.arrow-right {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-left: 5px solid #333; /* Pfeil nach rechts */
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: transform 0.3s ease;
}

.header-nav li.has-submenu-2:hover > a .arrow-right {
    transform: rotate(90deg); /* Pfeil beim Hover drehen, um anzuzeigen, dass es geöffnet ist */
}


/* --- Mobile Submenu Level 2 --- */
.mobile-nav .submenu-2 {
    display: none; /* Standardmäßig versteckt auf Mobile */
    background-color: rgba(255, 255, 255, 0.05); /* Leichter dunkler als erste Ebene */
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 4px;
    width: 90%; /* Etwas schmaler als erste Ebene für Einzug */
    margin-left: auto;
    margin-right: auto;
}

.mobile-nav li.has-submenu.open > .submenu {
    display: block;
}

.mobile-nav .submenu-2 li {
    margin: 5px 0;
}

.mobile-nav .submenu-2 a {
    font-size: 1em; /* Etwas kleiner als erste Ebene mobil */
    font-weight: normal;
    padding: 8px 0;
}

/* Pfeil für zweite Ebene im Mobile Menü */
.mobile-nav li.has-submenu-2 > a {
    position: relative;
    padding-right: 30px; /* Platz für den Pfeil */
}
.mobile-nav li.has-submenu-2 > a::after {
    content: '\25B6'; /* Unicode für Pfeil nach rechts */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    transition: transform 0.3s ease;
}
.mobile-nav li.has-submenu-2.open > a::after {
    transform: translateY(-50%) rotate(90deg); /* Pfeil beim Öffnen drehen */
}


/* Anpassung für mobile Submenüs allgemein, damit sie sich einklappen */
.mobile-nav .submenu {
    transition: max-height 0.3s ease-out; /* Übergang für Höhe beim Ausklappen */
    max-height: 0; /* Anfangshöhe für die Transition */
    overflow: hidden; /* Inhalt verstecken, der überläuft */
}

.mobile-nav li.has-submenu.open > .submenu {
    max-height: 500px; /* Genug Platz für alle Submenüpunkte, anpassen falls nötig */
}

.mobile-nav .submenu-2 {
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}
.mobile-nav li.has-submenu-2.open > .submenu-2 {
    max-height: 300px; /* Genug Platz für zweite Ebene */
}







.arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 5px solid #333;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: transform 0.3s ease;
}
.has-submenu:hover .arrow-down {
    transform: rotate(180deg);
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
    flex-grow: 1; /* Lässt die Icons wachsen, um rechts zu bleiben */
    justify-content: flex-end; /* Schiebt Icons ganz nach rechts */
}

.header-icons .cart-icon,
.header-icons .profile-icon {
    font-size: 24px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s ease;
}

.header-icons .cart-icon:hover,
.header-icons .profile-icon:hover {
    color: #007bff;
}

/* Hamburger-Menü Stile (standardmäßig versteckt für Desktop) */
.hamburger-menu {
    display: none; /* Auf Desktop versteckt */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 101;
    margin-left: 20px; /* Abstand zu den Icons */
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menü Overlay Stile (standardmäßig versteckt) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Inhalt am oberen Rand ausrichten */
    z-index: 999999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 70px; /* Platz für den festen Header */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-nav li.has-submenu > a {
    position: relative;
    padding-right: 30px;
}
.mobile-nav li.has-submenu > a::after {
    content: '\25BC';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    transition: transform 0.3s ease;
}
.mobile-nav li.has-submenu.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-nav {
    width:100%;
}

.mobile-nav a {
    color: #fff!important;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    transition: color 0.3s ease;
    display: block;
    padding: 10px 0;
}

.mobile-nav a:hover {
    color: #007bff;
}

.mobile-nav .submenu {
    display: none;
    background-color: #444;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 4px;
}

.mobile-nav .submenu li {
    margin: 5px 0;
}

.mobile-nav .submenu a {
    font-size: 1.1em;
    font-weight: normal;
    padding: 8px 0;
}

body.no-scroll {
    overflow: hidden;
}

/* Main Content Area - Dreigeteilte Sektion */
.main-sections-container {
    display: flex;
    height: calc(80vh - var(--header-height)); /* 100vh minus Header-Höhe */
    /* Auf Desktop teilen sich die Sektionen die Breite */
}

.main-section {
    flex: 1; /* Gleiche Breite für jede Sektion auf Desktop */
    position: relative;
    overflow: hidden; /* Wichtig für Bild- und Overlay-Animation */
    display: flex;
    flex-direction: column; /* Für Inhalt */
    cursor: pointer;
}

.section-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Bild im Hintergrund */
    opacity: 1; /* Bild ist initial sichtbar */
    transition: opacity 0.5s ease-out; /* Für sanftes Ausblenden des Bildes */
}

.section-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.section-overlay-color {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; /* Über dem Bild */
    /*transform: translateX(-100%); /* Startposition für Animation von links nach rechts */
    /*
    transition: transform 0.8s ease-out; /* Animationsdauer der Überlagerung */
    /* Anfangszustand: Das Overlay ist komplett durchsichtig. */
    opacity: 0;
    
    /* Definiert, wie der Übergang stattfinden soll: 
        Wir animieren die Eigenschaft 'opacity' über 0.8 Sekunden. */
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center; /* Vertikale Zentrierung */
    justify-content: center; /* Horizontale Zentrierung für den Inhalt */
    box-sizing: border-box;
}

.section-overlay-color.active {
    /*transform: translateX(0); /* Endposition der Animation */
    opacity: 1;
}

/* Farben der Overlays */
.color-yellow { background-color: var(--gelb); }
.color-blue { background-color: var(--blau); }
.color-red { background-color: var(--rot); }

.section-content {
    color: white;
    padding: 0 40px; /* Innenabstand für den Text */
    text-align: left;
    width: 100%; /* Nimmt die volle Breite des Overlays ein */
    margin-top: 10vh; /* Schiebt den Text etwas tiefer als Mitte */
}

.section-content h2 {
    font-size: 3.5em; /* Wie im Screenshot */
    margin: 0 0 15px 0;
    line-height: 1.1;
    font-weight: bold;
    color:#fff;
}

.section-content p {
    font-size: 1.1em;
    line-height: 1.4;
    margin: 0;
}

/* Spezifische Schriftarten für die H2-Titel */
.main-section:nth-child(1) .section-content h2 {
    font-family: 'Rustico', sans-serif; /* "DAS MUTIGE" */
}
.main-section:nth-child(2) .section-content h2 {
    font-family: 'Zilla Slab', serif; /* "Das Gute" */
}
.main-section:nth-child(3) .section-content h2 {
    font-family: 'Lexend-Light', sans-serif; /* "Das Schöne" */
}

/* Icons/Flaggen in den Sektionen */
.section-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 2em;
    color: white;
    z-index: 3; /* Über dem Overlay-Inhalt */
}

.section-lang-flag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 1.1em;
    color: white;
    z-index: 3;
}

/* Hover-Effekt: Bild wird sichtbar, Farb-Bottom-Rand bleibt */
.main-section:hover .section-image-wrapper {
    opacity: 1; /* Bild wird sichtbar */
}

.main-section:hover .section-overlay-color {
    /* Verschiebe das Overlay nur so weit, dass ein unterer Rand sichtbar bleibt */
    transform: translateY(calc(100% - 80px)); /* Beispiel: 80px hoher Rand */
    transition: transform 0.5s ease-out; /* Sanfterer Übergang für den Hover */
}

/* Text und Icons sollen beim Hover immer noch lesbar sein */
.main-section:hover .section-content,
.main-section:hover .section-icon,
.main-section:hover .section-lang-flag {
    opacity: 0; /* Text und Icons ausblenden */
    transition: opacity 0.3s ease-out;
}


.hero-article-section {
    position: relative; /* Wichtig für die Positionierung der inneren Elemente */
    width: 100%;
    height: 75vh; /* Nimmt 90% der Bildschirmhöhe ein */
    display: flex;
    align-items: flex-end; /* Inhalt unten ausrichten */
    justify-content: flex-end; /* Inhalt rechts ausrichten */
    color: #fff;
    overflow: hidden; /* Verhindert, dass Elemente überlappen */
}

/* Der Container für das Hintergrundbild */
.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Hintergrundbild auf die unterste Ebene */
}

.hero-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Bild den Container füllt */
}

.gut .hero-article-image {
    filter: hue-rotate(11deg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4)); /* Leichter Farbverlauf */
    z-index: 2;
}

/* Der Inhalts-Block mit dem Titel */
.hero-content {
    position: relative;
    z-index: 3; /* Über dem Bild und dem Übergang */
    padding: 0 5vw 10vh 0; /* Abstand: oben, rechts, unten, links */
    text-align: right;
}

.mutig h1 {
    font-family: 'Rustico', sans-serif;
    font-weight: 100;
    font-size: clamp(3rem, 10vw, 8rem);
    color: var(--hellgelb);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.gut h1 {
    font-family: 'Zilla Bold', sans-serif;
    font-weight: 600;
    font-size: clamp(3.5rem, 10.5vw, 7.5rem);
    color:#fff;
}

.schoen h1, .ueber h1 {
    font-family: 'Lexend-Light', sans-serif;
    font-weight: 600;
    font-size: clamp(3.5rem, 10.5vw, 7.5rem);
    color:#fff;
}

.hero-content h1 {
    transform: rotate(356deg);
    line-height: 1;
    margin: 0;
}

/* DER WICHTIGSTE TEIL: Die abgeschrägte Kante */
.hero-article-section::after {
    content: ''; /* Erforderlich für Pseudo-Elemente */
    position: absolute;
    bottom: -1px; /* Am unteren Rand platzieren, -1px um Lücken zu vermeiden */
    left: 0;
    width: 100%;
    height: 150px; /* Höhe des Übergangs, anpassen je nach Bedarf */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2; /* Zwischen Bild und Inhalt */
}

.mutig .hero-article-section::after {
    background-image: url('../bilder/transition-edge_transparent.svg');
}

.gut .hero-article-section::after {
    background-image: url('../bilder/transition-edge_transparent_gut.svg');
}

.schoen .hero-article-section::after {
    background-image: url('../bilder/transition-edge_transparent_schoen.svg');
}

.ueber .hero-article-section::after {
    background-image: url('../bilder/transition-edge_transparent_ueber.svg');
}

.hero-content .article-meta {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-content .author-name {
    font-weight: 500;
    color: var(--gelb); /* Kannst du an deine Farbvariablen anpassen */
}

/* --- Container für Artikelinhalt --- */
.container {
    max-width: 1200px; /* Oder die Breite, die du für deinen Content verwendest */
    margin: 0 auto;
    /*padding: 0 20px; /* Etwas Innenabstand an den Seiten */
}

.before-too .container {
    padding-top: 130px;
}

/* --- Artikel Einleitung --- */
.article-intro-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.article-intro-section .intro-paragraph {
    font-family: 'Lexend', sans-serif;
    font-size: 1.3em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
    font-weight: 300; /* Leichter für Einleitung */
}

/* --- Artikel Inhalts-Sektion --- */
.article-content-section {
    padding: 50px 0;
}

.article-content-section h3 {
    font-family: 'Zilla Slab', serif; /* Entspricht "Das Gute" auf der Startseite */
    font-size: 2em;
    color: var(--rot); /* Eine deiner Farben, passt gut zu Überschriften */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 2px solid var(--rot);
    padding-bottom: 5px;
    display: inline-block; /* Für die Linie unter der Überschrift */
}

.article-content-section p {
    font-family: 'Raleway', sans-serif; /* Deine Standard-Fließtextschrift */
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.article-text-block {
    margin-bottom: 30px;
}

/* --- Bilder im Artikel --- */
.article-image-fullwidth {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.article-image-fullwidth img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-caption {
    font-family: 'Lexend', sans-serif;
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.article-image-two-column {
    display: flex;
    flex-wrap: wrap; /* Erlaubt Umbruch auf kleineren Bildschirmen */
    gap: 20px; /* Abstand zwischen den Spalten */
    margin: 40px 0;
    justify-content: center;
}

.article-image-two-column .image-wrapper {
    flex: 1; /* Nimmt verfügbaren Platz ein */
    min-width: 300px; /* Mindestbreite, bevor Umbruch */
    text-align: center;
}

.article-image-two-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Zitat-Block --- */
.article-quote-block {
    background-color: var(--blau); /* Deine blaue Farbe */
    color: #fff;
    padding: 30px;
    margin: 50px auto;
    border-radius: 10px;
    text-align: center;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-quote-block blockquote {
    font-family: 'Zilla Slab', serif; /* Markante Schrift für Zitat */
    font-size: 1.8em;
    line-height: 1.5;
    margin: 0 0 15px 0;
    padding: 0;
    font-style: italic;
}

.article-quote-block .quote-author {
    font-family: 'Lexend', sans-serif;
    font-size: 1.1em;
    font-weight: 500;
    opacity: 0.8;
}

/* --- Call to Action Sektion --- */
.call-to-action-section {
    background-color: #eee;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #ddd;
}

.call-to-action-section h2 {
    font-family: 'Lexend', sans-serif; /* Oder eine andere deiner Hauptschriften */
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.call-to-action-section p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: var(--gelb); /* Deine gelbe Farbe */
    color: #333; /* Dunkler Text auf Gelb */
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #e6a721; /* Leicht dunkleres Gelb */
    transform: translateY(-2px);
}

/* Stile für die Sektion über der Welle */
.content-above-wave {
    padding: 60px 0 120px 0;
    text-align: left; /* Text linksbündig */
    position: relative; /* Für die SVG-Welle darunter */
    z-index: 2; /* Damit der Inhalt über der Welle liegt */
    margin-top: -5px; /* Korrektur, falls eine Lücke zwischen Hero und dieser Section entsteht */
}

.content-above-wave.before-too {
    margin-bottom: 65px;
    z-index: -1;
    margin-top: -50px;
}

.mutig .content-above-wave {
    background-color: var(--hellgelb); /* Hintergrundfarbe wie im Screenshot */
}

.bg-hellgelb {
    background-color: var(--hellgelb)!important;
}

.gut .content-above-wave {
    background-color: var(--hellblau); /* Hintergrundfarbe wie im Screenshot */
}

.schoen .content-above-wave {
    background-color: var(--hellrot); /* Hintergrundfarbe wie im Screenshot */
}

.ueber .content-above-wave {
    background-color: var(--hellturkies); /* Hintergrundfarbe wie im Screenshot */
}

.content-above-wave::after, .section-neuerscheinungen::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../bilder/transition-edge_white.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
}

.section-neuerscheinungen::before, footer:before, .before-too::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../bilder/transition-edge_white.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scale(-1);
    z-index: 2;
}

.section-tag {
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top:0;
}

.mutig .section-tag {
    font-family: 'Raleway';
    font-size: 1.2em;
    color: var(--gelb);
}

.gut .section-tag {
    font-family: 'Zilla Slab';
    font-size: 1.2em;
    color: var(--blau);
}

.schoen .section-tag {
    font-family: 'Lexend-Light';
    font-size: 1.2em;
    color: var(--rot);
}

.ueber .section-tag {
    font-family: 'Lexend-Light';
    font-size: 1.2em;
    color: var(--turkies);
}


.mutig h2 {
    font-family: 'Rustico';
    font-size: 4.2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 100;
}

.gut h2 {
    font-family: 'Zilla Bold';
    font-size: 3.5em;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1em;
}

.schoen h2, .ueber h2 {
    font-family: 'Lexend-Light';
    font-size: 2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1em;
}

.mutige-produkte h2 {
    position: relative;
    left: 150px;
}

.mutige-produkte-center-padd h2 {
    padding: 100px 0 0px 0;
    position: relative;
}

.product-overview {
    padding:40px 0;
}

.gute-produkte h2 {
    position: relative;
    left: 150px;
}

.schoene-produkte h2 {
    position: relative;
    left: 130px;
}

.mutig h3 {
    font-family: 'Rustico';
    font-size: 40px;
    font-weight: 100;
}

.gut h3 {
    font-family: 'Zilla Slab';
    font-size: 35px;
    font-weight: 100;
    margin-bottom:0px;
}

.schoen h3, .ueber h3 {
    font-family: 'Lexend-Light';
    font-size: 35px;
    font-weight: 100;
    margin-bottom:0px;
}

.mutige-produkte h3 {
    position: relative;
    left: -150px;
}

.orange {
    color:var(--gelb);
}

.blau {
    color: var(--blau);
}

.rot {
    color: var(--rot);
}

.lh-normal {
    line-height: 1em;
}

.gut .lh-normal.blau {
    position: relative;
    left: -60px;
    line-height: 1em;
}

.center {
    text-align: center;
}

.rotate {
    transform:rotate(-4deg);
}

.content-above-wave .intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    max-width: 700px; /* Damit der Text nicht zu breit wird */
}

/* Stile für die SVG-Welle */
.wave-container {
    height: 30px; /* Höhe der Welle, anpassen wie im Screenshot */
    margin-top: -30px; /* Überlappung mit der oberen Sektion, damit es wie eine Welle darunter aussieht */
    transform: scale(1, -1); /* Vertikal spiegeln, damit die Welle nach oben zeigt, wenn die Path-Daten wie im Original sind */
    position: relative;
    z-index: 1; /* Unter dem Inhalt der oberen Sektion */
    overflow: hidden; /* Verhindert, dass die Welle über den Container hinausragt */
    display: block; /* Stellt sicher, dass das Div das SVG enthält */
}

.wave-container svg {
    width: 100%;
    height: 100%;
    display: block; /* Entfernt zusätzlichen Platz unter dem SVG */
}


/* Stile für die "AKTUELL" Sektion */
.aktuell-section {
    background-color: white; /* Oder die gewünschte Hintergrundfarbe */
    padding: 80px 0; /* Vertikaler Abstand */
    position: relative;
    z-index: 3; /* Soll über der Welle liegen */
}

.aktuell-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Inhalt oben ausrichten */
    gap: 40px; /* Abstand zwischen Inhalt und Sidebar */
}

.aktuell-content {
    flex: 1; /* Nimmt den meisten Platz ein */
    max-width: 70%; /* Beispielbreite, anpassen nach Bedarf */
}

.aktuell-content .aktuell-tag {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.aktuell-content h3 {
    font-size: 1.8em;
    color: #4C5866;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.aktuell-content p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.aktuell-content .button-link {
    display: inline-block;
    background-color: #F8B400; /* Orange Farbe aus dem Screenshot */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.aktuell-content .button-link:hover {
    background-color: #E0A200; /* Etwas dunkler beim Hover */
}

.aktuell-sidebar {
    background-color: #F8B400; /* Orange Farbe */
    color: white;
    padding: 15px 10px;
    writing-mode: vertical-rl; /* Text vertikal ausrichten */
    text-orientation: mixed; /* Text normal lesbar */
    transform: rotate(180deg); /* Text von unten nach oben lesen */
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    min-width: 60px; /* Breite des Sidebars */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px; /* Positionierung nach oben ziehen */
    height: 200px; /* Beispielhöhe */
    /* Die genaue Positionierung erfordert möglicherweise Anpassungen */
    /* Du könntest hier auch absolute Positionierung in Betracht ziehen, je nach übergeordnetem Layout */
}

.edge-transition {
    z-index: 999999;
    bottom: 0;
    position: absolute;
    width: 100%;
    height: 50px;
}

.edge-transition svg {
    width:100%;
    height:100%;
    color:#fff;
}

.design-wrapper {
    position: relative;
    z-index: 9999;
    margin-top: -142px;
    padding: 4rem 0;
    overflow-x: clip;
}

.design-wrapper1 {
    position: relative;
    z-index: 9999;
    padding: 4rem 0;
    overflow-x: clip;
}

.button-container-start {
    padding: 40px!important;
    display:flex;
    justify-content: center;
    align-items: center;
    gap:40px;
    box-sizing: border-box;
}

.line-container {
    position: relative;
    padding: 8px 0;
    /* Die Schräge wird durch transform: skewY() erzeugt */
    transform: skewY(-4.5deg);
}

.mutig .line-container {
    background-color: var(--gelb); /* Helleres Gelb der Hauptlinie */
}

.gut .line-container {
    background-color: var(--blau); /* Helleres Gelb der Hauptlinie */
}

.schoen .line-container {
    background-color: var(--rot); /* Helleres Gelb der Hauptlinie */
}

.ueber .line-container {
    background-color: var(--turkies); /* Helleres Gelb der Hauptlinie */
}

.author-overview-page .line-container {
    padding-left: calc((100% - 1200px) / 2)!important;
    padding-right: calc((100% - 1200px) / 2)!important;
    padding-top: 50p!important;
    padding-bottom:50px!important;
}

.line-container-thin {
    position: relative;
    transform: skewY(-4.5deg);
}

.mutig .line-container-thin {
    background-color: var(--gelb);
    padding: 3px 0;
}

#js-product-list-header .mutig .line-container-thin {
    background-color: var(--gelb);
    padding: 3px 0;
    height:2px;
}

#js-product-list-header .mutig .weitere-projekte {
    letter-spacing: 2px;
    font-family: 'Rustico';
    position: relative;
    left: 0;
    top: 0;
    color: var(--gelb);
    padding: 0;
    font-size: 35px;
    font-weight: 100;
    line-height: 1;
    transform: rotate(-3deg);
}

.mutig .line-container-thin {
    height:2px;
}

.gut .line-container-thin {
    background-color: var(--blau);
    padding: 2px 0;
    height:2px;
}

.schoen .line-container-thin {
    background-color: var(--rot);
    padding: 2px 0;
    height: 2px;
}

.aktuell-box {
    position: absolute;
    right: -5px;
    top: 1px;
    color: white;
    padding: 10px 60px 10px 100px;
    line-height: 1;
    transform: skewY(3.5deg) rotate(356.5deg);
}

.mutig .aktuell-box {
    font-family: 'Rustico';
    font-size: 3rem;
    font-weight: 100;
    background-color: var(--gelb);
}

.gut .aktuell-box {
    font-family: 'Zilla Bold';
    font-size: 2.5rem;
    font-weight: 100;
    background-color: var(--blau);
}

.schoen .aktuell-box {
    font-family: 'Lexend-Light';
    font-size: 2.5rem;
    font-weight: 100;
    background-color: var(--rot);
}

.ueber .aktuell-box {
    font-family: 'Lexend-Light';
    font-size: 2.5rem;
    font-weight: 100;
    background-color: var(--turkies);
}

.category-top-menu .text-uppercase.h6 {
    display:none;
}

.weitere-mutige-projekte, .mutig .weitere-projekte {
    letter-spacing: 2px;
    font-family: 'Rustico';
    position: absolute;
    left: 50px;
    top: -59px;
    color: var(--gelb);
    padding: 12px 60px 0px 100px;
    font-size: 35px;
    font-weight: 100;
    line-height: 1;
    transform: skewY(3.5deg) rotate(356.5deg);
}

.weitere-projekte {
    letter-spacing: 2px;
    /*position: absolute;
    left: 50px;
    top: -59px;'*/
    padding: 12px 60px 0px 100px;
    line-height: 1;
    transform: rotate(-4deg);
    text-align: right;
}

.gut .weitere-projekte {
    font-family: 'Zilla Bold';
    font-size: 35px;
    font-weight: 100;
    color: var(--blau);
}

.schoen .weitere-projekte {
    font-family: 'Lexend-Light';
    font-size: 35px;
    font-weight: 100;
    color: var(--rot);
}

.subtitle {
    color: #f0ad2d; /* Dieselbe Farbe wie die Aktuell-Box */
    font-weight: 500;
    text-align: center;
    margin-top: 5rem;
    font-size: 1.2rem;
}

.section-schoening {
    font-family: 'Rustico';
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
    padding: 5rem 0;
    background-color: #fff;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    transform: rotate(-4deg);
}

.section-normal {
    padding: 5rem 10%;
    font-size: 120%;
}

/* Linke Spalte */
.schoening-visual-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    font-family: 'Raleway';
    flex:1;
}

.tilted-card {
    /* top: 92px; */
    position: relative;
    background-color: #000;
    width: 25vw;
    height: 25vw;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.tilted-card .portrait {
    position: absolute;
    /* right: -30px; */
    bottom: 0;
    width: 100%;
    height: auto;
    z-index: 2;
}

.autor-info {
    font-size: 14px;
}

.autor-info p {
    margin:0;
    font-weight:bold;
}

.newsletter-cta {
    transform: rotate(-4deg);
    text-align: center;
    transition: all 0.3s ease;
    cursor:pointer;
}

.newsletter-cta:hover {
   transform: rotate(0deg); 
}

.schoen-cta {
    margin-left: -20px;
    text-align: left;
    margin-top: 141px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mutig .newsletter-cta .label {
    font-family: 'Raleway';
    font-size: 150%;
    color: #555;
}

.gut .newsletter-cta .label {
    font-family: 'Zilla Light';
    font-size: 140%;
    color: #555;
}

.newsletter-cta .action-text {
    background-repeat: no-repeat;
    font-weight: 600;
    text-transform: uppercase;
    background-size: initial;
    background-position: left center;
    background-image: url('../bilder/newsletter-pfeil.svg');
    padding-left: 74px;
    transition: transform 300ms ease 0ms;
    font-size: 200%;
    font-weight: 100;
    padding-top: 43px;
    top: -50px;
    position: relative;
    cursor:pointer;
}

.schoen-cta .action-text {
    font-family: 'Lexend-Light';
    background-repeat: no-repeat;
    font-weight: 600;
    background-size: initial;
    background-position: left center;
    background-image: url('../bilder/schoen-pfeil.svg');
    padding-left: 74px;
    transition: transform 300ms ease 0ms;
    font-size: 200%;
    font-weight: 100;
    /* padding-top: 43px; */
    top: -50px;
    position: relative;
    cursor: pointer;
    color: var(--rot);
}

.mutig .newsletter-cta .action-text {
    font-size: 2em;
    font-family: 'Rustico';
}

.gut .newsletter-cta .action-text {
    font-size: 1.7em;
    font-family: 'Zilla Bold';
}

.newsletter-cta .swoosh {
    margin-top: -10px;
}


/* Rechte Spalte */
.schoening-text-col {
    padding-left: 2rem;
}

.schoening-text-col1 {
    padding-left: 2rem;
    flex:1;
}

.schoening-text-col .subtitle, .schoening-text-col1 .subtitle {
    color: #f0ad2d;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
}

.schoening-text-col .heading, .schoening-text-col1 .heading {
    color: #333;
    margin: 10px 0;
    text-transform: uppercase;
}

.mutig .schoening-text-col .heading, .mutig .schoening-text-col1 .heading {
    font-family: 'Rustico';
    font-size: 2.5rem;
}

.gut .schoening-text-col .heading {
    font-family: 'Zilla Bold';
    font-size: 2rem;
}

.schoening-text-col .description, .schoening-text-col1 .description {
    font-family: 'Raleway';
    max-width: 500px;
    margin-top:0;
}

.mutig-button {
    font-family: 'Raleway';
    font-size: 130%;
    background-color: #fff;
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    border: 4px solid var(--gelb);
    color: var(--gelb);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.mutig-button:hover {
    background-color: var(--gelb);
    color: white;
}

.button-container-start .mutig-button {
    margin-top:0;
}

.button-container-start .mutig-button:hover {
    border:4px solid #fff;
}

.gut-button {
    font-family: 'Zilla Slab';
    font-size: 120%;
    background-color: #fff;
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    border: 2px solid var(--blau);
    color: var(--blau);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.gut-button:hover {
    background-color: var(--blau);
    color: white;
}

.schoen-button {
    font-family: 'Lexend-Light';
    font-size: 120%;
    background-color: #fff;
    display: inline-block;
    margin-top: 1.5rem;
    padding: 10px 20px;
    border: 2px solid var(--rot);
    color: var(--rot);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.schoen-button:hover {
    background-color: var(--rot);
    color: white;
}

.section-neuerscheinungen {
    padding: 160px 0 160px 0;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-top: -5px;
}

.mutig .section-neuerscheinungen {
    background-color: var(--gelb);
}

.gut .section-neuerscheinungen {
    background-color: var(--blau);
}

.schoen .section-neuerscheinungen {
    background-color: var(--rot);
}

.ueber .section-neuerscheinungen {
    color: #fff;
    background-color: var(--turkies);
    padding: 200px 10%;
}


.flex-container {
    display:flex;
    gap:25px;
}

.flex-container * {
    flex: 1;
}

.flex-container iframe {
    max-width:100%;
    max-height: calc((100vw - 30px)/16*9);
}

.flex {
    display: flex;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
}
.gap {
    gap:25px;
}

.neuerscheingungen-headline {
    z-index: 9;
    top: 50px;
    transform: translateX(-50%) rotate(-4deg);
    position: absolute;
    left: 50%;
    padding: 5px 20px;
    color: #fff;
    background-color: #000;
    width: fit-content;
    white-space: nowrap;
}

.mutig .neuerscheingungen-headline {
    font-size: 190%;
    font-family: 'Rustico';
}

.gut .neuerscheingungen-headline {
    font-size: 170%;
    font-family: 'Zilla Slab';
}

.schoen .neuerscheingungen-headline {
    font-size: 170%;
    font-family: 'Lexend-Light';
}

.custom-body {
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 2rem;
}

.article-section {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 50px;
}

.article-grid {
    display: grid;
    gap: 2rem;
    
    /* Standard für mobile Geräte: 1 Spalte, die den vollen Platz einnimmt */
    grid-template-columns: 1fr;
}

.article-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Stellt sicher, dass nichts über den Rand hinausragt */
}

.article-card img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #ccc; /* Falls Bilder nicht laden */
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Sorgt dafür, dass der Inhaltsbereich wächst */
}

.card-category {
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 0.5rem 0;
}

.mutig .card-category {
    color: var(--gelb);
}

.gut .card-category {
    color: var(--blau);
}

.schoen .card-category {
    color: var(--rot);
}

.card-title {
    font-family: 'Rustico';
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1.5rem 0;
    flex-grow: 1; /* Drückt den Button nach unten */
}

.mutig .read-more-btn {
    font-family: 'Rustico';
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background-color: var(--hellgelb);
    border: 0;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.gut .read-more-btn {
    font-family: 'Zilla Slab';
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background-color: var(--hellblau);
    border: 0;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.schoen .read-more-btn {
    font-family: 'Lexend';
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1rem;
    background-color: var(--hellrot);
    border: 0;
    text-decoration: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    font-weight:bold;
}

.read-more-btn:hover {
    background-color: #e9e8e2;
    border-color: #c0c0c0;
}

.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    color: #444;
    background-color: transparent;
    border: 1px solid #aaa;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.load-more-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

footer {
    padding-top: 160px!important;
    background-color: var(--gelb);
    padding: 160px 20px 160px 20px;
    text-align: right;
    position: relative;
    z-index: 2;
    margin-top: -5px;
    height: var(--footer-height);
}

footer div a {
    font-weight:bold;
}

.page-footer {
    display:none!important;
}

/* Warenkorb Produkt-Zahl */

.cart-icon-link {
    position: relative; /* Wichtig für die Positionierung der Zahl */
    display: inline-block;
    text-decoration: none;
}

.cart-quantity {
    position: absolute;
    top: -5px;      /* Position anpassen */
    right: -10px;   /* Position anpassen */
    background-color: var(--rot); /* Deine Akzentfarbe */
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 2px 6px;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}


/* ==========================================================================
   Stile für die Produktübersicht im neuen Design (V2)
   ========================================================================== */

/* Das Grid-Layout bleibt gleich */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Die neue Produktkarte */
.product-card-v2 {
  background-color: #ffffff;
  border: 1px solid #e9e9e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-card-v2__link {
  text-decoration: none;
  color: #333;
  display: block;
}

/* Der obere Container für das Bild mit farbigem Hintergrund */
.product-card-v2__image-container {
  padding: 1.5rem;
  background-color: #f5f5f5; /* Standard-Hintergrundfarbe */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Spezifische Hintergrundfarben basierend auf der Sektions-Klasse */
.mutig .product-card-v2__image-container {
  background-color: var(--hellgelb);
}
.gut .product-card-v2__image-container {
  background-color: var(--hellblau);
}
.schoen .product-card-v2__image-container {
  background-color: var(--rot); /* Annahme für 'schön', passe die Variable ggf. an */
}

.product-card-v2__image {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

/* Der untere Container für den Text */
.product-card-v2__content {
  padding: 1rem 1.5rem 1.5rem;
  text-align: left;
}

/* Die kleine Kategorie-Überschrift */
.product-card-v2__category {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 0.5rem;
  color: #999; /* Standardfarbe */
}

/* Spezifische Farben für die Kategorie-Überschrift */
.mutig .product-card-v2__category {
  color: var(--gelb);
}
.gut .product-card-v2__category {
  color: var(--blau);
}
.schoen .product-card-v2__category {
  color: var(--rot);
}

/* Der Produktname (Standardschriftart) */
.product-card-v2__name {
  font-family: 'Raleway', sans-serif; /* Deine Standardschriftart */
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  line-height: 1.4;
}

/* Die Kurzbeschreibung */
.product-card-v2__description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 1rem;
  height: 70px; /* Feste Höhe, um die Karten anzugleichen */
  overflow: hidden;
}

/* Der Preis */
.product-card-v2__price {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}

/* Stile für die einzelnen Inhaltsblöcke mit abwechselnden Farben */

.ets-ept-prod-tabs.hooks_7 .tab-item {
  position: relative;
  padding: 80px 0;
  margin: 100px 0;
  transform: skewY(-2deg);
}

/* Jedes GERADE Element (2., 4., etc.) bekommt einen gelben Hintergrund */
.ets-ept-prod-tabs.hooks_7 .tab-item:nth-of-type(even) {
  background-color: #ffffff;
}

/* Jedes UNGERADE Element (1., 3., etc.) bekommt einen weißen Hintergrund */
.ets-ept-prod-tabs.hooks_7 .tab-item:nth-of-type(odd) {
  background-color: var(--gelb);
  /* Optional: ein feiner Rand für die weißen Blöcke */
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

/* Der Titel-Sticker (bleibt gleich) */
.ets-ept-prod-tabs.hooks_7 .tab-item .tab-title {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  font-family: 'Rustico', sans-serif;
  font-size: 2em!important;
  font-weight: normal;
  text-transform: uppercase;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%) skewY(2deg) rotate(-3deg);
  z-index: 10;
}

/* Der Inhalts-Container (bleibt gleich) */
.ets-ept-prod-tabs.hooks_7 .tab-item .tab-item-content {
  transform: skewY(2deg);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.ets-ept-prod-tabs.hooks_2 .tab-item-content {
    font-weight:bold;
}

/* ==========================================================================
   Individuelles Layout für die Produktdetailseite
   ========================================================================== */

/* 1. Das neue zweispaltige Grid-Layout */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei gleich breite Spalten */
    gap: 3rem; /* Abstand zwischen den Spalten */
    margin-top: 2rem;
}

/* 2. Styling für die Produkt-Infos in der rechten Spalte */

/* Titel des Produkts */
#main h1[itemprop="name"], .h1[itemprop="name"] {
    font-family: 'Rustico', sans-serif; /* Deine Headline-Schriftart */
    font-size: 2.5rem;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Untertitel / Kurzbeschreibung */
#product-description-short {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

/* Preis-Styling */
.product-prices {
    border-top: 1px solid #eee;
    /* border-bottom: 1px solid #eee; */
    padding: 1rem 0 0 0;
    margin: 1.5rem 0;
    text-align: right;
}

.product-quantity {
    justify-content: flex-end;
}

.current-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--blau); /* Deine Akzentfarbe */
}

/* "In den Warenkorb"-Bereich */
.product-add-to-cart .btn {
    background-color: var(--gelb);
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    padding: 12px 25px;
    border: none;
    transition: background-color 0.3s ease;
}
.product-add-to-cart .btn:hover {
    background-color: #e6a721; /* Leicht dunkleres Gelb */
}

/* 3. Styling für die "Merkmale" (Genre, ISBN, etc.) */

/* Wir verstecken die Standard-Tabs */
#main .tabs {
    display: none;
}

/* Und zeigen stattdessen den "Produktdetails"-Inhalt immer an */
.product-information .product-description {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.product-information .product-features {
    margin-top: 2rem;
}

.product-features dl.data-sheet {
    display: grid;
    grid-template-columns: 100px 1fr; /* Spalte für Label und Wert */
    gap: 0.5rem 1rem;
}

.product-features dt.name {
    font-weight: bold;
    color: #333;
}

.product-features dd.value {
    margin-left: 0;
}

/* ==========================================================================
   KORRIGIERTER Feinschliff für Preis und Warenkorb-Button
   ========================================================================== */

/* Preis-Styling (zielt jetzt auf die richtige Klasse .current-price-value) */
.current-price .current-price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: block; /* Stellt korrekte Abstände sicher */
}

/* Den Text unter dem Preis anpassen (egal ob "Bruttopreis" oder "inkl. MwSt...") */
.product-prices .tax-shipping-delivery-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: -0.5rem;
    display: block;
}

/* Den "In den Warenkorb"-Button anpassen (bleibt gleich, ist aber hier zur Vollständigkeit) */
.product-add-to-cart .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    padding: 15px 30px;
}

/* Das Warenkorb-Icon im Button anpassen (bleibt gleich) */
.product-add-to-cart .btn .material-icons {
    margin-right: 8px;
    font-size: 1rem;
    padding: 0;
    height: auto;
}


/* --- TEIL 2: STILE FÜR DIE KLEINE DATEN-TABELLE (GENRE, ETC.) --- */
/* Wir zielen jetzt spezifisch auf den Container mit der Klasse .hooks_5 */

/* Der Haupt-Container für die Daten */
.ets-ept-prod-tabs.hooks_5 {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Das Grid-Layout für die einzelnen Datenpunkte */
.ets-ept-prod-tabs.hooks_5 .tab-menu-stacked {
    display: grid;
    /* Erstellt bis zu 3 Spalten, die sich automatisch anpassen */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem 2rem; /* Abstand zwischen Zeilen und Spalten */
}

/* Der einzelne Datenpunkt (z.B. "Genre" und "Reisebericht") */
.ets-ept-prod-tabs.hooks_5 .tab-item {
    padding: 0.5rem 0;
}

/* Der Titel/das Label (z.B. "Genre") */
.ets-ept-prod-tabs.hooks_5 .tab-title {
    font-weight: bold;
    color: var(--gelb);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Der Wert (z.B. "Reisebericht") */
.ets-ept-prod-tabs.hooks_5 .tab-item-content {
    font-size: 0.9rem;
    color: #555;
}

.blockreassurance_product {
    display:none;
}

.js-product-additional-info {
    display:none;
}

.social-sharing, .product-comments-additional-info {
    display:none;
}

/* ==========================================================================
   Stile für die externen Shop-Buttons auf der Produktseite
   ========================================================================== */

/* Der Container, in dem die Buttons liegen */
.external-shop-links {
    margin-top: 1rem;
    /* Fügt etwas Platz hinzu, falls du eine Überschrift darüber hast */
}

/* Der eigentliche Button-Stil */
.external-button {
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    /* font-weight: bold; */
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Der Hover-Effekt (wenn die Maus darüber ist) */
.external-button:hover {
    background-color: var(--gelb); /* Dein gelber Farbwert */
    border-color: var(--gelb); /* Der Rand bekommt dieselbe Farbe, um "unsichtbar" zu werden */
    color: #333; /* Textfarbe bleibt dunkel für guten Kontrast */
}

/* Der Stern-Icon, der per CSS hinzugefügt wird */
.external-button::before {
    content: '★'; /* Fügt das Stern-Symbol hinzu */
    font-size: 1.2em; /* Macht den Stern etwas größer als den Text */
}

/* ==========================================================================
   Symbole für die Format-Buttons
   ========================================================================== */

/* Allgemeiner Stil für alle Format-Button-Symbole */
.format-button::before {
    font-size: 1.2em;
    margin-right: 0.1em; /* Kleinerer Abstand, da Icons oft breiter sind */
}

/* Spezifische Symbole (Emojis) für jedes Format */
.format-button.format-hardcover::before {
    content: '📓'; /* Geschlossenes Buch-Symbol */
}

.format-button.format-taschenbuch::before,
.format-button.format-paperback::before {
    content: '📖'; /* Offenes Buch-Symbol */
}

.format-button.format-ebook::before {
    content: '📱'; /* Smartphone/E-Reader-Symbol */
}

/* Der Stern für die normalen externen Buttons bleibt unverändert */
.external-button:not(.format-button)::before {
    content: '★';
    font-size: 1.2em;
}

/* ==========================================================================
   Stile für die Autoren-Übersichtsseite
   ========================================================================== */
.author-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 3rem 2rem;
    margin-top: 3rem;
}

.author-card {
    text-align: center;
    cursor: pointer;
}

.author-card__image-container {
    position: relative;
    transform: rotate(-4deg);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.author-card:hover .author-card__image-container {
    transform: rotate(0) scale(1.05);
}

.author-card__image-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    height: 40px;
    width: 100%;
    z-index: -1;
    background-color: #eee; /* Fallback-Farbe */
}

/* Spezifische Farben für die Kategorien */
.author-card__image-container.mutig::after { background-color: var(--gelb); }
.author-card__image-container.gut::after { background-color: var(--blau); }
.author-card__image-container.schoen::after { background-color: var(--rot); }


.author-card__image-container img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #fff;
}

.author-card__name {
    font-weight: bold;
    color: #333;
}

/* Stile für das Autoren-Modal */
#author-modal { max-width: 800px; }
#author-modal .modal-content-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: start;
}
#author-modal-image { width: 100%; height: auto; }
#author-modal-name { margin-top: 0; font-family: 'Rustico', sans-serif; }
#author-modal-bio { line-height: 1.7; }

/* ==========================================================================
   Stile für das Autoren-Modal (Pop-up)
   ========================================================================== */

/* Der halbtransparente Hintergrund, der die Seite abdeckt */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99020;
    
    /* Zentriert das Modal-Fenster mit Flexbox */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Animation für sanftes Einblenden */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Macht das Overlay sichtbar, wenn es per JS angezeigt wird */
.modal-overlay[style*="display: block"] {
    opacity: 1;
    pointer-events: auto;
}


/* Das Modal-Fenster selbst */
.modal#author-modal {
    position: relative; /* Wichtig für den Schließen-Button */
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 800px;
    max-height: 90vh; /* Verhindert, dass das Modal auf kleinen Bildschirmen zu hoch wird */
    overflow-y: auto; /* Fügt einen Scrollbalken hinzu, falls der Inhalt zu lang ist */
}

/* Der Schließen-Button (X) */
.modal-close#author-modal-close, .modal-close#team-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    font-weight: 300;
    color: #888;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}
.modal-close#author-modal-close:hover, .modal-close#team-modal-close:hover {
    color: #000;
}

/* Der innere Container mit dem 2-Spalten-Layout */
.modal-content-inner {
    display: grid;
    grid-template-columns: 250px 1fr; /* Linke Spalte für Bild, rechte für Text */
    gap: 2.5rem; /* Abstand zwischen Bild und Text */
    align-items: start; /* Richtet beide Spalten oben aus */
}

/* Das Bild des Autors im Modal */
#author-modal-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Der Name des Autors im Modal */
#author-modal-name {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: 'Rustico', sans-serif; /* Deine Headline-Schriftart */
    font-size: 2.5rem;
    line-height: 1.2;
}

/* Die Biografie des Autors im Modal */
#author-modal-bio {
    line-height: 1.7;
    font-size: 1rem;
    color: #444;
}

/* ==========================================================================
   Stile für das Autoren-Kontaktformular
   ========================================================================== */
.contact-form-section {
    padding: 80px 0;
    position: relative;
    background-color: #fff;
}

.contact-form-section .container { position: relative; z-index: 2; }

.form-title {
    font-family: 'Rustico', sans-serif;
    color: var(--gelb);
    font-size: 3.5em;
    text-align: center;
    transform: rotate(-2deg);
    margin-bottom: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-container input, .form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: var(--hellgelb);
    border-radius: 4px;
    margin-bottom: 1rem;
    box-sizing: border-box;
}
.form-row { display: flex; gap: 1rem; }
.captcha-row { display: flex; align-items: center; gap: 10px; }
.captcha-row label { font-weight: bold; }
.captcha-row input { width: 60px; }
.captcha-row .btn { background-color: var(--blau); color: #fff; border: none; padding: 12px 25px; }

.form-info { line-height: 1.7; }
.form-info p {
    margin-top:0;
}
.form-message { padding: 1rem; margin-bottom: 1rem; border-radius: 5px; }
.form-message.success { background-color: #d4edda; color: #155724; }
.form-message.error { background-color: #f8d7da; color: #721c24; }

/* ==========================================================================
   Stile für das Manuskript-Einreichungsformular
   ========================================================================== */

.manuscript-submission-page .container {
    max-width: 800px;
}

.manuscript-form {
    margin-top: 2rem;
    background-color: #fdfdfd;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 5px;
}
.manuscript-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.manuscript-form legend {
    font-family: 'Rustico', sans-serif;
    font-size: 1.5rem;
    padding: 0;
    margin-bottom: 1rem;
    color: var(--blau);
}
.manuscript-form .form-row {
    display: flex;
    gap: 1.5rem;
}
.manuscript-form .form-row > * {
    flex: 1;
}
.manuscript-form input,
.manuscript-form select,
.manuscript-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-sizing: border-box;
}
.manuscript-form .privacy-notice {
    font-size: 0.9rem;
    color: #777;
    margin-top: 1.5rem;
}
.manuscript-form .btn {
    background-color: var(--blau);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    cursor: pointer;
}

.manuskript-img img {
    position: relative;
    width: 100%;
}

.marg-top {
    margin-top: 50px;
}

/* ==========================================================================
   Stile für die Team-Übersichtsseite
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 3rem 2rem;
    margin-top: 3rem;
}

.team-card {
    text-align: center;
    cursor: pointer;
}

.team-card__image-container {
    position: relative;
    transform: rotate(-4deg); /* Andere Richtung für Abwechslung */
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
    padding: 10px;
    background-color: #fff; /* Weißer Polaroid-Rahmen */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-card:hover .team-card__image-container {
    transform: rotate(0) scale(1.05);
}

.team-card__image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.team-card__name {
    font-weight: bold;
    color: #333;
    margin: 0 0 0.25rem 0;
}

.team-card__role {
    font-size: 0.9rem;
    color: var(--blau); /* Akzentfarbe für die Rolle */
    margin: 0;
}

/* Stile für das Team-Modal (sehr ähnlich zum Autoren-Modal) */
.modal#team-modal {
    position: relative;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
}
.modal#team-modal .modal-content-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.modal#team-modal #team-modal-image { width: 100%; }
.modal#team-modal #team-modal-name { margin-top: 0; font-family: 'Rustico', sans-serif; }
.modal#team-modal #team-modal-role { 
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--blau);
    margin: -1rem 0 1rem 0;
}
.modal#team-modal #team-modal-bio { line-height: 1.7; }

/* ==========================================================================
   Stile für die Video-Übersichtsseite
   ========================================================================== */
.video-overview-page .container {
    max-width: 1200px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.video-layout-grid {
    display: grid;
    /* KORREKTUR: 1fr (Sidebar) links, 2.5fr (Hauptinhalt) rechts */
    grid-template-columns: 1fr 2.5fr; 
    gap: 2.5rem;
}

/* Stile für den Play-Button auf dem Haupt-Video */
.main-video-player {
    position: relative; /* Wichtig für die Positionierung des Play-Buttons */
}

/* Wir verwenden dieselbe Klasse wie in der Sidebar für ein einheitliches Aussehen */
.main-video-player .play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 80px; /* Größerer Button für das Hauptvideo */
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* Standardmäßig nicht klickbar */
    /*opacity: 0;  Standardmäßig unsichtbar */
}

/* Button nur anzeigen, wenn das Video pausiert ist */
.main-video-player.is-paused .play-icon-overlay {
    pointer-events: auto; /* Klickbar machen */
    opacity: 1; /* Sichtbar machen */
}

.main-video-player.is-paused .play-icon-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.main-video-player video {
    background-color: #000;
    border-radius: 5px;
    width: 100%; /* Stellt sicher, dass das Video responsiv ist */
}

.main-video-info {
    margin-top: 1.5rem;
}
.main-video-info h2 {
    margin: 0 0 1rem 0;
}

.mutig .main-video-info h2 {
    font-family: 'Rustico', sans-serif;
    font-size: 22px;
}

.gut .main-video-info h2 {
    font-family: 'Zilla Bold', sans-serif;
    font-size: 22px;
}

.schoen .main-video-info h2 {
    font-family: 'Lexend-Light', sans-serif;
    font-size: 22px;
}

/* ==========================================================================
   NEUE Stile für die Video-Sidebar (Version 2.0)
   ========================================================================== */

/* Der Hauptcontainer der Sidebar */
.video-sidebar {
    /* Wir entfernen den Farbverlauf und den Rand für einen saubereren Look */
    border-right: 1px solid #ddd;
    background-color: transparent;
    padding: 1rem 3rem 1rem 0;
}

/* Die Überschrift "Weitere Folgen" */
.video-sidebar h3 {
    transform: rotate(-2deg);
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    background-color: var(--gelb);
    letter-spacing: 1px;
    font-size: 1rem;
    margin: 0 0 1.5rem 0;
    padding: 0.5rem;
    border-bottom: 2px solid var(--hellgelb);
}

.mutig .video-sidebar h3 {
    background-color: var(--gelb);
}

.gut .video-sidebar h3 {
    background-color: var(--blau);
}

.schoen .video-sidebar h3 {
    background-color: var(--rot);
}

/* Die Liste, die alle Videos enthält */
.video-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Mehr Abstand zwischen den Videos */
}

/* Ein einzelnes Video in der Liste */
.video-list-item {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Der Container für das Vorschaubild (hier passiert die Magie) */
.video-thumbnail {
    position: relative;
    transform: rotate(-2deg); /* Leicht in die andere Richtung gekippt */
    transition: transform 0.3s ease;
    z-index: 1;
}

.video-list-item:hover .video-thumbnail {
    transform: rotate(0deg) scale(1.05); /* Richtet sich beim Hover gerade aus und zoomt leicht */
}

.video-thumbnail::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Position des farbigen "Schatten"-Balkens */
    right: -8px;
    height: 30%; /* Höhe des Balkens */
    width: 100%;
    z-index: -1;
    background-color: var(--gelb); /* Dein Gelb als Akzentfarbe */
    transition: height 0.3s ease;
}

.video-list-item:hover .video-thumbnail::after {
    height: 50%; /* Der Balken wird beim Hover etwas größer */
}

.video-thumbnail img {
    width: 100%;
    display: block;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Die Video-Infos (werden jetzt UNTER dem Bild platziert) */
.video-item-info {
    margin-top: 1rem; /* Abstand vom Bild */
}

.video-item-info h4 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
}

.featured-video-flex-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Linke Spalte mit dem Poster */
.video-poster-column {
    flex: 1 1 55%; /* Nimmt etwas mehr Platz ein */
    transform: rotate(-4.5deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
}

.video-poster-column.play {
transform: rotate(0deg);
}

.video-lightbox-trigger {
    display: block;
    position: relative;
}

.video-poster-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.video-embed-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Dies erzeugt ein 16:9 Seitenverhältnis (9 / 16 = 0.5625) */
    padding-bottom: 56.25%; 
    height: 0;
    margin-bottom: 10px;
}

.video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; /* Entfernt den unschönen Standard-Rahmen */
}

/* Der Play-Button im Overlay */
.play-button-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.2);
    border-radius: 5px;
    opacity: 1;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}
.video-lightbox-trigger:hover .play-button-overlay {
    background-color: rgba(0,0,0,0.4);
}

.play-button-circle {
    width: 90px;
    height: 90px;
    background-color: var(--gelb);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.video-lightbox-trigger:hover .play-button-circle {
    transform: scale(1.1);
}
.play-button-circle svg {
    width: 50%;
    height: 50%;
    fill: white;
    margin-left: 5px; /* Optische Korrektur des Dreiecks */
}

/* Rechte Spalte mit dem Text */
.video-text-column {
    flex: 1 1 45%;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(-4.5deg);
    border-radius: 5px;
}
.video-text-column h3 {
    margin: 0 0 1rem 0;
    line-height:1.2em;
}

.mutig .video-text-column h3 {
    font-family: 'Rustico', sans-serif;
    font-size: 22px;
}

.gut .video-text-column h3 {
    font-family: 'Zilla Bold', sans-serif;
    color: #333;
    font-size: 22px;
}

.gut .video-text-column .untertitel, .gut #main-video-subtitle {
    color:var(--blau);
    font-weight:bold;
}

.mutig .video-text-column .untertitel, .mutig #main-video-subtitle {
    color:var(--gelb);
    font-weight:bold;
}

.schoen .video-text-column .untertitel, .schoen #main-video-subtitle {
    color:var(--rot);
    font-weight:bold;
}

.schoen .video-text-column h3 {
    font-family: 'Lexend-Light', sans-serif;
    color: var(--rot);
}

.video-text-column p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Stile für die Video-Lightbox */
.video-lightbox-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}
.video-lightbox-content video {
    width: 100%;
    height: auto;
}
.video-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Animation für die Drehung des Hauptvideos */
.video-poster-column {
    flex: 1 1 55%;
    transform: rotate(-4.5deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    /* Sanfter Übergang für die Transformation hinzufügen */
    transition: transform 0.5s ease-in-out;
}

.video-poster-column.play {
    transform: rotate(0deg);
}


/* Stile für die neue Video-Galerie */
.section-video-grid {
    padding: 60px 0;
}

.video-grid {
    display: grid;
    /* Responsive Spalten: Passt sich dem verfügbaren Platz an */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.video-grid-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-grid-item:hover {
    background-color: #f7d794;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.video-grid-item .video-thumbnail {
    display: block;
    width: 100%;
    position: relative;
    cursor: pointer;
}

.video-grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

.play-icon-overlay-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 80px; /* Vertikale Zentrierung für das Dreieck */
    transition: background-color 0.3s;
}

.video-thumbnail:hover .play-icon-overlay-small {
    background-color: rgba(0, 0, 0, 0.7);
}

.video-grid-item .video-info {
    padding: 20px;
}
.video-grid-item .video-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}
.video-grid-item .video-info .video-subtitle {
    font-weight:bold;
    margin: 10px 0 15px 0;
    font-size: 0.9rem;
    color: #555;
}
.video-grid-item .video-info .video-date {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* Fallback-Hintergrund für das gelbe Video-Item */
.trennstrich {
    background-color: var(--gelb);
    height:5px;
    width:100%;
}

/* Styling für den Teilen-Bereich */
.share-container {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-top: 25px;
}

.share-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.share-copy-wrapper {
    display: flex;
    margin-bottom: 15px;
}

.share-copy-wrapper input[type="text"] {
    flex-grow: 1;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 4px 0 0 4px;
    background-color: #fff;
    color: #555;
}

.share-copy-wrapper .copy-btn {
    border: 1px solid #007bff;
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    transition: background-color 0.2s;
}

.share-copy-wrapper .copy-btn:hover {
    background-color: #0056b3;
}

.share-copy-wrapper .copy-btn.copied {
    background-color: #28a745;
    border-color: #28a745;
}

.share-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-social-links .social-link {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
}
.share-social-links .social-link:hover {
    opacity: 0.85;
}

.social-link.telegram { background-color: #0088cc; }
.social-link.whatsapp { background-color: #25D366; }
.social-link.twitter  { background-color: #1DA1F2; }
.social-link.facebook { background-color: #1877F2; }

/* Styling für den neuen dezenten Teilen-Button */
.share-container-v2 {
    position: relative;
    display: inline-block; /* Sorgt dafür, dass der Container nicht die volle Breite einnimmt */
    width:100%;
}

.share-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    background-color: #f1f1f1;
    font-size: 1rem;
    width: fit-content;
}

.share-trigger:hover {
    background-color: #e0e0e0;
}

.share-trigger svg {
    stroke: #333;
}

.share-flyout {
    position: absolute;
    bottom: calc(100% + 10px); /* Positioniert das Menü über dem Button */
    left: 0;
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 10;

    /* Standardmäßig ausgeblendet und für die Animation vorbereitet */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

/* Zeige das Flyout-Menü an, wenn über den Container gehovert wird */
.share-container-v2:hover .share-flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-flyout .share-copy-wrapper {
    display: flex;
    margin-bottom: 15px;
}

.share-flyout .share-copy-wrapper input {
    flex-grow: 1;
    border: 1px solid #ccc;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 4px 0 0 4px;
}

.share-flyout .copy-btn {
    border: 1px solid #007bff;
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}
.share-flyout .copy-btn.copied {
    background-color: #28a745;
    border-color: #28a745;
}

.share-flyout .share-social-links {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.share-flyout .share-social-links a {
    color: #555;
    transition: color 0.2s;
}

.share-flyout .share-social-links a:hover {
    color: #000;
}

.ueber-flex {
    display: flex;
    /* gap: 20%; */
    margin-top: 30px;
    justify-content: space-between;
}

.ueber .flexx {
    max-width:250px;
}

.right {
    text-align: right;
}

.mutig.right {
    font-family: 'Rustico', sans-serif;
    font-weight: 100;
    color:var(--gelb);
}

.gut.right {
    font-family: 'Zilla Bold', sans-serif;
    font-weight: 600;
    color:var(--blau);
}

.schoen.right {
    font-family: 'Lexend-Light', sans-serif;
    font-weight: 600;
    color:var(--rot)
}

.ueber .gr-schmal {
    font-size:170%;
    max-width: 350px;
}


.ueber .flex-cont {
    display: flex;
    margin-top: 50px;
    align-items: center;
    gap: 40px;
    max-width: 950px;
    /* background-color: white; */
    /* padding: 40px; */
    border-radius: 12px;
    align-items: stretch;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

/* * 2. Die beiden direkten Kinder (Bild und Text) werden zu Flex-Items.
    * - flex: 1 -> Beide nehmen den verfügbaren Platz gleichmäßig ein.
    * - min-width: 0 -> Verhindert, dass Flex-Items überlaufen.
*/
.image-column,
.text-column {
    flex: 1;
    min-width: 0;
}

.image-column {
    max-width: 300px;
}

/* Styling für das Bild */
.image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Styling für den Text-Inhalt */
.text-column p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 25px 0;
    font-weight: 500;
}

/* Styling für den Button */
.ueber .section-neuerscheinungen .cta-button {
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid#fff;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    justify-content: flex-start;
}

.ueber .section-neuerscheinungen .cta-button:hover {
    background-color: #008a83;
    color: white;
}

/* SVG-Icon im Button. fill="currentColor" sorgt dafür, dass das Icon die Farbe des Textes übernimmt. */
.ueber .section-neuerscheinungen .cta-button svg {
    width: 25px;
    height: 25px;
}

.ueber-small-left {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.ueber-left {
        margin: 0;
    font-size: 3em;
    font-weight: 400;
}

.container .ueber .flex-cont {
    margin-top:20px;
    margin-bottom: 50px;
}

/* Die eigentlichen Stile für die Liste */
.custom-list {
    /* Entfernt die Standard-Aufzählungszeichen und die Einrückung */
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative; /* Wichtig für die Positionierung des Aufzählungspunktes */
    padding-left: 25px; /* Schafft Platz für den Punkt und den Abstand zum Text */
    
    /* Visuelle Anpassungen laut Screenshot */
    font-size: 1.5rem; /* Größere Schrift */
    color: #555; /* Dunkelgrauer Text */
    margin-bottom: 12px; /* Vertikaler Abstand zwischen den Punkten */
}

/* Erstellt den Aufzählungspunkt als Pseudo-Element */
.custom-list li::before {
    content: '•'; /* Das ist der Aufzählungspunkt */
    position: absolute; /* Positioniert den Punkt exakt */
    left: 0;
    top: 0;
    color: #555; /* Farbe des Punktes */
    font-size: 1.2em;
}

/* NEU: CSS für den Lade-Zustand der Upload-Karten (in index.html einfügen) */
.comparison-track-card.is-converting {
    cursor: wait;
    border-color: #f59e0b; /* Bernstein-Farbe für "in Arbeit" */
    background-color: #fffbeb;
    animation: pulse-border 2s infinite;
}

/* Deaktiviert Klicks während der Konvertierung */
.comparison-track-card.is-converting {
    pointer-events: none;
}

@keyframes pulse-border {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

/* Ein einfacher, sauberer CSS-Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #f59e0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.rotate {
    transform: rotate(-4deg);
}

.weiss {
    background-color: #fff;
    padding:40px;
}

/* Das Gitter-Layout für die Galerie */
    .image-gallery {
        display: grid;
        /* Responsive Spalten: Passt sich der Bildschirmgröße an */
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem; /* Abstand zwischen den Bildern */
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Styling für jedes einzelne Galerie-Element */
    .gallery-item {
        display: block;
        overflow: hidden; /* Verhindert, dass das Bild beim Skalieren über den Rand geht */
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
    }

    /* Hover-Effekt für die Interaktion */
    .gallery-item:hover {
        transform: scale(1.05); /* Vergrößert das Element leicht */
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    }

    /* Das Bild im Galerie-Element */
    .gallery-item img {
        width: 100%;
        height: auto;
        display: block; /* Entfernt unerwünschten Leerraum unter dem Bild */
    }
    
    /* Das Overlay (Modal), das standardmäßig versteckt ist */
    .image-overlay {
        position: fixed; /* Bleibt an Ort und Stelle, auch beim Scrollen */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.85); /* Halbtransparenter schwarzer Hintergrund */
        display: none; /* Standardmäßig unsichtbar */
        justify-content: center; /* Zentriert das Bild horizontal */
        align-items: center;   /* Zentriert das Bild vertikal */
        z-index: 999999; /* Stellt sicher, dass es über allem anderen liegt */
        padding: 20px;
        box-sizing: border-box;
    }
    
    /* Das große Bild im Overlay */
    .overlay-image {
        max-width: 90%;  /* Nimmt maximal 90% der Breite ein */
        max-height: 90%; /* Nimmt maximal 90% der Höhe ein */
        border-radius: 5px;
    }

    /* Der Schließen-Button (das 'X') */
    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 3rem;
        color: white;
        cursor: pointer;
        line-height: 1;
    }

    /* --- Allgemeines Styling für die Top 3 Kategorien --- */
    .block-categories a[href*="/10-das-mutige"],
    .block-categories a[href*="/11-das-gute"],
    .block-categories a[href*="/12-das-schoene"] {
        transform: rotate(-2deg);
        line-height: 1.2em;
        font-size: 26px;
        font-weight: bold;
        text-decoration: none;
        border-bottom: 2px solid;
        display: inline-block;
        padding-bottom: 4px;
        margin-bottom: 10px!important;
        transition: all 0.3s ease;
    }

    /* --- Individuelle Farben für jede Kategorie --- */

    /* 1. Das Mutige (Gelb/Gold) */
    .block-categories a[href*="/10-das-mutige"] {
        font-family: 'Rustico', sans-serif;
        font-weight:100!important;
        color: var(--gelb);
        border-bottom-color: var(--gelb);
    }

    /* 2. Das Gute (Blau) */
    .block-categories a[href*="/11-das-gute"] {
        font-family: 'Zilla Bold', sans-serif;
        font-weight:600;
        color: var(--blau);
        border-bottom-color: var(--blau);
    }

    /* 3. Das Schöne (Rot) */
    .block-categories a[href*="/12-das-schoene"] {
        font-family: 'Lexend-Light', sans-serif;
        font-weight:600;
        color: var(--rot);
        border-bottom-color: var(--rot);
    }

    .block-categories a[href*="/10-das-mutige"]:hover,
    .block-categories a[href*="/11-das-gute"]:hover,
    .block-categories a[href*="/12-das-schoene"]:hover {
        transform: rotate(0deg);
    }

    /* Container für den gesamten Inhalt */
        .contact-wrapper {
            gap: 50px;
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Stil für jede einzelne Sektion (Händler, Presse) */
        .contact-section {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 2rem 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        /* Überschriften (h2) */
        .contact-section h2 {
            font-size: 1.8rem;
            color: #1d3557;
            border-bottom: 2px solid var(--blau);
            padding-bottom: 0.75rem;
            margin-top: 0;
        }

        /* Absätze (p) */
        .contact-section p {
            line-height: 1.7;
            font-size: 1rem;
            color: #454545;
        }

        /* Liste für Kontaktdetails */
        .contact-details {
            list-style: none;
            padding: 0;
            margin-top: 1.5rem;
        }

        .contact-details li {
            margin-bottom: 1rem;
            font-size: 1rem;
            display: flex;
            align-items: flex-start;
        }

        /* Beschriftungen (z.B. "Telefon:") */
        .contact-details strong {
            display: inline-block;
            min-width: 140px; /* Sorgt für eine saubere Ausrichtung */
            color: #1d3557;
        }

        /* Links (E-Mail und Telefon) */
        .contact-section a {
            color: var(--blau);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .contact-section a:hover {
            text-decoration: underline;
            color: var(--blau);
        }

        .abstand {
            margin-top:50px;
        }

        .row {
            position: relative;
            z-index: 1;
        }

        .pc-not {
            display:none;
        }

        .mobile-not {
            display:block;
        }

/* Responsive Anpassung */
@media (max-width: 992px) {
    .featured-video-flex-container {
        flex-direction: column;
    }
    .video-poster-column, .video-text-column {
        transform: rotate(0);
        width: 100%;
    }

    .video-layout-grid {
        grid-template-columns: 1fr; /* Spalten stapeln sich */
    }
}

/* Responsive Anpassung für mobile Geräte */
@media (max-width: 992px) {
    .product-layout-grid {
        grid-template-columns: 1fr; /* Nur noch eine Spalte auf kleineren Bildschirmen */
    }
}

@media (min-width: 1024px) {
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* --- Responsive Anpassungen für die Artikelseite --- */
@media (max-width: 1024px) {
    .hero-article-section {
        height: 50vh;
    }
    .hero-content h1 {
        font-size: 3em;
    }

    /* Desktop Navigation verstecken */
    .header-nav {
        display: none;
    }

    /* Hamburger-Button anzeigen */
    .hamburger-menu {
        display: flex;
    }

    /* Header Icons nach rechts verschieben */
    .header-icons {
        margin-left: auto; /* Schiebt Icons nach rechts */
    }

    /* Main-Sektionen untereinander */
    .main-sections-container {
        flex-direction: column; /* Sektionen untereinander */
        height: calc(100vh - 70px); /* Restliche Höhe des Viewports */
    }

    .main-section {
        flex: none; /* Deaktiviert flex-grow */
        width: 100%;
        /* Jede Sektion nimmt 1/3 der verbleibenden Höhe ein */
        height: calc((100vh - 70px) / 3);
        min-height: 250px; /* Mindesthöhe für kleinere Bildschirme */
    }

    .section-overlay-color {
        /* Animation von oben nach unten auf Mobile */
        /*transform: translateY(-100%);
        transition: transform 0.8s ease-out;*/
        /* Text und Icons auf Mobile weiterhin mittig ausrichten, wenn nötig */
        /* Anfangszustand: Das Overlay ist komplett durchsichtig. */
        opacity: 0;
        
        /* Definiert, wie der Übergang stattfinden soll: 
            Wir animieren die Eigenschaft 'opacity' über 0.8 Sekunden. */
        transition: opacity 0.8s ease-in-out;
        align-items: center;
        justify-content: center;
        padding-bottom: 0; /* Padding zurücksetzen */
    }
    .section-overlay-color.active {
        /*transform: translateY(0);*/
         opacity: 1;
    }
    .section-content {
        margin-top: 0; /* Vertikale Zentrierung */
    }

    /* Hover-Effekt für Mobile überdenken, da Hover nicht immer funktioniert */
    /* Hier würde ich den Hover-Effekt entfernen oder anpassen */
    .main-section:hover .section-image-wrapper {
        opacity: 0; /* Auf Mobile soll das Bild nicht sichtbar sein, wenn Overlay da ist */
    }
    .main-section:hover .section-overlay-color {
        transform: translateY(0); /* Keine Verschiebung beim Hover auf Mobile */
    }
    .main-section:hover .section-content,
    .main-section:hover .section-icon,
    .main-section:hover .section-lang-flag {
        opacity: 1; /* Inhalt bleibt sichtbar */
    }

    .section-content h2 {
        font-size: 2.5em;
    }
    .section-content p {
        font-size: 1em;
    }
    .section-icon, .section-lang-flag {
        font-size: 1.8em;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height:60px;
        --footer-height:300px;
    }

    .pc-not, .form-grid {
        display:block;
    }

    .mobile-not {
        display:none;
    }

    .flex, .flex-container, .contact-wrapper {
        flex-direction: column;
    }

    .author-overview-page.mutig:first-of-type {
        margin-top:40px;
    }

    .video-sidebar {
        margin-top: 40px;
        border-top: 1px solid #eee;
        border-right: 0;
        background-color: transparent;
        padding: 2rem 3rem 1rem 0;
    }

    .author-card__image-container, .rotate, .section-schoening {
        transform: rotate(0deg);
    } 

    .section-schoening {
        display: block;
        padding:0;
    }

    .schoening-visual-col .flex {
        flex-direction: row!important;
    }

    .tilted-card {
        width: calc(100vw - 30px);
        height: calc(100vw - 30px);
        margin-bottom:20px;
    }

    .neuerscheingungen-headline {
        top:0;
    }

    .weitere-mutige-projekte, .mutig .weitere-projekte, .weitere-projekte {
        padding:0;
        top: -35px;
    }

    .gut .weitere-projekte, .schoen .weitere-projekte {
        font-size:22px;
        padding-right:15px;
    }

    .schoening-text-col1, .schoening-visual-col, .produkt-galerie, .article-section, .author-overview-page, .container {
        padding-left:15px;
        padding-right:15px;
    }

    .schoening-visual-col {
        gap:0;
        margin-bottom:40px;
    }

    .wave-container {
        margin-bottom:40px;
    }

    .section-neuerscheinungen::before, footer:before, .before-too::before, .content-above-wave::after, .section-neuerscheinungen::after, .hero-article-section::after {
        height: 50px;
    }

    .hero-article-section::after {
        bottom:5px;
    }

    .before-too .container {
        padding-top: 40px;
    }

    .content-above-wave.before-too {
        margin-top:15px;
    }

    .ueber .flex-cont {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }

    .text-column {
        text-align: center;
        /* Zentriert den Button auf mobilen Geräten */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-cta {
        display:none;
    }

    .mutig h2, .gut h2, .schoen h2 {
        font-size:30px!important;
    }

    .schoen h3, .ueber h3, .gut h3 {
        font-size:22px;
    }

    .schoen-cta {
        margin-top: 0;
    }

    .schoen-cta .action-text {
        font-size:25px;
    }

    .hero-content {
        padding: 0 5vw 35px 0;
    }

    .mutig h3, .weitere-mutige-projekte, .mutig .weitere-projekte, .aktuell-box, .mutig .newsletter-cta .action-text {
        font-size:25px!important;
    }

    .contact-form-section .weitere-mutige-projekte {
        transform: rotate(-4deg);
        position: relative;
        text-align: right;
        left: unset;
        width: 100%;
        padding: 0;
        top: 0;
    }

    .contact-form-section .design-wrapper1 {
        padding: 3rem 0 3rem 0;
    }


    .section-tag, .mutig .newsletter-cta .label {
        line-height: 1.2em;
        font-size: 16px!important;
    }

    
    .design-wrapper1 {
        padding: 8rem 0 0 0;
    }

    #js-product-list-header .design-wrapper1 {
        padding: 5rem 0 3rem 0;
    }

    .mutig-button {
        font-size:100%;
    }

    footer .gap {
        gap:5px;
    }

    footer .flex-end {
        flex-flow: wrap;
        display: flex;
        justify-content: center;
    }

    .mutige-produkte h3, .mutige-produkte h2, .schoene-produkte h2, .gute-produkte h2 {
        left:unset;
    }

    .modal-content-inner {
        grid-template-columns: 1fr; /* Stellt auf 1-Spalten-Layout um */
        text-align: center;
    }

    #author-modal-image {
        max-width: 200px; /* Macht das Bild etwas kleiner und zentriert es */
        margin: 0 auto 1.5rem;
    }

    .hero-article-section {
        height: 40vh;
    }
    .hero-content h1 {
        font-size: 2.2em;
    }
    .hero-content .article-meta {
        font-size: 1em;
    }
    .article-intro-section {
        padding: 30px 0;
    }
    .article-intro-section .intro-paragraph {
        font-size: 1.1em;
    }
    .article-content-section {
        padding: 30px 0;
    }
    .article-content-section h3 {
        font-size: 1.6em;
    }
    .article-content-section p {
        font-size: 1em;
    }
    .article-image-two-column .image-wrapper {
        min-width: 100%; /* Spalten stapeln sich */
    }
    .article-quote-block {
        padding: 20px;
        margin: 30px auto;
    }
    .article-quote-block blockquote {
        font-size: 1.4em;
    }
    .article-quote-block .quote-author {
        font-size: 1em;
    }
    .call-to-action-section {
        padding: 40px 15px;
    }
    .call-to-action-section h2 {
        font-size: 2em;
    }
    .call-to-action-section p {
        font-size: 1em;
    }
    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header {
        padding: 10px 15px;
    }
    .site-logo {
        height: 35px;
    }
    .hamburger-menu {
        width: 25px;
        height: 20px;
    }
    .hamburger-menu .bar {
        height: 2px;
    }
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .main-sections-container {
        height: calc(100vh - 60px);
    }

    .main-section {
        height: calc((100vh - 60px) / 3);
        min-height: 180px; /* Noch kleinere Mindesthöhe für sehr kleine Screens */
    }

    .section-content {
        padding: 0 20px;
        max-width: unset; /* Volle Breite auf kleinen Mobile-Screens */
    }
    .section-content h2 {
        font-size: 2em;
    }
    .section-content p {
        font-size: 0.9em;
    }
    .section-icon, .section-lang-flag {
        font-size: 1.5em;
        bottom: 10px;
        left: 10px;
        right: 10px;
    }

    .section-neuerscheinungen {
        margin-top:60px;
    }

}

@media (max-width: 550px) {
    .section-content h2 {
        font-size: 1.8em;
    }
    .section-content p {
        font-size: 0.8em;
    }

    .hero-article-section {
        height: 35vh;
    }
    .hero-content h1 {
        font-size: 1.8em;
    }

    .article-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}