/* ==========================================
   1. FONTS (Lokal eingebunden)
   ========================================== */

/* Inter (Sans-Serif) */
@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("../fonts/inter-v20-latin-300.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/inter-v20-latin-700.woff2") format("woff2");
}

/* Playfair Display (Serif) */
@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/playfair-display-v40-latin-regular.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/playfair-display-v40-latin-italic.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/playfair-display-v40-latin-700.woff2") format("woff2");
}

/* Anzeigegröße Bild Hauptnews 60% */
.items-leading img {
    max-width: 60% !important;
}

h1,
h2,
h3,
h4,
h5 {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Standardgrößen für Desktop */
h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.8rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.2rem;
}

/* Anpassung für mobile Geräte (Bildschirmbreite bis 768px) */
@media screen and (max-width: 768px) {
    h1,
    .story-title {
        font-size: 1.8rem !important;
    }
    h2 {
        font-size: 1.6rem !important;
    }
    h3 {
        font-size: 1.4rem;
    }
    h4 {
        font-size: 1.2rem;
    }
    h5 {
        font-size: 1rem;
    }
}

/* ==========================================
   2. VARIABLEN & ZENTRALE STEUERUNG
   ========================================== */
:root {
    --color-primary: rgb(59, 130, 246);
    --color-primary-light: rgba(96, 165, 250, 0.54); /* Rahmenfarbe bei Hover */
    --color-klp-border: #1e3a5f;
    --color-klp-text: #60a5fa;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-uwe: #e5e7eb;
    --color-hermann-start: #60a5fa;
    --color-hermann-end: #a855f7;
    --color-subtitle: rgb(203, 213, 225);
    --color-description: rgb(148, 163, 184);
    --color-bg-dark: #121216;
    --color-newsletter-Top-bg: #eeeeee;
    --color-newsletter-text: #000000;
    --kg-text-opacity: 1;
    --bg-opacity-light: 0.1;
    --bg-opacity-hover: 0.2;
    --news-margin: 30px;
    --color-near-black: #110d16;
    --color-near-black-2: #0a0a0c;
    --color-bg-lightdark: #161618;
    --color-bg-dark-blue: #020617;
    --radius-24: 24px;
    --radius-999: 999px;
    --color-newsletter-grey: #94a3b8;
    --color-newsletter-bg: #121214;
    --bg-main: #0f1115;
    --bg-card: #1a1d23;
    --bg-card-soft: #20242c;
    --text-main: #e6e9ef;
    --text-muted: #a1a8b3;
    --accent: #6aa7ff;
    --accent-soft: rgba(106, 167, 255, 0.15);
    --border-soft: rgba(255, 255, 255, 0.06);
    --bg-color: #121418;
    --card-bg: #1e2126;
    --accent-blue: #4facfe;
    --accent-purple: #9b51e0;
    --label-color: #dddddd;
}

html {
    font-size: 16px;
}

body {
    font-size: 1rem;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    background-color: var(--color-near-black-2);
    color: var(--color-white);
    font-family: "Inter", sans-serif;
}

/* ==========================================
   3. GLOBALE UTILITIES
   ========================================== */
.serif {
    font-family: "Playfair Display", serif;
}

.uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: 700;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.rundeEcken {
    border: 1px solid #333;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.bildstyle {
    margin: 0 0 20px 20px; /* Abstand: oben 0, rechts 0, unten 20px, links 20px */
    border: 1px solid #333;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    display: block;
}

/* ==========================================
   4. Hintergrundfarben Wrapper
   ========================================== */
#topwrapper {
    background: var(--color-near-black-2);
}

#headerwrapper {
    background: var(--color-near-black-2);
}

#autorwrapper {
    background: var(--color-bg-lightdark);
    padding-top: 30px;
}

#bookswrapper {
    background: var(--color-bg-dark-blue);
}

#newswrapper {
    background: var(--color-near-black-2);
}

#newsletterwrapper {
    background: var(--color-near-black-2);
}

#wrapper,
#wrapper1 {
    background: var(--color-bg-dark-blue); /* dunkelblau für Veröffentlichungen und Beiträge */
}

#footwrapper {
    background: var(--color-near-black-2);
}

#copyrightwrapper {
    background: var(--color-near-black-2);
}

dd.published {
    color: #8b98ac;
}

.zurueckbutton {
    padding-top: 7px;
    padding-right: 10px;
    padding-bottom: 7px;
    padding-left: 10px;
    font-weight: normal;
}

