/* Park page: the highlight block ("Das Ereignis") as chapters. Each chapter
   is a row: photographs on one side, the numbered heading and the full text on
   the other, sides alternating. Tokens from park-prose.css (--pk-*). */

.pk-hl__header { max-width: 68ch; }

.pk-hl {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 88px);
}

/* ── One chapter ───────────────────────────────────────────────────── */
.pk-hl__chapter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px clamp(32px, 5vw, 72px);
    align-items: center;
}
/* Even chapters swap sides: the photographs move right, the text left. The
   source order stays photo-then-text for the reader without CSS. */
.pk-hl__chapter:nth-child(even) > .pk-hl__photos { order: 2; }
.pk-hl__chapter:nth-child(even) > .pk-hl__text   { order: 1; }
/* No photo left for this chapter: the text takes the reading width alone. */
.pk-hl__chapter--solo {
    grid-template-columns: minmax(0, 1fr);
}
.pk-hl__chapter--solo > .pk-hl__text { max-width: 68ch; }

/* ── Photographs ───────────────────────────────────────────────────── */
.pk-hl__photos {
    position: relative;
    margin: 0;
    min-width: 0;
}
.pk-hl__tile {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #c8bfb5;
}
.pk-hl__tile--main {
    aspect-ratio: 3 / 2;
}
/* The second photograph sits on the main one like a print laid on top of it,
   a white frame keeping it apart from the picture below. The pair leaves room
   under the main tile for the overlap. */
.pk-hl__photos--pair { padding-bottom: 14%; }
.pk-hl__tile--small {
    position: absolute;
    right: -12px;
    bottom: 0;
    width: 44%;
    aspect-ratio: 4 / 3;
    border: 4px solid var(--pk-white);
    box-shadow: 0 10px 28px rgba(17, 18, 20, .20);
}
/* On the mirrored row the print hangs off the left edge instead. */
.pk-hl__chapter:nth-child(even) .pk-hl__tile--small {
    right: auto;
    left: -12px;
}
.pk-hl__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.pk-hl__tile:hover .pk-hl__img { transform: scale(1.04); }

/* ── Text ──────────────────────────────────────────────────────────── */
.pk-hl__text { min-width: 0; }
.pk-hl__num {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--pk-orange);
    margin-bottom: 14px;
}
.pk-hl__num::before {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--pk-orange);
}
.pk-hl__h3 {
    font-size: clamp(21px, 2.2vw, 26px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: var(--pk-ink);
    margin: 0 0 14px;
}
.pk-hl__body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--pk-body);
}
.pk-hl__body p { margin: 0 0 14px; }
.pk-hl__body p:last-child { margin-bottom: 0; }
.pk-hl__body a { color: var(--pk-orange-text); }
.pk-hl__body strong { color: var(--pk-ink); }

/* ── Narrow ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pk-hl { gap: 48px; }
    .pk-hl__chapter {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
    /* One column: photographs first, then the text, on every row. */
    .pk-hl__chapter:nth-child(even) > .pk-hl__photos { order: 1; }
    .pk-hl__chapter:nth-child(even) > .pk-hl__text   { order: 2; }
    /* The print no longer overlaps: the two photographs share one row,
       the larger one keeping the wider column. */
    .pk-hl__photos--pair {
        padding-bottom: 0;
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 8px;
    }
    .pk-hl__photos--pair .pk-hl__tile--main { aspect-ratio: auto; min-height: 0; }
    .pk-hl__tile--small,
    .pk-hl__chapter:nth-child(even) .pk-hl__tile--small {
        position: static;
        width: auto;
        aspect-ratio: auto;
        border: 0;
        box-shadow: none;
    }
    .pk-hl__photos--pair .pk-hl__tile { height: 100%; }
    .pk-hl__photos--pair { aspect-ratio: 5 / 2; }
}
@media (max-width: 600px) {
    .pk-hl { gap: 40px; }
    .pk-hl__tile { border-radius: 6px; }
    .pk-hl__photos--pair { aspect-ratio: 2 / 1; }
    .pk-hl__body { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
    .pk-hl__img { transition: none; }
}
