* { box-sizing: border-box; }

:root {
    --bg: #f3f4f6;
    --card: #ffffff;
    --text: #111827;
    --muted: #4b5563;
    --border: #e5e7eb;
    --accent: #2563eb;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.site-header {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding: 1.25rem 0;
    margin-bottom: 1.5rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.eyebrow {
    margin: 0 0 .25rem;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    opacity: .75;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
}

.zwischen-title {
    margin: 0;
    font-size: 0.9rem;
}

.site-nav a {
    padding: .6rem .9rem;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.tile,
.detail {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.tile {
    display: block;
    padding: 1rem;
    transition: transform .15s ease, box-shadow .15s ease;
}

.tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.tile img,
.detail img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    background: #e5e7eb;
}

.tile img {
    aspect-ratio: 16 / 9;
    margin-bottom: .9rem;
}

.tile h2 {
    margin: 0 0 .5rem;
    font-size: 1.15rem;
}

.tile p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.detail {
    padding: 1.25rem;
}

.detail img {
    margin-bottom: 1rem;
    max-height: 360px;
}

.warn {
    display: inline-block;
    margin-top: .75rem;
    color: #b91c1c;
    font-weight: 700;
}

.site-footer {
    padding: 2rem 0;
    color: var(--muted);
    font-size: .95rem;
}




.tile {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

.tile::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--accent);
}

.tile-top {
    height: 72px;
    border-radius: 14px;
    margin-bottom: .9rem;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 18%, white), white);
}

.tile h2 {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: 0 0 .5rem;
    font-size: 1.15rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex: none;
}



.detail {
    position: relative;
    padding: 1.25rem;
    border-top: 5px solid var(--accent);
}