.btn-back {
    visibility: hidden;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-25 {
    width: 25% !important;
}
.w-30 {
    width: 30% !important;
}
.w-35 {
    width: 35% !important;
}
.w-40 {
    width: 40% !important;
}
.w-45 {
    width: 45% !important;
}
.w-50 {
    width: 50% !important;
}
.w-55 {
    width: 55% !important;
}
.w-60 {
    width: 60% !important;
}
.w-65 {
    width: 65% !important;
}
.w-70 {
    width: 70% !important;
}
.w-75 {
    width: 75% !important;
}
.w-80 {
    width: 80% !important;
}
.w-90 {
    width: 90% !important;
}

.mod-articles-item-content h2 {
    font-size: 1.3rem !important;
}
.mod-articles-item-content p {
    font-size: 0.9rem !important;
}

/* Container für das Aktuelles-Modul auf der Startseite */
/* 1. Die Karte als stabiler Anker (Muss zwingend flex/relative sein) */
.news-card {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
}

.news-card .mod-articles-intro,
.news-card .pagebuilderck,
.news-card .rowck,
.news-card .blockck {
    position: static !important;
    float: none !important;
    width: 100% !important;
}
.news-card .fixed-readmore {
    position: absolute !important;
    bottom: 20px !important;
    left: 20px !important;
    right: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 999 !important;
}
.fixed-readmore p.readmore {
    margin: 0 !important;
}

.fixed-readmore a.btn {
    display: inline-block !important;
    width: auto !important;
    min-width: 120px;
    text-align: center;
}
.mod-image-wrapper.akt_images {
    position: relative !important;
    width: 100% !important;
    margin-bottom: 15px !important;
}

.tck-blog .tck-article {
    display: flex;
    flex-direction: column;
    margin: 0 10px 20px 0;
    padding: 20px;
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-24);
}

.tck-blog .tck-article:hover {
    border-color: var(--color-primary-light);
    background: rgba(45, 45, 45, 0.7);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}



/* ==========================================
   5. Stick-Header
   ========================================== */
.menu ul li a {
    position: relative;
    color: var(--color-description);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}
.menu ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Hover-Zustand und Aktiver Menüpunkt (.current) */
.menu ul li a:hover::after,
.menu ul li.current a::after {
    transform: scaleX(1);
    transform-origin: left;
}
.menu ul li a:hover,
.menu ul li.current a {
    color: #ffffff !important;
}
.menu {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}
.istopfixed .menu {
    transform: scale(0.95);
    opacity: 0.9;
}
.istopfixed .autor-name {
    font-size: 1.5rem !important;
}

.istopfixed .AutorIcon {
    width: 36px !important;
    height: 36px !important;
}

.istopfixed {
    z-index: 1000;
    background: rgb(24 38 73 / 50%) !important;
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease-in-out;
}

/* ==========================================
   6. HEADER (Autor & Newsletter)
   ========================================== */
.TopHeader {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    color: var(--color-white);
}

.Autor {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-top: 5px;
}

.autor-name {
    color: #e5e7eb;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    vertical-align: middle;
}

.AutorIcon {
    background-image: url(/images/FederWEBSITE.svg);
    background-size: contain;
    background-repeat: no-repeat;
    color: var(--color-primary);
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

.Autor:hover .AutorIcon {
    transform: rotate(-12deg);
}

.btn-newsletter {
    background: var(--color-newsletter-Top-bg);
    color: var(--color-newsletter-text) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-999);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 1rem;
    max-width: 110px;
    text-align: center;
}

.btn-newsletter:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

/* ==========================================
   7. HERO SEKTION
   ========================================== */
.kurt-lasswitz {
    color: var(--color-klp-text);
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: clamp(8px, 0.75vw, 40px) !important;
    text-transform: uppercase;
    display: inline-block;
    margin: 30px 0 1.5rem 0;
    padding: 0.25rem 1rem;
    border: 1px solid var(--color-klp-border);
    border-radius: var(--radius-999);
    background-color: rgba(59, 130, 246, var(--bg-opacity-light));
    transition: all 0.3s ease;
    animation: bounce 1.5s ease infinite;
}

.name-container {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
   font-size: clamp(42px, 6vw, 100px) !important;
    display: block;
    width: 100%;
}

.name-uwe {
    color: var(--color-uwe);
}

