/*
Theme Name: La Graciosa Custom Magazine
Description: Ein frisches, modernes Editorial- und Magazin-Theme für lagraciosa.de
Version: 1.0
Author: Udo Tillmann - volmestrand.de
*/

/* --- DESIGN SYSTEM & VARIABLEN --- */
:root {
    --color-bg: #ffffff;
    --color-text-main: #666666; /* Weiches Magazin-Grau */
    --color-text-dark: #111111; /* Für fette, kontrastreiche Headlines */
    --color-accent: #0868BC;    /* Frisches, lebendiges Orange */
    --color-accent-hover: #0868BC;
    --color-muted: #f4f4f4;
    
    --font-headings: 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
    
    --container-width: 1200px;
    --transition-smooth: all 0.3s ease;
}

/* --- BASICS --- */
body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* --- HERO SECTION --- */
.magazine-hero {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 650px;
}

.category-badge a, 
.card-category a {
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    border-radius: 2px;
}

.hero-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 1rem 0;
}

.hero-title a:hover {
    color: var(--color-accent);
}

.hero-excerpt {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-accent {
    display: inline-block;
    background-color: var(--color-accent);
    color: #ffffff;
    padding: 0.8rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* --- MAGAZINE GRID --- */
.section-title {
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    font-size: 2rem;
    position: relative;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem 2rem;
    margin-bottom: 5rem;
}

.magazine-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    transition: var(--transition-smooth);
    padding: 5px;
}

.magazine-card.magazine-card-ad {
    background-color: #f6f6f6;
    
}


.card-body-ad  {
    background: #f6f6f6!important ;
}

.card-thumbnail {
    overflow: hidden;
    margin-bottom: 1.2rem;
    height: 240px;
}


.card-body {
    
}


.card-thumbnail br {
    display: none;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Beibehaltung, um den Raum zu füllen */
    
    /* NEU: Verankert das Bild links unten */
    object-position: left bottom; 
    
    transition: var(--transition-smooth);
}



.card-thumbnail-ad {
    overflow: hidden;
    margin-bottom: 1.2rem;
    height: 240px;
}


.card-thumbnail-ad img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Beibehaltung, um den Raum zu füllen */
    
    /* NEU: Verankert das Bild links unten */
    object-position: left bottom; 
    
    transition: var(--transition-smooth);
}

.magazine-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.card-category {
    display: block;
    margin-bottom: 0.8rem;
}

