:root {
    --primary: #03932C;
    --secondary: #E36068;

    --text-dark: #0f172a;
    --text-mid: #475569;
    --text-soft: #64748b;

    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --line: rgba(15, 23, 42, 0.08);

    --font-stack: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-sm: 0 12px 30px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* Basis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.aktuelles-page {
    padding-top: 100px;
    font-family: var(--font-stack);
    color: var(--text-dark);
    background:
        radial-gradient(circle at top left, rgba(3, 147, 44, 0.05), transparent 24%),
        radial-gradient(circle at top right, rgba(227, 96, 104, 0.06), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout */
.aktuelles-main {
    width: min(100% - 48px, 1080px);
    margin: 0 auto;
    padding: 56px 0 88px;
}

/* Intro bewusst KEINE Karte */
.aktuelles-intro {
    margin-bottom: 34px;
}

.aktuelles-intro__kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
}

.aktuelles-intro h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.aktuelles-intro__text {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* Feed */
.news-feed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Einheitliches Grundgerüst */
.news-entry {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px clamp(20px, 3vw, 34px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.news-entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.news-entry:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(3, 147, 44, 0.12);
}

.news-entry__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.news-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(3, 147, 44, 0.08);
    border: 1px solid rgba(3, 147, 44, 0.14);
}

.news-chip--rose {
    color: var(--secondary);
    background: rgba(227, 96, 104, 0.08);
    border-color: rgba(227, 96, 104, 0.14);
}

.news-entry time {
    font-size: 0.95rem;
    color: var(--text-soft);
}

.news-entry h2 {
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.news-entry p {
    color: var(--text-mid);
    font-size: 1.02rem;
    line-height: 1.8;
}

/* Optionaler Bildblock */
.news-entry__media {
    margin: 0 0 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #e7edf3;
}

.news-entry__media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
}

/* Optionale Hinweisbox */
.news-entry__note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--bg-light);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--text-mid);
}

.news-entry__note strong {
    color: var(--text-dark);
}

/* Optionale Linkliste */
.news-entry__links {
    margin-top: 18px;
    padding-left: 18px;
    color: var(--text-mid);
}

.news-entry__links li + li {
    margin-top: 8px;
}

.news-entry__links a {
    color: var(--primary);
    font-weight: 700;
}

.news-entry__links a:hover {
    color: var(--secondary);
}

/* Optionale Buttons */
.news-entry__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(3, 147, 44, 0.1);
    border: 1px solid rgba(3, 147, 44, 0.14);
    color: var(--primary);
    font-weight: 800;
    transition: var(--transition);
}

.news-btn:hover {
    transform: translateY(-2px);
    background: rgba(3, 147, 44, 0.14);
}

.news-btn--ghost {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-dark);
}

.news-btn--ghost:hover {
    color: var(--secondary);
    border-color: rgba(227, 96, 104, 0.16);
    background: rgba(227, 96, 104, 0.04);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 720px) {
    .aktuelles-main {
        width: min(100% - 28px, 1080px);
        padding: 28px 0 56px;
    }

    .aktuelles-intro {
        margin-bottom: 26px;
    }

    .news-entry {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .news-entry__meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-entry__media img {
        max-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .news-entry,
    .news-entry:hover,
    .news-btn,
    .reveal {
        transition: none !important;
        transform: none !important;
    }

    .reveal {
        opacity: 1 !important;
    }
}

.news-entry p + p {
    margin-top: 14px;
}

.news-entry__note + p,
.news-entry p + .news-entry__note,
.news-entry p + .news-entry__actions,
.news-entry p + .news-entry__links,
.news-entry__note + .news-entry__actions {
    margin-top: 18px;
}

.news-entry__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 18px 0 20px;
}

.news-entry__gallery-item {
    overflow: hidden;
    border-radius: 18px;
    background: #e7edf3;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-entry__gallery-item img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

@media (max-width: 720px) {
    .news-entry__gallery {
        grid-template-columns: 1fr;
    }

    .news-entry__gallery-item img {
        height: auto;
        max-height: 280px;
    }
}

.news-entry__gallery-item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #ffffff;
    padding: 14px;
}