:root {
    color-scheme: dark;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #141414;
}

::selection {
    background-color: #C43C3C;
    color: #F3EDE2;
}

/* ---- Gig mosaic (asymmetric) ---- */
.grid-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    grid-auto-rows: 11rem;
}
.grid-mosaic > .mosaic-feature {
    grid-column: span 2;
    grid-row: span 2;
}
.grid-mosaic > .mosaic-tile:nth-child(3n) {
    grid-column: span 2;
}
.grid-mosaic > .mosaic-tile:nth-child(5n) {
    grid-row: span 2;
}
@media (max-width: 1023px) {
    .grid-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .grid-mosaic > .mosaic-feature {
        grid-column: span 2;
        grid-row: span 2;
    }
}
@media (max-width: 639px) {
    .grid-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .grid-mosaic > * {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 14rem;
    }
}

/* ---- Filter chips ---- */
.chip {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid rgba(243, 237, 226, 0.18);
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    color: #F3EDE2;
    transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.chip:hover {
    border-color: #C4A35A;
}
.chip-active {
    background-color: #C43C3C;
    border-color: #C43C3C;
    font-weight: 600;
}

/* ---- Rich body copy (event / guide bodies) ---- */
.rich-body p {
    margin: 0 0 1rem;
    line-height: 1.75;
    color: rgba(243, 237, 226, 0.85);
}
.rich-body p:last-child {
    margin-bottom: 0;
}

/* ---- Line clamp fallback ---- */
.clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Misc ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid #C4A35A;
    outline-offset: 2px;
}