/* FONT AWESOME MANUELL LADEN */
@import url('https://use.fontawesome.com/releases/v6.5.1/css/all.css');
/* --- 1. HEADER & TAGLINE --- */
header.header, .header {
    background: #ffffff !important;
    background-image: none !important;
    border-bottom: 1px solid #eee !important;
    box-shadow: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.navbar-brand a {
    color: #000000 !important;
    font-weight: 800 !important;
    font-size: 1.8rem !important;
    display: block !important;
}

.navbar-brand .site-description {
    color: #888888 !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block !important;
    margin-top: -5px !important;
}

/* --- 2. NAVIGATION & BREADCRUMBS KILLEN --- */
.container-breadcrumb, .breadcrumb, .mod-breadcrumbs, .container-breadcrumbs, .main-distraction {
    display: none !important;
}

/* --- 3. LISTEN-LAYOUT (RADIKAL KOMPAKT) --- */
body {
    font-family: sans-serif !important;
    color: #000000 !important;
}

.com-content-category-blog__item {
    margin-top: 0 !important;
    margin-bottom: -5px !important;
  /* Abstand zwischen den Werken */
    padding: 0 !important;
    border-bottom: px solid #f5f5f5 !important;
}

/* Titel und Links ohne Unterstriche */
a, h2 a, .com-content-category-blog__item-title a {
    color: #000000 !important;
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Titel-Abstand zur Jahreszahl minimieren */
.com-content-category-blog__item-title, h2 {
    font-size: 1.1rem !important;
    margin-top: 0x !important;
    margin-bottom: -3px !important; /* Zieht Jahreszahl hoch */
    line-height: 1.1 !important;
}

/* Infos (Jahreszahl) bündig links */
.fields-container, .field-entry {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
}

/* --- 4. PLAY-BUTTON (Pfeil statt Text) --- */
.field-entry .field-value a, .fields-container a {
    font-size: 0 !important;
    display: inline-block;
}

.field-entry .field-value a::before, .fields-container a::before {
    content: "▶" !important;
    font-size: 0.9rem !important;
    color: #000 !important;
    visibility: visible !important;
    margin-left: 5px;
}

/* BILD DIREKT IM TEXT STYLEN */
.item-page img.bio-pic, 
.item-page img[style*="float: left"],
.item-page p img {
    float: left !important;
    max-width: 300px !important; /* Breite des Fotos */
    height: auto !important;
    margin: 0 30px 20px 0 !important; /* Abstand zum Text */
    border-radius: 2px !important;
}

/* Verhindert, dass das Bild über den Rand ragt */
.item-page {
    display: flow-root !important;
}

/* Mobil-Anpassung */
@media (max-width: 768px) {
    .item-page img.bio-pic, 
    .item-page p img {
        float: none !important;
        display: block !important;
        margin: 0 auto 20px auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}/* --- PERFORMANCE & FIXES --- */

/* Verhindert das Neu-Berechnen des Layouts bei kleinen Listen */
.com-content-category-blog {
    contain: content;
}

/* Play-Button fixieren, damit der Browser nicht "rechnet" */
.field-entry .field-value a::before, .fields-container a::before {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
}

/* Falls noch nicht geschehen: Bildgröße der Biografie im CSS festpinnen */
.item-page img {
    aspect-ratio: auto;
    content-visibility: auto;
}
/* --- SOCIAL ICONS FINAL POSITIONING --- */
.header-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    position: absolute;
    right: 20px; 
    top: 15px; /* Falls zu hoch: Zahl vergrößern (z.B. 55px). Falls zu tief: Zahl verkleinern (z.B. 35px) */
    z-index: 100;
}

/* Icons selbst stylen (SVG) */
.header-social svg {
    width: 26px;
    height: 26px;
    fill: #000000;
    transition: opacity 0.2s ease;
}

.header-social a:hover svg {
    opacity: 0.6;
}

/* --- HANDY-ANPASSUNG --- */
@media (max-width: 768px) {
    .header-social {
        position: relative !important; /* Nimmt die Icons aus der absoluten Ecke */
        top: 25 !important;
        right: 0 !important;
        justify-content: right; /* Zentriert sie über/unter dem Namen */
        padding: 15px 0;
        width: 100%;
      
    }
}