/* Basis-Variablen für ein modernes, medizinisches Design */
    :root {
        --primary-color: #0056b3; /* Vertrauensvolles Blau */
        --primary-light: #e6f0fa;
        --text-main: #333333;
        --text-muted: #666666;
        --warning-bg: #fff8e1;
        --warning-border: #ffc107;
        --bg-color: #f8f9fa;
        --card-radius: 8px;
    }
    /* Container für den gesamten Aktuelles-Bereich */
    .aktuelles-container {
        font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: var(--text-main);
        line-height: 1.6;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 0;
    }
    .aktuelles-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .aktuelles-header h1 {
        color: var(--primary-color);
        font-size: 2.2rem;
        margin-bottom: 10px;
    }
    .aktuelles-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }
    /* Grid-Layout für die Karten */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
    /* Standard-Karte */
    .news-card {
        background: #ffffff;
        border: 1px solid #e0e0e0;
        border-radius: var(--card-radius);
        padding: 25px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        flex-direction: column;
    }
    .news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    }
    /* Wichtige Hinweis-Karte (z.B. Maskenpflicht, Notfälle) */
    .news-card.alert-card {
        background-color: var(--warning-bg);
        border-color: var(--warning-border);
    }
    /* Highlight-Karte (z.B. Impfungen) */
    .news-card.highlight-card {
        background-color: var(--primary-light);
        border-color: var(--primary-color);
    }
    .card-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .news-card h2 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-top: 0;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-light);
        padding-bottom: 10px;
    }
    .alert-card h2 {
        color: #d32f2f;
        border-bottom-color: #ffc107;
    }
    .news-card p {
        margin-bottom: 15px;
    }
    .news-card ul {
        margin: 0 0 15px 0;
        padding-left: 20px;
    }
    .news-card li {
        margin-bottom: 8px;
    }
    .notice-box {
        background: #ffffff;
        border-left: 4px solid var(--primary-color);
        padding: 10px 15px;
        margin-top: auto;
        font-size: 0.95rem;
    }
    .alert-card .notice-box {
        border-left-color: #d32f2f;
    }
    /* Buttons / Links */
    .news-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
    }
    
    .news-link:hover {
        text-decoration: underline;
    }