.name-hermann {
    background: linear-gradient(to right, var(--color-hermann-start), var(--color-hermann-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle-hero {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: italic;
    color: var(--color-subtitle);
    margin-bottom: 3rem;
   font-size: clamp(20px, 2vw, 40px);
        display: block;
        width: 100%;
}

.description-hero {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    color: var(--color-description);
    max-width: 42rem;
    margin: 0 auto 3rem auto;
    text-align: center;
    line-height: 1.625;
    font-size: 1.125rem;
}

/* ==========================================
   8. BUTTON CONTAINER
   ========================================== */
.buttoncontainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .buttoncontainer {
        flex-direction: row; /* Buttons nebeneinander ab Tablet */
    }
}

.btnBig {
   padding: 0.8rem 2rem;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn {
    padding: 0.6rem 0.8rem;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #e0e0e0;
    color: #000;
    border: 1px solid #ffffff;
}

.btn-primary:hover {
    background-color: #448aff;
    color: #fff;
    border: 1px solid #e5e7eb;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   9. NEWS 
   ========================================== */
.news-card-full {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.news-card-half {
    max-width: 360px;
    width: 100%;
    min-height: 300px;
    margin: 20px auto;
}

.news-card {
    min-height: 500px;
    overflow: hidden;
    background: rgba(34, 34, 34, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-24);
    padding: 25px 30px;
    padding-bottom: 80px;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    margin: 8px auto;
    box-sizing: border-box;
}

.news-card:hover {
    border-color: var(--color-primary-light);
    background: rgba(45, 45, 45, 0.7);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.news-card:hover .BeitragsTitel {
    color: var(--color-primary-light);
}

.news-date-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary-light);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.BeitragsTitel {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    transition: color 0.2s ease;
}

/* ==========================================
   WEITERLESEN-LINK
   ========================================== */
.readmore-link {
    display: inline-flex;
    align-items: center;
    background: transparent !important;
    border: none;
    color: #e0e0e0 !important;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.readmore-link::after {
    content: "→" !important;
    display: inline-block !important;
    margin-left: 10px;
    font-size: 1.3rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateX(0);
}

.readmore-link:hover {
    color: #ffffff !important;
}

.readmore-link:hover::after {
    transform: translateX(10px) !important;
}

.Datum,
icon-calendar {
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
    font-size: 0.7rem;
    line-height: 1rem;
    font-weight: 700;
    color: #4a5568;
}

.Datum svg,
icon-calendar {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: rgb(96, 165, 250);
}

.NewsTitel {
    text-align: left;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
}

time {
    line-height: 1rem;
    font-weight: 700;
    color: #4a5568;
}

.published .icon-calendar::before {
    display: none !important;
}

.published .icon-calendar {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 7V3M16 7V3M7 11H17M5 21H19C20.1046 21 21 20.1046 21 19V7C21 5.89543 20.1046 5 19 5H5C3.89543 5 3 5.89543 3 7V19C3 20.1046 3.89543 21 5 21Z' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.NewsText {
    text-align: left;
}

.NewsTitelFull {
    font-size: 1.2rem;
}

/* ==========================================
   10. Icons und Infobox Autor
   ========================================== */
.bg-blue-glow {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.bg-purple-glow {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.bg-emerald-glow {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.bg-red-glow {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.shrink-0 {
    flex-shrink: 0;
}

/* Text-Styling */
.text-slate-400 {
    color: rgb(148, 163, 184);
}

.icon-size {
    width: 1.5rem;
    height: 1.5rem;
}

.position_autor {
    margin-top: 50px;
}

.image-container {
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0 10px 10px 10px;
}

.modern-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--radius-24);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.icon-box {
    flex-shrink: 0;
    padding: 0.75rem;
    border-radius: 0.75rem;
}

/* ==========================================
  11. Footerformatierung
   ========================================== */
.UH {
    color: var(--color-white);
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 1.5rem;
}

.UH_Text {
    color: var(--color-description);
    max-width: 28rem;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.FooterCopyrightLine {
    border-color: rgba(255, 255, 255, 0.05);
    border-top-width: 1px;
}

.FooterCopyrightText {
    color: rgb(100, 116, 139);
    font-size: 0.7rem;
    line-height: 1.25rem;
    text-align: center;
    padding-top: 2rem;
}

.FooterMenu {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.1em;
    color: rgb(100, 116, 139);
    text-transform: uppercase;
}

.FooterMenuItems {
    display: block;
    color: var(--color-description);
    font-weight: 300;
    font-size: 0.875rem;
    line-height: 1.25rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    margin-bottom: 0.5rem; /* Fallback-Abstand */
    transition: color 0.3s ease;
}

.FooterMenuItems:hover {
    color: #ffffff;
}
.FooterMenuSpace > :not([hidden]) ~ :not([hidden]) {
    margin-top: 0.5rem;
}

.footposition-left {
    margin-left: 20px;
}

/* ==========================================
  12. Newsletter- und Kontaktstyle
   ========================================== */
.newslettercontainer {
    margin-left: auto;
    margin-right: auto;
    background: #121316;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid #2d2d2d;
    border-radius: var(--radius-24);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    align-items: center;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.newslettercontainer:hover {
    border-color: var(--color-primary-light);
    background: rgba(45, 45, 45, 0.7);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}
.newsletterHeader {
    font-family: "Playfair Display", serif;
    color: var(--color-white);
    font-size: 2.2rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.newsletterText {
    color: var(--label-color);
    font-size: 18px;
    text-align: center;
}
.Formular {
    margin-top: 5px;
}

.kontaktcontainer {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    background: none !important;
    background-color: transparent !important;
}

#cf_1,
#cf_2 {
    background: none !important;
    background-color: transparent !important;
    font-family: "Inter", sans-serif;
}

#cf_2 {
    max-width: 100%;
}
.cf-label {
    color: #dddddd !important;
    text-align: left !important;
}

.cf-control-input {
    margin-bottom: 25px;
}

#cf_1:hover,
#cf_2:hover {
    background: none !important;
    background-color: transparent !important;
}
.kontaktbutton {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.cf-btn {
    text-align: center;
    border-color: rgb(255, 255, 255);
    border: 1px !important;
    border-style: solid;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 130px !important;
}

.cf-btn:hover {
    color: rgb(255, 255, 255);
    background: rgb(59, 130, 246);
    border-color: rgb(229, 231, 235);
    border: 1px;
    border-style: solid;
}
.cf-response, .joomla-alert {
    background-color: #3b82f6 !important;
    color: #fff;
}

.acym_introtext {
    font-size: 18px;
    text-align: center;
}

.acym_introtext p {
    color: var(--color-newsletter-grey);
    margin-bottom: 50px;
}

.acym_introtext h2 {
    font-family: "Playfair Display", serif;
    color: var(--color-white);
    font-size: 3rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.subbutton {
    padding: 1rem 1.5rem !important;
    border: 1px solid #2d2d2d;
    border-radius: 16px;
}

.subbutton:hover {
    background: #3b82f6 !important;
    color: #fff !important;
}

td.onefield input,
td.onefield select,
td.onefield textarea {
    width: 100%;
    box-sizing: border-box;
}

td.onefield {
    width: 50%;
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group > .form-control {
    flex: 1 1 auto;
    width: 1%;
}

/* ==========================================
   13. Meine Bücher - BIBLIOGRAFIE STARTSEITE
   ========================================== */
.TxtBiblio,
.EinleitungPreise {
    margin: 2rem auto 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
}

.image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;

    background-color: #1a1a1a;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        filter 0.6s ease,
        transform 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 45px 25px;
    z-index: 10;
    pointer-events: none;
}

.overlay-title,
.overlay-description,
.overlay-middles,
.overlay-button {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.overlay-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    color: var(--color-white);
    text-align: center;
    transform: translateY(-20px);
}

.overlay-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-top: 10px;
    transform: translateY(-10px);
}

.overlay-middles {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e0e0e0;
    margin: 20px 0;
    padding-left: 15px;
    border-left: 3px solid #a5000087;
    font-style: italic;
    font-weight: 300;
    max-width: 90%;
}

.overlay-button {
    background-color: var(--color-white);
    color: var(--color-bg-dark);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-999);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    pointer-events: auto;
    transform: translateY(20px);
}

.book-container:hover .image-wrapper {
    transform: translateY(-5px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 15px rgba(59, 130, 246, 0.2);
}

.book-container:hover .image-wrapper img {
    filter: blur(6px) brightness(0.4);
    transform: scale(1.08);
}

/* 2. Text & Button Einblendung */
.book-container:hover .overlay-title,
.book-container:hover .overlay-middles,
.book-container:hover .overlay-description,
.book-container:hover .overlay-button {
    opacity: 1;
    transform: translateY(0);
}

.book-container:hover .badge-container {
    opacity: 0;
}

.book-container {
    width: 250px;
    position: relative;
    cursor: pointer;
    backface-visibility: hidden;
    margin: 0 auto;
}

.overlay-button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1) !important;
}
.content {
    padding: 20px;
}

.meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #3498db;
}

.year {
    color: #666;
}

.title {
    margin: 10px 0;
    font-family: "Serif", Georgia, serif;
    font-size: 1.6rem;
}

.description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #bdc3c7;
}

.serif-part {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--color-white);
}

.sans-part {
    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.15em;
    font-size: 0.75em;
    color: var(--color-primary-light);
}

span.coautor {
    font-size: 1rem;
    line-height: 1rem;
    color: #dddddd;
}

/* ==========================================
   14. Meine Bücher - BIBLIOGRAFIE DETAILSEITE 
   ========================================== */
#buch-preis {
    font-size: 18px;
    display: block;
    margin-top: 10px;
}

.book-intro {
    font-size: 16px;
    color: var(--color-newsletter-grey);
    margin-bottom: 50px;
}

.book-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #eee;
}

.book-hero {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Zurück-Link */
.btn-back {
    display: inline-block;
    color: #3498db;
    text-decoration: none !important;
    font-weight: bold;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.btn-back:hover {
    color: #2980b9;
}

/* Cover & Status-Badge */
.book-cover-wrapper {
    position: relative;
    flex: 0 0 350px;
    max-width: 100%;
}

.book-cover-img {
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: block;
}

.book-status-badge {
    position: absolute;
    top: 221px;
    left: 0;
    background: #a5000087;
    color: white;
    padding: 6px 15px;
    font-weight: bold;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    letter-spacing: 1px;
    border: 1px solid #ffffff;
    transform: rotate(-45deg);
    border-radius: 5px;
}

/* affiliate-hinweis */

.werbelink {
    font-size: 0.85em;
    color: #888;
}

.hinweisstern {
    margin-left: 2px;
}

.affiliate-hinweis {
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
    line-height: 1.4;
}

.werbe-hinweis-titel {
    font-size: 8px;
}

.werbehinweistext,
.werbe-hinweis-titel {
    color: #cccdd1 !important;
    margin-top: 30px;
    font-size: smaller;
    font-style: italic;
}

/* Titel & Meta-Infos */
.book-info-wrapper {
    flex: 1;
    min-width: 300px;
}

.book-main-title {
    font-size: 2.2rem;
    margin: 10px 0 5px 0;
    color: #fff;
    line-height: 1.1;
    padding-left: 5px;
    padding-right: 5px;
}

.book-genre-tag {
    color: #3498db;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    font-weight: bold;
    padding-left: 5px;
    padding-right: 5px;
}

.book-meta-data {
    margin: 15px 0;
    font-size: 0.95rem;
    color: #aaa;
    padding-bottom: 5px;
}

.meta-isbn {
    margin-right: 20px;
}

.meta-preis {
    color: #2ecc71;
    font-weight: bold;
}

/* Texte */
.book-intro-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.book-description-body {
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.book-button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-shop {
    padding: 12px 28px;
    border-radius: 20px;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-shop.amazon {
    background: #232f3e;
    color: #ffa41c !important;
    border: 1px solid #ffa41c;
}

.btn-shop.thalia {
    background: #a50000;
    color: white !important;
}

.btn-shop.sample {
    border: 1px solid #555;
    color: #ddd !important;
    background: rgba(255, 255, 255, 0.05);
}

.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: brightness(1.2);
}

.share-section {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.btn-share {
    background: transparent;
    border: 1px dashed #555;
    color: #888;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-share:hover {
    color: #fff;
    border-color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

/* Formatierung Beschreibung */
#buch-beschreibung,
#buch-inhalt-lang,
#related-section,
#buch-titel {
    padding-right: 40px;
}

/* Verwandte Bücher */
.related-books {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #222;
}

.related-books h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 25px;
}

.related-item {
    text-decoration: none !important;
    transition: transform 0.3s ease;
}

.related-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    aspect-ratio: 2/3;
    object-fit: cover;
}

.related-item span {
    display: block;
    font-size: 0.85rem;
    color: #aaa;
    text-align: center;
    line-height: 1.3;
}

.related-item:hover {
    transform: translateY(-8px);
}

.related-item:hover span {
    color: #3498db;
}

#buch-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

#buch-status span {
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.status-badge-neu {
    background-color: #ffcc00;
    color: #000000 !important;
}
.status-badge-bestseller {
    background-color: #3461eb;
}
.status-badge-klp {
    background-color: #2da44e;
}
.status-badge-dsfp {
    background-color: #cf222e;
}

.badge-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 140px;
    overflow: hidden;
    z-index: 35;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

/*  Ribbon */
.badge-textsize {
    font-size: 9px !important;
}

.badge-color {
    background: #a50000d1 !important;
    color: #ffffff !important;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5) !important;
    border-radius: 5px !important;
    border: 1px solid #ffffff !important;
}

.badge-new {
    position: absolute;
    display: block;
    width: 220px;
    padding: 7px 0;
    background: linear-gradient(135deg, #0055ff 0%, #0033aa 100%);
    color: white;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.5px;
    left: -60px;
    top: 30px;
    transform: rotate(-45deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-new::before,
.badge-new::after {
    content: "";
    position: absolute;
    bottom: -3px;
    border-top: 3px solid #001a55;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    z-index: -1;
}
.badge-new::before {
    left: 0;
}
.badge-new::after {
    right: 0;
}

@keyframes total-pulse {
    0% {
        transform: rotate(-45deg) scale(1);
        filter: brightness(1);
        box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
    }
    50% {
        /* Das gesamte Band inkl. Text wird 5% größer */
        transform: rotate(-45deg) scale(1.05);
        filter: brightness(1.2);
        box-shadow: 0 4px 25px rgba(0, 85, 255, 0.6);
    }
    100% {
        transform: rotate(-45deg) scale(1);
        filter: brightness(1);
        box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
    }
}

/* Die Überschrift über der Tabelle */
.toc-header {
    font-family: sans-serif;
    color: #ffffff;
    border-bottom: none;
    display: block;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 40px;
}

.toc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    font-family: sans-serif;
}

.toc-table tr {
    border-bottom: none;
}

.toc-bullet {
    width: 30px;
    min-width: 30px;
    vertical-align: top;
    padding-top: 10px;
    padding-right: 10px;
    color: #3498db;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
}

.toc-content {
    padding: 10px 0 20px 0;
    vertical-align: top;
}

.toc-title {
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.toc-description {
    font-size: 15px;
    color: #cccccc;
    line-height: 1.6;
}

/* --- Responsive Anpassungen (Tablets & Handys) --- */
@media (max-width: 768px) {
    .toc-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.25rem;
    }

    .toc-title {
        font-size: 16px;
    }
    .toc-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .toc-header {
        font-size: 1.2rem;
        margin-top: 30px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .toc-bullet {
        width: 20px;
        min-width: 20px;
        padding-right: 8px;
        font-size: 20px;
        padding-top: 8px;
    }

    .toc-content {
        padding-bottom: 15px;
    }

    .toc-title {
        font-size: 16px;
    }

    .toc-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ==========================================
   15. SOCIAL ICONS 
   ========================================== */
.social-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.15rem;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* Macht es zum Kreis */
    display: inline-flex;
    align-items: center;
    /* Zentriert das Icon vertikal */
    justify-content: center;
    /* Zentriert das Icon horizontal */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary-light);
    color: #ffffff;
}

/* ==========================================
   16. BIBLIOGRAFIE 
   ========================================== */
.publication-item {
    display: grid;
    /* Spalte 1: 120px fürs Jahr, Spalte 2: Rest für die Karte */
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
    align-items: start;
    position: relative;
}

/* Der Anker muss etwas nach oben rutschen, damit er nicht verdeckt wird */
a.year-anchor {
    position: absolute;
    top: -120px;
    visibility: hidden;
}

/* --- 16.2 Das Jahr (Sticky) --- */
.publication-year {
    position: sticky;
    top: 120px;
    text-align: center;
}

.year-badge span {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--color-primary-light);
    display: block;
    position: relative;
    padding-bottom: 100px; /* Abstand zum Strich */
    line-height: 1;
}

/* Der blaue Strich */
.year-badge span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, var(--color-primary-light), transparent);
}

/* --- 16.3 Die Karte (Text links, Bild rechts) --- */
.publication-card {
    display: grid;
    /* Spalte 1: Text (flexibel), Spalte 2: Bild (fest 180px) */
    grid-template-columns: 1fr 180px;
    gap: 2.5rem;
    background: linear-gradient(145deg, #1a1d23, #121418);
    border-radius: 20px;
    padding: 1.8rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;ul, ol {
	padding: .75em 0 .75em 0;
	/* margin: 0 0 0 35px; */
}
    z-index: 1;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    cursor: pointer;
    margin: 0 10px 0 10px;
}

.publication-card:hover,
.award-card:hover {
    z-index: 10;
    /* Karte schiebt sich über die Nachbarn */
    /* transform: scale(1.02) translateY(0px); */
    /* Karte wird größer und hebt sich ab */
    border-color: var(--color-primary-light);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

/* 1. Auszeichnung */
.pub-awards {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

/* 2. Titel */
.pub-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
    font-family: "Playfair Display", serif;
}

.pub-title a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.publication-card:hover .pub-title a {
    color: var(--color-primary-light);
}

/* 3. Publikation (Verlag) */
.pub-meta {
    font-size: 0.85rem;
    /*   font-weight: 600; */
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    /* Von 3rem auf 1.5rem reduziert für bessere Kompaktheit */
}

/* 4. Beschreibung */
.pub-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-description);
}

.pub-cover img {
    width: 120px;
    height: auto;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.publication-card:hover .pub-cover img {
    transform: scale(1.02) rotate(1deg);
}

/* Navigation oben */
.year-nav {
    margin-bottom: 4rem;
    text-align: center;
}

.nav-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.year-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.year-chips a {
    text-decoration: none;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-soft);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.year-chips a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Grafisches Jahres-Badge in der Liste */
.year-badge {
    position: sticky;
    top: 100px; /* Bleibt beim Scrollen kurz stehen */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--accent);
}

.year-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
    opacity: 0.5;
}

/* Styling für den Einleitungstext */
.category-desc {
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-description);
    border-left: 4px solid var(--color-primary-light);
    padding-left: 2rem;
}

/* Inaktive Jahre ausgrauen */
.year-chips a.year-empty {
    opacity: 0.25;
    pointer-events: none; /* Nicht klickbar */
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    filter: grayscale(100%);
}

/* Sprungmarken-Korrektur (damit der Header nichts verdeckt) */
.publication-item {
    scroll-margin-top: 150px;
}

/* Sanftes Scrollen aktivieren */
html {
    scroll-behavior: smooth;
}

.pbck_carousel .pbck_carousel_controls {
    visibility: hidden; /* Pfeile Slideanimation Bibliografie */
}

/* --- 16.6 Responsive Design (Handy/Tablet) --- */

/* Tablet (unter 950px): Jahr bleibt, aber Bild rutscht über Text */
@media (max-width: 950px) {
    .publication-card {
        grid-template-columns: 1fr; /* Nur noch 1 Spalte */
        padding: 2rem;
    }

    .publication-text {
        order: 2; /* Text nach unten */
    }

    .pub-cover {
        order: 1; /* Bild nach oben */
        max-width: 180px;
        margin-bottom: 1.5rem;
    }
}

/* Handy (unter 650px): Alles untereinander */
@media (max-width: 650px) {
    .publication-item {
        grid-template-columns: 1fr; /* Jahr rutscht über die Karte */
        text-align: center;
        gap: 1rem;
    }

    .publication-year {
        position: static;
        margin-bottom: 1rem;
    }

    .year-badge span::after {
        display: none; /* Strich weg auf Handy */
    }

    .pub-cover {
        margin: 0 auto 1.5rem auto; /* Bild zentrieren */
    }
}

/* ==========================================
  17. ÜBERGREIFENDE KLASSEN
   ========================================== */
.hidden {
    display: none !important;
    opacity: 0;
}

li {
    list-style-type: none;
}

.page-header {
    visibility: hidden;
    height: 0;
}

#backToTop {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 999;
    background: #3b82f678;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    opacity: 0; /* Standardmäßig unsichtbar */
    visibility: hidden;
}