.card-title {
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.card-title a:hover {
    color: var(--color-accent);
}

.card-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-more-link {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-more-link:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .magazine-grid {
        grid-template-columns: 1fr;
    }
    .magazine-hero {
        height: 60vh;
    }
}


/* --- STATIC PAGES (page.php) --- */
.page-header {
    display: flex;
    align-items: center;
    min-height: 250px;
    margin-bottom: 4rem;
    background-color: var(--color-muted);
}

.page-header.has-bg {
    background-size: cover;
    background-position: center;
    color: #ffffff;
    min-height: 350px;
}

.page-header.no-bg .page-title {
    color: var(--color-text-dark);
}

.page-header.no-bg {
    border-bottom: 1px solid #eee;
    padding: 2rem 0;
    min-height: auto;
}

.page-title {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

/* Schmalerer Container für Fließtext, erhöht die Lesbarkeit drastisch */
.page-content-wrapper .entry-content {
    max-width: 750px;
    margin: 0 auto 5rem auto;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.entry-content h2, 
.entry-content h3 {
    color: var(--color-text-dark);
    font-family: var(--font-headings);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.6rem;
}

/* Styling für Standard-Links im Text */
.entry-content a {
    color: var(--color-accent);
    border-bottom: 1px solid transparent;
}

.entry-content a:hover {
    border-bottom-color: var(--color-accent);
}



/* --- SINGLE POSTS (single.php) --- */


.breadcrumb {
    font-size: 14px;
    color: #666;
    margin: 10px 0 0px;
    padding-bottom: 6px;
    
}

.breadcrumb a {
    color: #0073aa; /* WordPress-Blau */
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: #333;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.breadcrumb span,
.breadcrumb a {
    display: inline-block;
}

.breadcrumb .separator {
    color: #aaa;
}


.breadline {
    
    
    border-bottom: 1px solid #e0e0e0; 
}

.single-post-header {
    display: flex;
    align-items: flex-end;
    min-height: 50vh;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    background-color: var(--color-muted);
}

.single-post-header.has-hero-bg {
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.single-post-header.no-hero-bg {
    align-items: center;
    min-height: auto;
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.single-post-header.no-hero-bg .single-post-title {
    color: var(--color-text-dark);
}

.post-meta-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.single-date {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.single-post-title {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    max-width: 900px;
    text-shadow: 2px 2px 2px #000;
}


.anfahrt-box {
  background-color: var(--color-muted, #f4f4f5);
  padding: 1rem;
  border-left: 4px solid #999999;
  margin: 1.25rem 0;
  border-radius: 4px;
  line-height: 1.5;
  color: inherit;
}

.anfahrt-box strong {
  display: inline-block;
  margin-bottom: 0.25rem;
}



/* Stilvolle Tags am Artikelende */
.post-tags {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.post-tags a {
    display: inline-block;
    background-color: var(--color-muted);
    color: var(--color-text-main);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.post-tags a:hover {
    background-color: var(--color-accent);
    color: #ffffff;
}

/* Editorial Post-Navigation */
.navigation.post-navigation {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.navigation.post-navigation .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-direction {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.nav-post-title {
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.3;
}

.nav-links a:hover .nav-post-title {
    color: var(--color-accent);
}

/* Relevante Responsiveness für Mobilgeräte */
@media (max-width: 768px) {
    .single-post-title {
        font-size: 2.2rem;
    }
    .navigation.post-navigation .nav-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nav-next {
        text-align: left;
    }
}

/* --- ARCHIVE PAGES (archive.php) --- */
.archive-header {
    background-color: var(--color-muted);
    padding: 4rem 0;
    margin-bottom: 4rem;
    border-bottom: 1px solid #eee;
}

.archive-title {
    font-family: var(--font-headings);
    color: var(--color-text-dark);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

/* Falls eine Kategorie-Beschreibung im Backend hinterlegt ist */
.archive-description {
    font-size: 1.1rem;
    color: var(--color-text-main);
    max-width: 700px;
    line-height: 1.5;
}

/* --- PAGINATION STYLING --- */
.pagination.navigation {
    margin: 4rem 0 6rem 0;
    text-align: center;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--color-muted);
    color: var(--color-text-dark);
    font-weight: bold;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

/* Die aktuell aktive Seite bekommt den orangenen Akzent */
.pagination .page-numbers.current {
    background-color: var(--color-accent);
    color: #ffffff;
}

.pagination a.page-numbers:hover {
    background-color: var(--color-text-dark);
    color: #ffffff;
}


/* --- SITE HEADER & NAVIGATION --- */
.site-header {
    background-color: var(--color-bg);
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

/* Logo Styling */
.site-branding .site-title {
    font-family: var(--font-headings);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    color: var(--color-text-dark);
}

.logo-dot {
    color: var(--color-accent); /* Der orangefarbene Akzentpunkt */
}

/* ============================
   DESKTOP-NAVIGATION (deine Styles)
   ============================ */

/* Menü-Einträge Desktop */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-navigation li a {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.main-navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.main-navigation li a:hover::after,
.main-navigation li.current-menu-item a::after {
    width: 100%;
}

.main-navigation li a:hover {
    color: var(--color-accent);
}

/* Hamburger-Button (Standard: Desktop versteckt) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.hamburger-bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

/* ============================
   MOBILE-NAVIGATION
   ============================ */

@media (max-width: 800px) {

    /* Hamburger sichtbar */
    .menu-toggle {
        display: flex;
    }

    /* Menü standardmäßig versteckt */
    #primary-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
    }

    /* Navigation geöffnet → Menü anzeigen */
    .main-navigation.toggled #primary-menu {
        display: flex;
    }

    /* Mobile: UL nicht als horizontale Leiste */
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }

    /* Mobile: Links etwas größer */
    .main-navigation li a {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
}

/* ============================
   DESKTOP-FIX
   ============================ */

@media (min-width: 801px) {
    /* Desktop: Menü immer sichtbar */
    #primary-menu {
        display: flex;
    }

    /* Desktop: Hamburger ausblenden */
    .menu-toggle {
        display: none;
    }
}


/* Desktop-Menü ausblenden */
@media (min-width: 801px) {
    #primary-menu {
        display: none !important;
    }
}



/* --- SCREEN READER UTILITIES --- */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* --- MOBILE RESPONSIVENESS FOR HEADER --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation ul {
        display: none; /* Wird via JS bei Klick auf .toggled geöffnet */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-bg);
        padding: 2rem;
        border-bottom: 1px solid #f0f0f0;
        gap: 1.5rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    /* Wenn das Menü geöffnet ist */
    .main-navigation.toggled ul {
        display: flex;
    }
}





/* --- SITE FOOTER --- */
.site-footer {
    background-color: var(--color-muted);
    border-top: 1px solid #eaeaea;
    padding: 4rem 0;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-logo {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0 0 0.8rem 0;
    color: var(--color-text-dark);
}

.footer-credit {
    line-height: 1.6;
    margin: 0;
}

.sub-credit {
    font-size: 0.8rem;
    opacity: 0.8;
}

.sub-credit a {
    color: var(--color-text-dark);
    border-bottom: 1px solid transparent;
}

.sub-credit a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

/* Footer Navigation (Rechtliches) */
.footer-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.footer-navigation li a {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--color-text-dark);
}

.footer-navigation li a:hover {
    color: var(--color-accent);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-navigation ul {
        flex-direction: column;
        gap: 1.2rem;
    }
}


/* --- MAGAZINE HERO SECTION --- */



/* --- MAGAZINE HERO SECTION (BILD OBEN 100%, TEXT DARUNTER) --- */
.magazine-hero-section {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.magazine-hero-card {
    display: block !important; /* Erzwingt, dass Bild und Text IMMER untereinander stehen */
    width: 100%;
    background-color: #ffffff;
    border-bottom: 2px solid var(--color-muted);
    padding-bottom: 1rem;
}

/* Bildbereich auf 100% Breite */
.hero-card-thumbnail {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.hero-card-thumbnail img {
    width: 100%;
    height: auto;
    max-height: 550px; /* Begrenzt die maximale Höhe auf großen Schirmen */
    object-fit: cover;
    display: block;
}

/* Textbereich zentriert unter dem Bild */
.hero-card-body {
    display: block;
    width: 100%;
    max-width: 100%; /* Verhindert zu lange Textzeilen für bessere Lesbarkeit */
    margin: 0 auto;
    text-align: left;
}

.hero-card-title {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0.8rem 0 1.2rem 0;
}

.hero-card-title a {
    color: var(--color-text-dark);
}

.hero-card-title a:hover {
    color: var(--color-accent);
}

.hero-card-body .card-excerpt {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-card-title {
        font-size: 2rem;
    }
}



/* Trenntitel für das darauffolgende Raster */
.section-title {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-text-dark);
    display: inline-block;
}

/* --- RELATED POSTS (single.php) --- */
.related-posts-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea;
}

/* Falls der Fallback-Text greift */
.no-related {
    font-style: italic;
    color: var(--color-text-main);
    grid-column: 1 / -1; /* Streckt den Text über die gesamte Grid-Breite */
}


/* --- DUALE KATEGORIE-ANZEIGE --- */
.category-sep {
    margin: 0 0.5rem;
    opacity: 0.4;
    color: var(--color-text-dark);
    font-weight: normal;
}

/* Die Hauptkategorie etwas cleaner im Hintergrund */
.meta-parent-category {
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.meta-parent-category:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* Die spezifische Unterkategorie bleibt fett im Vordergrund */
.meta-child-category {
    font-weight: 700;
}

/* --- CUSTOM LOGO OPTIMIERUNG --- */
.site-branding a.custom-logo-link {
    display: inline-block;
    line-height: 0; /* Verhindert unschöne Abstände unter dem Bild */
}

.site-branding img.custom-logo {
    
    width: auto;      /* Behält das Seitenverhältnis bei */
    display: block;
    transition: var(--transition-smooth);
}


/* ==========================================================================
   Magazin & Kachel Layout (.jornal & .kachel)
   ========================================================================== */

.jornal-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #222222;
}

/* Header Bereich */
.jornal-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.jornal-badge {
    display: inline-block;
    background-color: #f36b21;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.jornal-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0.25rem 0 0.5rem;
    color: #111111;
    line-height: 1.2;
}

.jornal-description {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
    max-width: 800px;
}

/* Das Magazin-Grid */
.jornal {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Kachel-Basisdesign */
.kachel {
    grid-column: span 12;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kachel:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .kachel {
        grid-column: span 6;
    }
}

@media (min-width: 1024px) {
    .kachel {
        grid-column: span 4;
    }
}

/* Hauptbeitrag / Hero-Kachel (strikte Magazin-Hervorhebung) */
@media (min-width: 900px) {
    .kachel-hero {
        grid-column: span 12;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        align-items: center;
    }

    .kachel-hero .kachel-media {
        height: 100%;
        min-height: 360px;
    }

    .kachel-hero .kachel-img {
        height: 100%;
        object-fit: cover;
    }

    .kachel-hero .kachel-title {
        font-size: 1.75rem;
    }
}

/* Kachel Medien & Bilder */
.kachel-media {
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
}

.kachel-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.kachel:hover .kachel-img {
    transform: scale(1.03);
}

/* Kachel Inhalt */
.kachel-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.kachel-meta {
    font-size: 0.8rem;
    color: #777777;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.kachel-reading-time::before {
    content: "•";
    margin-right: 0.5rem;
}

.kachel-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.75rem;
}

.kachel-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.15s ease;
}

.kachel-title a:hover {
    color: #f36b21;
}

.kachel-excerpt {
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.kachel-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f4f4f4;
}

.kachel-link {
    color: #f36b21;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.15s ease;
}

.kachel-link:hover {
    transform: translateX(4px);
}

/* Pagination */
.jornal-pagination {
    margin-top: 3rem;
    text-align: center;
}

.jornal-pagination .nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.jornal-pagination a,
.jornal-pagination .current {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    color: #333333;
    font-weight: 600;
}

.jornal-pagination .current,
.jornal-pagination a:hover {
    background-color: #f36b21;
    color: #ffffff;
    border-color: #f36b21;
}


/* ==========================================================================
   Startseiten-Erweiterungen für .jornal und .kachel
   ========================================================================== */

/* Hero-Sektion Anpassung */
.jornal-hero-section {
    margin-bottom: 2.5rem;
}

.kachel-hero-featured .hero-title {
    font-size: 2rem;
    line-height: 1.25;
}

.kachel-hero-featured .hero-excerpt {
    font-size: 1.1rem;
    color: #444;
}

/* Sektions-Titel */
.jornal-section {
    margin-bottom: 3rem;
}

.jornal-section-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.jornal-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: #111;
}

/* Kachel Spalten-Varianten im .jornal Grid */
@media (min-width: 768px) {
    .kachel-col-6 {
        grid-column: span 6 !important;
    }
    
    .kachel-full {
        grid-column: span 12 !important;
    }
}

/* Zitat-Kachel (.kachel-quote) */
.kachel-quote {
    background-color: #faf8f5;
    border-color: #eee9e0;
    justify-content: center;
}

.badge-subtle {
    background-color: #888888;
}

.kachel-quote-content {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.35;
    color: #111111;
    margin: 1rem 0;
    padding: 0;
    border: none;
}

.kachel-quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f36b21;
    font-style: normal;
}

/* Banner / Info-Kachel (.kachel-banner) */
.kachel-banner {
    background: #f8f9fa;
    border-left: 4px solid #f36b21;
}

.kachel-body-flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .kachel-body-flex {
        flex-direction: row;
        align-items: center;
    }
}

.kachel-title-large {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.kachel-button {
    display: inline-block;
    background-color: #f36b21;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.kachel-button:hover {
    background-color: #d95a14;
    color: #ffffff;
}
