        :root {
            --primary: #698B22;
            --primary-dark: #4c6318;
            --primary-light: rgba(105, 139, 34, 0.16);
            --text-dark: #101828;
            --text-medium: #1f2937;
            --text-light: #6b7280;
            --surface: #ffffff;
            --surface-alt: #f5f8f0;
            --card-radius: 12px;
            --shadow-soft: 0 18px 48px rgba(15, 23, 42, 0.12);
        }

        .news-hero-subtitle {
            display: inline-block;
            margin-top: 0.3em;
            font-size: 1.2em;
            font-weight: 700;
        }

        .footer-heading-spaced {
            margin-top: 30px;
        }

        .address-line-indent {
            padding-left: 30px;
        }

        /* Rotating Title Animation */
        .rotating-title {
            display: inline-block;
            position: relative;
            background: #ffffff;
            color: #1a1a1a;
            padding: 0.15em 0.4em;
            border-radius: 4px;
            border: 2px solid #ffffff;
            min-width: 280px;
            text-align: left;
        }

        .rotating-title .word {
            display: inline-block;
            opacity: 0;
            position: absolute;
            left: 0.4em;
            transform: translateY(12px);
            white-space: nowrap;
            animation: rotateWord 12.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }

        .rotating-title .word:nth-child(1) { animation-delay: 0s; }
        .rotating-title .word:nth-child(2) { animation-delay: 2.5s; }
        .rotating-title .word:nth-child(3) { animation-delay: 5s; }
        .rotating-title .word:nth-child(4) { animation-delay: 7.5s; }
        .rotating-title .word:nth-child(5) { animation-delay: 10s; }

        @keyframes rotateWord {
            0% {
                opacity: 0;
                transform: translateY(12px);
            }
            3% {
                opacity: 1;
                transform: translateY(0);
            }
            17% {
                opacity: 1;
                transform: translateY(0);
            }
            20%, 100% {
                opacity: 0;
                transform: translateY(-12px);
            }
        }

        /* Placeholder for height */
        .rotating-title::after {
            content: 'FÖRDERUNGEN';
            visibility: hidden;
            display: inline-block;
        }

        .breadcrumb {
            margin-bottom: 4px;
        }

        .breadcrumb-list {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0;
            margin: 0 0 8px;
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .breadcrumb-list li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .breadcrumb-list li::after {
            content: '›';
            opacity: 0.5;
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb-list li:last-child::after {
            content: '';
        }

        .breadcrumb-list a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .breadcrumb-list a:hover {
            color: #ffffff;
            text-decoration: underline;
        }

        .breadcrumb-list li[aria-current="page"] {
            color: #ffffff;
            font-weight: 600;
        }

        @media (max-width: 900px) {
            .news-card-grid,
            .news-latest-grid {
                grid-template-columns: 1fr;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.65;
            color: var(--text-dark);
            background: #ffffff;
        }

        .content-container {
            width: 100%;
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 40px;
        }

        @media (max-width: 768px) {
            .content-container {
                padding: 0 20px;
            }

            .news-subnav {
                display: none !important;
            }

            .news-filters {
                background: #ffffff;
                border-bottom: 1px solid #e8e8e8;
            }

            .news-filters-bar {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 14px 0;
            }

            .news-category-tabs {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                width: 100%;
            }

            .news-tab {
                padding: 8px 14px;
                font-size: 0.82rem;
                border-radius: 4px;
            }

            .news-tab.hidden-tab {
                display: none;
            }

            .news-category-tabs.expanded .news-tab.hidden-tab {
                display: inline-flex;
            }

            .news-tabs-expand {
                display: inline-flex;
                width: 34px;
                height: 34px;
                flex-shrink: 0;
            }

            .news-category-tabs.expanded .news-tabs-expand svg {
                transform: rotate(90deg);
            }

            .news-search-wrapper {
                width: 100%;
            }

            .news-search-input {
                width: 100% !important;
                padding: 12px 14px 12px 40px;
                font-size: 0.9rem;
                border-radius: 4px;
            }

            .news-search-input:focus {
                width: 100% !important;
            }
        }

        .news-subnav {
            background: var(--primary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .news-subnav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 14px 0;
        }

        .news-filters {
            background: #ffffff;
            border-bottom: 1px solid #e8e8e8;
        }

        .news-filters-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 14px 0;
        }

        .news-category-tabs {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: nowrap;
        }

        .news-tab {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #555;
            background: #f5f5f5;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.15s ease;
            white-space: nowrap;
        }

        .news-tab:hover {
            background: #e8e8e8;
            color: #1a1a1a;
        }

        .news-tab.active {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .news-tab.hidden-tab {
            display: none;
        }

        .news-category-tabs.expanded .news-tab.hidden-tab {
            display: inline-flex;
        }

        .news-tabs-expand {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #f5f5f5;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #555;
        }

        .news-tabs-expand:hover {
            background: #e8e8e8;
            color: #1a1a1a;
        }

        .news-tabs-expand svg {
            transition: transform 0.2s ease;
        }

        .news-category-tabs.expanded .news-tabs-expand svg {
            transform: rotate(90deg);
        }

        .news-search-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .news-search-icon {
            position: absolute;
            left: 12px;
            color: #999;
            pointer-events: none;
        }

        .news-search-input {
            padding: 10px 14px 10px 38px;
            font-size: 0.9rem;
            border: 1px solid #bbb;
            border-radius: 4px;
            background: #fafafa;
            color: #333;
            width: 200px;
            transition: all 0.2s ease;
        }

        .news-search-input:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
            width: 260px;
        }

        .news-search-input::placeholder {
            color: #999;
        }

        .news-subnav a {
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .news-subnav-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-right: auto;
        }

        .news-latest {
            background: linear-gradient(135deg, #f7faf3 0%, #f2f7eb 100%);
            padding: 52px 0 44px;
        }

        .news-latest-grid {
            margin: 0;
            width: 100%;
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* ========== CLEAN HERO ========== */
        .news-hero {
            position: relative;
            padding: 48px 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            overflow: hidden;
        }

        .news-hero::before {
            display: none;
        }

        .news-hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 60px;
            align-items: center;
        }

        .news-hero-main {
            display: grid;
            gap: 16px;
        }

        .news-hero-nav {
            display: none;
        }

        .news-hero-nav a {
            display: none;
        }

        .news-hero-lede h1 {
            font-size: clamp(1.75rem, 3vw, 2.2rem);
            font-weight: 700;
            line-height: 1.25;
            margin: 0;
            color: #ffffff;
        }

        .news-hero-lede p {
            font-size: 0.95rem;
            max-width: 540px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== NEWSLETTER CARD ========== */
        .newsletter-card {
            background: #ffffff;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            padding: 24px;
            display: grid;
            gap: 14px;
        }

        .newsletter-card h2 {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.3;
            color: #1a1a1a;
            margin: 0;
        }

        .newsletter-card > div > p {
            color: #555;
            font-size: 0.85rem;
            line-height: 1.5;
            margin: 4px 0 0;
        }

        .newsletter-card form {
            display: grid;
            gap: 10px;
        }

        .newsletter-input {
            border: 1px solid #d1d5db;
            border-radius: 4px;
            padding: 11px 14px;
            font-size: 0.9rem;
            background: #fafafa;
            color: #1a1a1a;
            transition: border-color 0.2s ease, background 0.2s ease;
        }

        .newsletter-input::placeholder {
            color: #999;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary);
            background: #fff;
        }

        .newsletter-button {
            border: none;
            border-radius: 4px;
            padding: 11px 14px;
            font-size: 0.9rem;
            font-weight: 600;
            background: var(--primary);
            color: #ffffff;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .newsletter-button:hover {
            background: var(--primary-dark);
        }

        .newsletter-feedback {
            font-size: 0.85rem;
            line-height: 1.4;
            margin-top: -4px;
            display: none;
        }

        .newsletter-feedback.is-visible {
            display: block;
        }

        .newsletter-feedback.is-success {
            color: var(--primary);
        }

        .newsletter-feedback.is-info {
            color: #3b82f6;
        }

        .newsletter-feedback.is-warning {
            color: #f59e0b;
        }

        .newsletter-feedback.is-error {
            color: #ef4444;
        }

        .newsletter-divider {
            height: 1px;
            background: #e8e8e8;
            margin: 2px 0 6px;
        }

        .newsletter-unsubscribe {
            font-size: 0.75rem;
            color: #767676;
            margin: 0;
            line-height: 1.5;
        }

        .newsletter-unsubscribe a {
            color: var(--primary);
            text-decoration: none;
        }

        .newsletter-unsubscribe a:hover {
            text-decoration: underline;
        }

        .newsletter-follow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .newsletter-follow span {
            font-size: 0.8rem;
            color: #767676;
        }

        .social-buttons {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .social-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 4px;
            background: #f5f5f5;
            color: #555;
            text-decoration: none;
            border: 1px solid #e8e8e8;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .social-button:hover {
            background: #e8e8e8;
            color: #1a1a1a;
        }

        .social-button svg {
            width: 16px;
            height: 16px;
        }

        .news-stream {
            padding: 72px 0 48px;
            background: #f6f6f6;
        }

        .news-section-head {
            margin-bottom: 28px;
        }

        .news-section-head h2 {
            font-size: 1.9rem;
            color: var(--text-medium);
        }

        .news-search-empty {
            margin-top: 24px;
            font-size: 1rem;
            color: var(--text-light);
            text-align: center;
        }

        /* ========== SPIEGEL-STYLE NEWS CARDS ========== */
        .news-card-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .news-card {
            display: grid;
            grid-template-columns: 1fr 420px;
            background: #ffffff;
            border: 1px solid #e8e8e8;
            border-radius: 4px;
            text-decoration: none;
            color: inherit;
            transition: box-shadow 0.15s ease;
            padding: 28px 32px;
        }

        .news-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .news-card-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding-right: 40px;
            min-width: 0;
        }

        .news-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .news-card-category {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ffffff;
            background: var(--primary);
            padding: 4px 10px;
            border-radius: 4px;
            text-transform: none;
            letter-spacing: 0;
        }

        .news-card-date {
            font-size: 0.8rem;
            color: #767676;
        }

        .news-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            line-height: 1.25;
            margin: 4px 0 8px;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .news-card p {
            font-size: 0.92rem;
            color: #333;
            line-height: 1.6;
            margin: 0;
            word-wrap: break-word;
            overflow-wrap: break-word;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
        }

        .news-card-footer {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: auto;
            padding-top: 8px;
            font-size: 0.8rem;
            color: #767676;
        }

        .news-card-meta {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-card-meta svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .news-card-author {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .news-card-author svg {
            width: 14px;
            height: 14px;
            opacity: 0.7;
        }

        .news-card-media {
            position: relative;
            width: 100%;
            height: 240px;
            overflow: hidden;
            border-radius: 4px;
            background: #f5f5f5;
        }

        .news-card-media img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Hidden elements from old design */
        .news-card .badge,
        .news-card-duration,
        .news-card-meta-right,
        .news-card-cta {
            display: none;
        }
        /* Tablet Styles */
        @media (max-width: 1024px) {
            .news-hero-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .newsletter-card {
                max-width: 400px;
            }

            .newsletter-follow {
                flex-direction: row;
                align-items: center;
            }
        }

        /* Tablet: Bild kleiner */
        @media (max-width: 1100px) {
            .news-card {
                grid-template-columns: 1fr 350px;
            }
            .news-card-media {
                height: 220px;
            }
        }

        @media (max-width: 900px) {
            .news-card {
                grid-template-columns: 1fr 280px;
                padding: 24px;
            }
            .news-card-body {
                padding-right: 28px;
            }
            .news-card-media {
                height: 180px;
            }
            .news-card h3 {
                font-size: 1.25rem;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            /* News Cards - Bild oben, Text unten auf Mobile */
            .news-card {
                grid-template-columns: 1fr;
                padding: 20px 0;
            }
            .news-card-body {
                padding-right: 0;
                order: 2;
                padding-top: 16px;
            }
            .news-card-media {
                order: 1;
                height: 180px;
                border-radius: 4px;
            }
            .news-card h3 {
                font-size: 1.15rem;
            }
            .news-card p {
                font-size: 0.9rem;
                -webkit-line-clamp: 2;
            }
            .news-card-category {
                font-size: 0.75rem;
            }

            /* Hero Section - Kompakter */
            .news-hero {
                padding: 32px 0;
            }

            .news-hero-content {
                gap: 24px;
            }

            .news-hero-lede h1 {
                font-size: 1.4rem;
            }

            .news-hero-lede p {
                font-size: 0.88rem;
            }

            .breadcrumb-list {
                font-size: 0.75rem;
                margin-bottom: 8px;
            }

            /* Newsletter Card - Kompakter */
            .newsletter-card {
                padding: 20px;
                gap: 12px;
                max-width: none;
            }

            .newsletter-card h2 {
                font-size: 0.95rem;
            }

            .newsletter-card > div > p {
                font-size: 0.82rem;
            }

            .newsletter-input,
            .newsletter-button {
                padding: 10px 12px;
                font-size: 0.88rem;
            }

            /* News Latest Section */
            .news-latest {
                padding: 32px 0 28px;
            }

            .news-section-head {
                margin-bottom: 18px;
            }

            .news-section-head h2 {
                font-size: 1.4rem;
            }

            /* News Stream Section */
            .news-stream {
                padding: 40px 0 32px;
            }

            /* News Cards - Mobile optimiert */
            .news-card {
                border-radius: 10px;
            }

            .news-card:hover {
                transform: none;
                box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
            }

            .news-card-media img {
                height: 180px;
            }

            .news-card-body {
                padding: 16px 18px 18px;
                gap: 10px;
            }

            .news-card-meta {
                top: 10px;
                left: 10px;
                right: 10px;
                gap: 8px;
                flex-wrap: wrap;
            }

            .news-card .badge {
                padding: 4px 8px;
                font-size: 0.65rem;
                border-radius: 4px;
            }

            .news-card-duration {
                padding: 4px 8px;
                font-size: 0.65rem;
                border-radius: 4px;
            }

            .news-card-meta-right {
                gap: 6px;
            }

            .news-card h3 {
                font-size: 1rem;
                line-height: 1.35;
            }

            .news-card p {
                font-size: 0.85rem;
                line-height: 1.5;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .news-card-cta {
                font-size: 0.82rem;
                padding: 10px 16px;
                width: 100%;
                justify-content: center;
                margin-top: 6px;
            }

            /* Subnav */
            .news-subnav-inner {
                padding: 10px 0;
            }

            .news-subnav a {
                font-size: 0.85rem;
            }

            /* Filter Section - Tablet */
            .news-tab {
                padding: 7px 12px;
                font-size: 0.8rem;
            }

            .news-tabs-expand {
                width: 32px;
                height: 32px;
            }

            .news-search-input {
                width: 160px;
            }

            .news-search-input:focus {
                width: 200px;
            }
        }

        /* Small Mobile Styles */
        @media (max-width: 480px) {
            .news-hero {
                padding: 24px 0;
            }

            .news-hero-lede h1 {
                font-size: 1.2rem;
            }

            .news-hero-lede p {
                font-size: 0.82rem;
            }

            .newsletter-card {
                padding: 16px;
                gap: 10px;
            }

            .newsletter-card h2 {
                font-size: 0.9rem;
            }

            .newsletter-card > div > p {
                font-size: 0.78rem;
            }

            .newsletter-follow {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            /* Category tabs small mobile */
            .news-filters-bar {
                gap: 10px;
                padding: 12px 0;
            }

            .news-category-tabs {
                gap: 6px;
            }

            .news-tab {
                padding: 6px 12px;
                font-size: 0.75rem;
                border-radius: 4px;
            }

            .news-tabs-expand {
                width: 30px;
                height: 30px;
            }

            .news-tabs-expand svg {
                width: 14px;
                height: 14px;
            }

            .news-search-input {
                padding: 10px 12px 10px 36px;
                font-size: 0.85rem;
            }

            .news-search-icon {
                width: 14px;
                height: 14px;
                left: 10px;
            }

            .news-card-media img {
                height: 160px;
            }

            .news-card-body {
                padding: 14px 16px 16px;
            }

            .news-card h3 {
                font-size: 0.95rem;
            }

            .news-section-head h2 {
                font-size: 1.25rem;
            }

            .news-latest {
                padding: 24px 0 20px;
            }

            .news-stream {
                padding: 32px 0 24px;
            }
        }

        /* Footer Mobile Fix */
        @media (max-width: 768px) {
            .footer-section {
                text-align: center !important;
            }

            .footer-section h3 {
                text-align: center !important;
            }

            .footer-links {
                text-align: center !important;
            }

            .footer-links li {
                text-align: center !important;
            }

            .footer-bottom {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                gap: 16px !important;
                width: 100% !important;
            }

            .footer-bottom-links {
                display: flex !important;
                flex-wrap: wrap !important;
                justify-content: center !important;
                align-items: center !important;
                gap: 16px !important;
                width: 100% !important;
            }

            .footer-bottom p,
            .footer-bottom .copyright {
                text-align: center !important;
                width: 100% !important;
            }
        }