#backToTop:hover {
    background: var(--color-primary-light);
    transform: translateY(-5px);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}
#backToTop svg {
    margin-bottom: 2px;
}

/* ==========================================
   18. Custom-quote
   ========================================== */
.quote-row-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin: 60px 0;
    align-items: stretch;
}
.custom-quote {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 30px 25px;
    position: relative;
    box-sizing: border-box;
    margin: 0;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.custom-quote::before {
    content: "\201C";
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 70px;
    color: #3498db;
    font-family: serif;
    line-height: 1;
}

.custom-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: #eeeeee;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: auto;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}
.custom-quote cite {
    display: block;
    font-size: 0.7rem;
    color: #3498db;
    text-align: right;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .custom-quote {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .custom-quote {
        padding: 20px;
    }
    .custom-quote p {
        font-size: 0.95rem;
        margin-top: 35px; /* Auch auf Mobile etwas tiefer */
    }
}
/* ==========================================
   19. FONTSIZE
   ========================================== */
.HeaderNewsH2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 30px 10px;
    color: var(--color-white);
    position: relative;
    display: inline-block;
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Der Farbverlauf-Unterstrich im "Hermann"-Stil */
.HeaderNewsH2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 70%;
    background: linear-gradient(
        to right,
        rgba(100, 180, 255, 1) 0%,
        rgba(150, 120, 255, 1) 60%,
        rgba(200, 100, 255, 1) 100%
    );
    border-radius: 2px;
}

/* ============================================================
   21. PREISE UND AUSZEICHNUNGEN
   ============================================================ */
.awards-section {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.section-header {
    margin-bottom: 10px;
}

.badge {
    color: var(--accent-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
}

.EinleitungPreise {
    margin: 0 10px 30px 10px;
    text-align: justify;
    font-family: "Inter", sans-serif;
    color: #f0f0f0;
}

.underline {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-purple));
    margin: 20px auto;
}

/* Karten-Layout */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.award-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.year {
    font-weight: 900;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
}

.prize-list {
    list-style: none;
    padding: 0;
}

.prize-list li {
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.prize-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}

.prize-list li.winner {
    color: #fff;
    font-weight: 600;
}

/* Laudatio */
.laudatio-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--accent-soft);
    color: var(--accent) !important;
    text-decoration: none;
    font-size: 0.5rem;
    font-weight: 700;
    border-radius: var(--radius-999);
    border: 1px solid rgba(106, 167, 255, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-left: 10px;
}

