
        /* Hero-Bereich Anpassung für News-Seite */
        .section-padded2 {
            padding: 1px 0;
            box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.25);
            margin-bottom: 10px;
            background-color: var(--color-light-bg);
        }
        .section-light2 {
            background-color: var(--color-medium-dark-bg);
            border-bottom: 1px solid var(--color-border);
        }
        .fade-in-news{
            opacity: 1;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .section-title-news {
            font-family: 'arial', sans-serif;
            font-size: 1.1em;
            color: var(--color-primary-accent);
            text-align: center;
            margin-bottom: 60px;
        }
        
        .hero-section-news {
            position: relative;
            width: 100%;
            height: 15vh;
            min-height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-color: #85838a;
        }
        #news-hero {
            position: relative;
            overflow: hidden;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        #news-hero .hero-text-container {
            position: relative; /* Wichtig, damit der Text über dem Hintergrundbild liegt */
            z-index: 10;
            
        }
        #news-hero .glitch {
            font-size: 3em; /* oder passend zur Überschrift */
            /* Behalten Sie die Glitch-Effekt-Stile aus style.css bei oder fügen Sie sie hier ein */
        }
        @media (max-width: 768px) {
            #news-hero .glitch {
                font-size: 2em;
            }
        }
        .news-btn {
            display: block;
            margin: 32px auto 0 auto;
            padding: 12px 32px;
            background: linear-gradient(90deg, #0ff 0%, #232b43 100%);
            color: #111;
            font-family: 'Orbitron', sans-serif;
            font-size: 1.1em;
            border: none;
            border-radius: 8px;
            box-shadow: 0 2px 16px #0ff8, 0 0px 2px #fff;
            cursor: pointer;
            transition: background 0.2s, color 0.2s, transform 0.15s;
        }
.news-btn:hover {
    background: linear-gradient(90deg, #232b43 0%, #0ff 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
/* Grundlayout für den Newsfeed-Bereich */
#newsfeed-section {
    background: linear-gradient(120deg, #0052CC 0%, #0052CC 100%);
    padding: 10px 0;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(2, 12, 27, 0.25);
    margin-bottom: 50px;
}

#newsfeed-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 14px;
}

/* Überschrift */
#newsfeed-section .section-title2 {
    color: #fff;
    font-family: 'arial', sans-serif;
    font-size: 1.8em;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    border-left: 5px solid #0ff;
    padding-left: 18px;
}

/* Newsfeed Grid */
#newsfeed-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* News Card */
.news-item {
    background: var(--color-light-bg);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,255,255,0.08), 0 1.5px 0 #0ff inset;
    padding: 32px 24px 24px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    border: 1.5px solid rgba(0,255,255,0.12);
}

.news-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0ff 0%, #fff 100%);
    opacity: 0.7;
    border-radius: 18px 18px 0 0;
    pointer-events: none;
}

.news-item:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 8px 40px 0 #0ff88c44, 0 2px 0 #0ff inset;
    border-color: #0ff;
}

.news-item h3 {
    font-family: 'arial', sans-serif;
    font-size: 1.25em;
    color: #0052CC;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
    text-shadow: 0 1px 8px #0052CC, 0 0px 2px #fff;
}

.news-item h3 a {
    color: #0052CC;
    text-decoration: none;
    transition: color 0.2s;
}

.news-item h3 a:hover {
    color: #fff;
    text-shadow: 0 0 8px #0ff, 0 0 2px #fff;
}

.news-item .pub-date {
    font-size: 0.95em;
    color: #7fffd4;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    font-family: 'Roboto Mono', monospace;
}

.news-item p {
    color: #e0e0e0;
    font-size: 1.08em;
    line-height: 1.6;
    margin-bottom: 0;
}
.news-item p,
.news-item p a,
.news-item p a:visited {
    color: #000000 !important;  
    font-weight: normal;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.equipment-item {
    background-color: var(--color-primary-accent);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--color-border);
}

.equipment-item img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.equipment-item h4 {
    font-family: 'arial', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--color-medium-dark-bg);
}

.equipment-item p {
    color: var(--color-dark);
}

#loading-message, #error-message {
    grid-column: 1/-1;
    text-align: center;
    color: #0ff;
    font-size: 1.2em;
    padding: 30px 0;
    letter-spacing: 1px;
}

#loading-message {
    color: #0ff;
    animation: neon-blink 1.2s infinite alternate;
}

#error-message {
    color: #ff3c3c;
    background: rgba(30,0,0,0.15);
    border-radius: 8px;
    padding: 18px;
    font-weight: bold;
}



@keyframes neon-blink {
    0% { opacity: 1; text-shadow: 0 0 8px #0ff, 0 0 2px #fff; }
    100% { opacity: 0.5; text-shadow: 0 0 24px #0ff, 0 0 8px #fff; }
}

/* Responsive Anpassungen */
@media (max-width: 700px) {
    #newsfeed-content {
        grid-template-columns: 1fr;
    }
    #newsfeed-section .section-title {
        font-size: 1.3em;
        padding-left: 10px;
    }
    .news-item {
        padding: 20px 10px 16px 10px;
    }
    .section-title-news {
        font-size: 2.2em;
    }
}