:root {
    --blue: #009fe3; /* Korrektes Poster-Blau */
    --text: #111;
    --muted: #555;
    --bg: #fff;
    --border: #d6e9ff;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
    line-height: 1.4;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 20px 64px
}

/* Grid: linke Hauptspalte + rechte Infobox/Map */
.grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr
    }
}

/* Headline */
.headline {
    color: var(--blue);
    font-weight: normal;
    font-size: clamp(28px, 7vw, 48px);
    line-height: 1.1;
    margin: 0;
}

.headline .blue {
    font-size: clamp(40px, 14vw, 96px);
    font-weight: 800;
    line-height: 1.05;
}

.subhead {
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 20px
}

/* Crowd separator */
.crowd {
    width: 100%;
    height: auto;
    display: block;
    margin: 6px 0 22px;
}

/* Bullet list */
.bullets {
    margin: 0 0 26px 0;
    padding: 0 0 0 1.1rem;
    font-size: clamp(18px, 2.2vw, 23px);
}

.bullets li {
    margin: 10px 0;
    font-weight: 600
}

/* Article text */
.kicker {
    color: var(--blue);
    font-weight: 800;
    margin: 8px 0;
    font-size: 1.2rem;
}

.article {
    font-size: clamp(14px, 2.1vw, 17px);
    color: #222
}

.article p {
    margin: 0 0 14px
}

/* Right column: callout card + map */
.card {
    border: 2px solid var(--blue);
    padding: 18px;
    box-shadow: 0 0 0 1px #e5f2ff inset;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: normal;
}

.card p {
    margin: 0 0 12px;
    color: #222;
    font-size: 18px;
}

.cta {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 700
}

figure {
    margin: 18px 0
}

figure img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px
}

figcaption {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px
}

footer {
    margin-top: 24px;
    font-size: 13px;
    color: var(--muted)
}

.contact {
    font-weight: 600;
    color: #000
}

/* Lightbox + helpers */
.zoomable {
    cursor: zoom-in
}

.hero {
    margin: 0 0 8px
}

.crowd-wrap {
    margin: 6px 0 22px
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
    z-index: 9999;
    padding: 20px
}

.lightbox[aria-hidden="false"] {
    display: flex
}

.lightbox img {
    max-width: min(1200px, 95vw);
    max-height: 90vh;
    width: auto;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
    border-radius: 6px;
    background: #fff
}

.lightbox .close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    border: none;
    border-radius: 999px;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 36px;
    cursor: pointer
}

body.lock-scroll {
    overflow: hidden
}

/* Card icon between h3 and text */
.card .section-icon {
    display: block;
    width: 70px;
    margin: 20px 0;
    opacity: 0.95;
}