.laudatio-btn:hover {
    background: var(--color-primary);
    color: var(--color-white) !important;
    transform: scale(1.05);
}

/* Weitere Platzierungen */
.other-placements h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.placements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.placement-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.placement-item span {
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 15px;
    display: inline-block;
    width: 50px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
}

/* ============================================================
   22. AUTOR
   ============================================================ */
/* Der Container für das Bild */
.blog-image-container {
    margin: 25px 0;
    text-align: center;
}

.autor-bild-rechts {
    float: right;
    width: 100%;
    max-width: 250px !important;
    margin: 0 20px 20px 20px; /* Abstand: oben 0, rechts 0, unten 20px, links 20px */
    border: 1px solid #333;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    display: block;
}

.kurzegeschichten {
    margin-top: 40px;
}

/* Der "Handy-Kniff": Ab einer Breite von 768px (Tablet/Handy) wird das Bild mittig */
@media screen and (max-width: 768px) {
    .autor-bild-rechts,
    bildstyle {
        float: none; /* Nicht mehr rechts kleben */
        margin: 0 auto 20px; /* Zentrieren */
        max-width: 100%; /* Volle Breite auf dem Handy nutzen */
    }
}

/* ============================================================
   23. Ausgabestil der Erzählungen
   ============================================================ */
