<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Category Hero Styles - Optimiert wie content.php */
.category-hero {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    color: var(--primary-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 100px; /* 20px mehr fÃ¼r Breadcrumbs */
    padding-bottom: 40px;
}

/* Breadcrumbs - Uses global styles from style.css */

/* Headlines */
.category-hero h1,
.category-hero .display-4 {
    color: var(--primary-color) !important;
}

.category-hero p,
.category-hero .lead {
    color: var(--primary-color) !important;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    width: 160px;
    margin-left: auto; /* Bild rechtsbÃ¼ndig */
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: none; /* Keine Animation bei Mouseover */
}

/* Mobile Anpassungen */
@media (max-width: 991px) {
    .category-hero {
        padding-top: 100px; /* Same as desktop to prevent breadcrumb overlap */
        padding-bottom: 30px;
    }
    
    .hero-image-container {
        margin-top: 0;
        width: 140px;
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .category-hero {
        padding-top: 50px;
        padding-bottom: 0;
        min-height: auto;
    }
    
    /* Hero Image Ã¼ber volle Breite auf Mobile */
    .hero-image-container {
        margin-top: 1rem;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        height: auto !important;
    }
    
    .hero-image-container .hero-main-image {
        border-radius: 0 !important;
        border: 0 !important;
        width: 100%;
        height: auto !important;
        box-shadow: none !important;
    }
    
    .display-4 {
        font-size: 1.75rem;
        margin-top: 10px;
        margin-bottom: 10px;
        color: var(--primary-color) !important;
    }
    
    .lead {
        font-size: 1.1rem;
        color: var(--primary-color) !important;
    }
    
}</pre></body></html>