.story-container {
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    color: #f0f0f0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
    background: #232324;
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-24);
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.story-content {
    line-height: 1.6;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.story-header {
    text-align: center;
    margin-bottom: 30px;
}

.story-title {
    margin-bottom: 5px;
    color: #ffffff;
}

.story-author {
    font-style: italic;
    font-size: 1.1rem;
    color: #cccccc;
}

.first-paragraph::first-letter {
    float: left;
    font-size: 3rem;
    line-height: 0.7;
    margin-top: -0.35em;
    padding-right: 3px;
    padding-left: 3px;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    display: block;
}

.story-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.divider {
    text-align: center;
    margin: 40px 0;
    font-size: 1.5rem;
    color: #f0f0f0;
}

.story-container p {
    margin: 0;
   text-indent: 20px; 
}

/* ============================================================
   24. Änderungen Phocadownload Pressebereich
   ============================================================ */
.phocadownloadfile32 {
    background: #020617 url(../images/icon-download-32.png) 5px center no-repeat;
    border: 0;
    padding: 10px 10px 10px 40px;
    margin: 20px 0 10px 0;
}

/* ============================================================
   26. Leseecke - Geschichten und Audiodateien
   ============================================================ */
.story-card {
    display: flex;
    gap: 30px;
    border: 1px solid var(--border-soft);
    padding: 1.8rem;
    border-radius: 24px;
    background: linear-gradient(145deg, #1a1d23, #121418);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    align-items: stretch;
    text-align: left;
    color: #e5e7eb;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    cursor: pointer;
}

.story-card:hover {
    box-shadow: rgba(0, 0, 0, 0.8) 0 25px 60px;
    border-color: var(--color-primary-light);
}

.story-badge {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.story-title {
    font-size: 1.8rem;
    margin: 10px 0 15px 0;
    color: #ffffff;
    font-family: "Playfair Display", serif; /* Falls geladen, sonst Georgia */
    line-height: 1.2;
}
.story-teaser {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 25px;
}

.story-actions-wrapper {
    border-top: 1px solid #3d4146;
    padding-top: 20px;
    display: flex;
    gap: 12px;
}

.btn-read {
    background: #4b5563;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.2s;
}
.btn-read:hover {
    background: #3b82f6;
}
.btn-audio {
    background: transparent;
    color: #ffffff !important;
    padding: 9px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.btn-audio:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Bild-Box */
.story-image-box {
    width: 180px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.story-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-image-box img {
    transform: scale(1.02) rotate(1deg);
}
.erschienen {
    color: #9c9ca1;
    font-style: italic;
}
.btn_lesetxt {
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    background-color: #e0e0e0;
    color: #000;
    border: 1px solid #ffffff;
}

.story-anmerkungen {
	font-size: 0.75rem;
	line-height: 1.4;
	color: #707275;
	padding-top: 5px;
}

.story-length {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #6CABFF; /* Akzentlinie links */
    color: #e0e0e0;
    font-size: 0.8rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   27. PRELOADER - UWE HERMANN DESIGN
   ========================================================================== */
/* 1. Haupt-Container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* 2. Zentrierungs-Box */
.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 3. Der Spinner */
.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(98, 163, 250, 0.15); 
    border-radius: 50%;
    border-top-color: #62A3FA; 
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
    margin-bottom: 25px;
}

/* 4. Der Text */
#preloader p {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    animation: pulseText 2s ease-in-out infinite;
}

/* 5. Animationen */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulseText {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.98); }
}

/* 6. Das "Verschwinden" */
#preloader.preloader-finish {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* ============================================================
   26. MOBILE OPTIMIERUNG
   ============================================================ */
.cktext.inner {
    margin: 0 10px 10px 10px;
}

ul,
ol {
    padding: .75em 0 .75em 0;
    margin: 0 0 0 10px; 
}



@media screen and (max-width: 768px) {
    .book-hero {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .book-cover-wrapper {
        flex: 0 0 auto;
        width: 70%;
        min-width: 250px;
    }

    .book-info-wrapper {
        text-align: center;
        width: 100%;
    }

    .book-button-group {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .story-card {
        flex-direction: column-reverse;
        padding: 20px;
    }
    .story-image-box {
        width: 100%;
        height: 180px;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
