:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --ink: #1c1b19;
  --ink-2: #6b6960;
  --ink-3: #9a988f;
  --line: rgba(0,0,0,0.10);
  --line-2: rgba(0,0,0,0.18);
  --coral: #d85a30;
  --coral-ink: #712b13;
  --coral-bg: #faece7;
  --purple: #534ab7;
  --purple-ink: #3c3489;
  --purple-bg: #eeedfe;
  --warn-bg: #faeeda;
  --warn-ink: #854f0b;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1a1916; --surface: #26241f; --ink: #f3f1ea; --ink-2: #a8a59b; --ink-3: #79766d;
    --line: rgba(255,255,255,0.12); --line-2: rgba(255,255,255,0.22);
    --coral-bg: #3a2317; --coral-ink: #f1b79c;
    --purple-bg: #221f3a; --purple-ink: #c3bdf2;
    --warn-bg: #3a2e16; --warn-ink: #f0c478;
  }
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; }
h1 { font-size: 1.7rem; margin: 0 0 .2rem; }
a { color: inherit; }
.muted { color: var(--ink-2); }
.dot { color: var(--ink-3); margin: 0 .35rem; }
.break { word-break: break-all; }

/* layout */
.site-header { max-width: 760px; margin: 0 auto; padding: 14px 20px 0; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: .5px solid var(--line);
}
.toolbar-left, .toolbar-right { display: flex; align-items: center; gap: 14px; }
.wordmark { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; text-decoration: none; }
.wordmark span { color: var(--coral); }
nav { display: flex; align-items: center; gap: 14px; }
.navlink { color: var(--ink-2); text-decoration: none; font-size: .95rem; }
.navlink:hover { color: var(--ink); }
.btn-ghost { background: transparent; }
.container { max-width: 680px; margin: 0 auto; padding: 8px 20px 48px; }
.site-footer {
  max-width: 680px; margin: 0 auto; padding: 24px 20px 40px;
  text-align: center; color: var(--ink-3); font-size: .82rem;
  border-top: .5px solid var(--line); margin-top: 24px;
}

/* buttons */
.btn, .linkbtn {
  font: inherit; cursor: pointer; border-radius: 999px; border: .5px solid var(--line-2);
  background: var(--surface); color: var(--ink); padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-size: .92rem;
}
.btn:hover { border-color: var(--ink-3); }
.btn-primary { background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-primary:hover { border-color: var(--coral); filter: brightness(.96); }
.btn-danger { color: #b3261e; border-color: rgba(179,38,30,.4); background: transparent; }
.linkbtn { border: 0; background: none; padding: 0; color: var(--ink-2); }
.linkbtn:hover { color: var(--ink); }
.linkbtn.danger { color: #b3261e; }
.linkbtn.strong { color: var(--coral); font-weight: 600; }
.inline { display: inline; }

/* page head + filters — two columns meeting at a centre "river":
   labels right-aligned in the left column, dropdowns left-aligned in the right. */
.filtergrid {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: .5em; row-gap: 12px;
  align-items: baseline; margin: 18px 0 6px; padding-bottom: 16px;
  border-bottom: .5px solid var(--line);
}
.fg-label { justify-self: end; text-align: right; color: var(--ink-2); font-size: .95rem; }
.fg-control { justify-self: start; }
.fg-head-label {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--ink); line-height: 1.15;
}
/* the city row's control is the big serif dropdown; baseline-align it to the head label */
.filtergrid .fg-head-label + .fg-control { align-self: baseline; }

/* a <select> that reads as part of the surrounding sentence, in a subtle box */
.select-wrap { position: relative; display: inline-flex; align-items: baseline; }
.select-wrap select {
  font-family: var(--font-sans); font-size: inherit; line-height: inherit;
  color: var(--coral); font-weight: inherit;
  border: .5px solid var(--line-2); background: var(--surface);
  padding: .15em 1.5em .2em .6em; margin: 0; border-radius: 999px;
  cursor: pointer; -webkit-appearance: none; appearance: none;
}
.select-wrap select option { font-family: var(--font-sans); color: var(--ink); }
.select-wrap::after {
  content: "▾"; position: absolute; right: .55em; bottom: .25em;
  pointer-events: none; color: var(--coral); font-size: .7em;
}
.select-wrap.big select { font-family: var(--font-display); font-size: inherit; font-weight: 600; padding: .05em 1.1em .1em .5em; }
.select-wrap.big select option { font-family: var(--font-display); }
.select-wrap.big::after { right: .4em; bottom: .3em; }

/* Big header dropdown: native <select> won't reliably render a custom font on
   its closed face, so we overlay a styled span and lay the select transparently
   on top to keep native open/keyboard behaviour. */
.select-wrap.big { display: inline-flex; font-size: 2.2rem; line-height: 1.15; }
.select-wrap.big .select-face {
  font-family: var(--font-display); font-weight: 600; color: var(--coral);
  border: .5px solid var(--line-2); background: var(--surface);
  padding: .02em .85em .06em .4em; border-radius: 999px; white-space: nowrap;
}
.select-wrap.big select {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; padding: 0;
}
.select-wrap.big:hover .select-face { border-color: var(--coral); }
.select-wrap.big:focus-within .select-face { border-color: var(--coral); }
.select-wrap select:hover { border-color: var(--coral); }
.select-wrap select:focus { outline: none; border-color: var(--coral); }

.pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pill {
  font-size: .82rem; padding: 5px 11px; border-radius: 999px; text-decoration: none;
  border: .5px solid var(--line); color: var(--ink-2);
}
.pill-on { background: var(--surface); color: var(--ink); border-color: var(--line-2); }
.empty { color: var(--ink-2); padding: 28px 0; }

/* event list */
.day { font-size: 1rem; font-weight: 600; color: var(--ink); margin: 2.1rem 0 .7rem; font-family: var(--font-display); letter-spacing: 0; text-transform: capitalize; }
.day:first-of-type { margin-top: 1.2rem; }
.event-row {
  display: flex; align-items: center; gap: 14px; padding: 11px 14px; margin-bottom: 8px;
  background: var(--surface); border: .5px solid var(--line); border-radius: var(--radius);
  text-decoration: none; color: inherit; transition: border-color .12s;
}
.event-row:hover { border-color: var(--line-2); }
.logo {
  width: 72px; height: 72px; border-radius: var(--radius-sm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.25rem;
  background: var(--bg); color: var(--ink-2); border: .5px solid var(--line); overflow: hidden;
}
.logo img { width: 100%; height: 100%; object-fit: cover; }
.logo-lg { width: 120px; height: 120px; font-size: 2.4rem; }
.event-main { flex: 1; min-width: 0; }
.event-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 3px; }
.event-title { font-weight: 600; }
.event-meta { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; color: var(--ink-2); font-size: .85rem; margin-top: 3px; }
.event-right { color: var(--ink-2); font-size: .82rem; text-align: right; flex-shrink: 0; }

.badge { font-size: .72rem; font-weight: 600; padding: 2px 9px; border-radius: 999px; background: var(--coral-bg); color: var(--coral-ink); }
.badge-warn { background: var(--warn-bg); color: var(--warn-ink); }

/* event page */
.back { color: var(--ink-2); text-decoration: none; font-size: .88rem; display: inline-flex; align-items: center; gap: 5px; margin: 6px 0 14px; }
.event-hero { display: flex; align-items: center; gap: 16px; background: var(--surface); border: .5px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 18px; }
.event-hero h1 { margin: 6px 0 0; }
.factlist { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; font-size: .95rem; }
.factlist i { color: var(--ink-2); width: 18px; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }

.prose { font-size: 1rem; line-height: 1.7; }
.prose :first-child { margin-top: 0; }
.prose img { max-width: 100%; border-radius: var(--radius-sm); }

/* notices */
.notice { background: var(--surface); border: .5px solid var(--line-2); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 18px; font-size: .92rem; }
.notice-warn { background: var(--warn-bg); color: var(--warn-ink); border: 0; display: flex; gap: 10px; align-items: flex-start; }
.notice-warn i { margin-top: 2px; }
.notice-warn a { color: inherit; font-weight: 600; }

/* forms */
.narrow { max-width: 420px; }
.cardform { display: flex; flex-direction: column; gap: 14px; background: var(--surface); border: .5px solid var(--line); border-radius: var(--radius); padding: 20px; margin-top: 14px; }
.cardform label { display: flex; flex-direction: column; gap: 5px; font-size: .85rem; color: var(--ink-2); font-weight: 500; }
.cardform input, .cardform textarea, .cardform select { font: inherit; color: var(--ink); padding: 9px 11px; border-radius: var(--radius-sm); border: .5px solid var(--line-2); background: var(--bg); }
.cardform textarea { resize: vertical; }
.row { display: flex; gap: 14px; }
.row label { flex: 1; }
.check { flex-direction: row !important; align-items: center; gap: 8px; }
.check input { width: auto; }
.admin-box { border: .5px dashed var(--line-2); border-radius: var(--radius-sm); padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.admin-box legend { font-size: .8rem; color: var(--ink-2); padding: 0 6px; }
@media (max-width: 520px) { .row { flex-direction: column; gap: 14px; } }

/* admin table */
.admin-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: .9rem; }
.admin-table th { text-align: left; color: var(--ink-2); font-weight: 600; font-size: .78rem; padding: 6px 8px; border-bottom: .5px solid var(--line); }
.admin-table td { padding: 9px 8px; border-bottom: .5px solid var(--line); }
.admin-table tr.banned { opacity: .55; }
.rowactions { display: flex; gap: 12px; }
code { font-family: ui-monospace, monospace; font-size: .82rem; }

/* --- additions: multi-category, form sections, recurrence, dashboard --- */
.badge-soft { background: var(--bg); color: var(--ink-2); }

/* form sections + whitespace */
.formgap { border: 0; border-top: .5px solid var(--line); margin: 8px 0; }
.field-label { font-size: .85rem; color: var(--ink-2); font-weight: 500; }
.field { display: flex; flex-direction: column; gap: 8px; }
.checkpills { display: flex; flex-wrap: wrap; gap: 8px; }
.checkpill { position: relative; }
.checkpill input { position: absolute; opacity: 0; pointer-events: none; }
.checkpill span {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  border: .5px solid var(--line-2); background: var(--bg); color: var(--ink-2);
  font-size: .9rem; cursor: pointer; user-select: none; transition: all .12s;
}
.checkpill input:checked + span { background: var(--coral); border-color: var(--coral); color: #fff; }
.checkpill input:focus-visible + span { outline: 2px solid var(--coral); outline-offset: 2px; }

.row.times { align-items: flex-end; gap: 8px; }
.row.times .dash { padding-bottom: 11px; color: var(--ink-3); }
.check.repeat { flex-wrap: wrap; margin: 0; }
.repeat-block {
  border: .5px solid var(--line-2); border-radius: var(--radius); padding: 14px 16px;
  margin: 6px 0 4px; display: flex; flex-direction: column; gap: 10px; background: var(--bg);
}
.repeat-label { font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.repeat-label i { color: var(--coral); }
.until { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding-left: 26px; transition: opacity .12s; }
.until label { flex-direction: row; align-items: center; gap: 8px; }
.until input { padding: 6px 9px; }
.until.disabled { opacity: .45; }
.hint { color: var(--ink-3); font-size: .8rem; font-weight: 400; }
.check.tos { align-items: flex-start; line-height: 1.4; }
.check.tos a { color: var(--coral); }

.code-input { font-size: 1.6rem; letter-spacing: .4em; text-align: center; font-family: ui-monospace, monospace; }

/* recurring-event occurrence manager */
.occ-block { margin-top: 28px; border-top: .5px solid var(--line); padding-top: 18px; }
.small { font-size: .85rem; }
.occ-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: .92rem; }
.occ-table td { padding: 9px 8px; border-bottom: .5px solid var(--line); }
.occ-table tr.skipped { opacity: .6; }
.occ-status { color: var(--ink-2); }
.occ-action { text-align: right; }

/* dashboard */
.mine-row {
  display: grid; grid-template-columns: 1fr auto; gap: 2px 16px;
  padding: 12px 14px; margin-bottom: 8px; background: var(--surface);
  border: .5px solid var(--line); border-radius: var(--radius); text-decoration: none; color: inherit;
}
.mine-row:hover { border-color: var(--line-2); }
.mine-title { font-weight: 600; }
.mine-meta { color: var(--ink-2); font-size: .85rem; }
.mine-when { grid-row: 1 / span 2; align-self: center; color: var(--ink-2); font-size: .85rem; text-align: right; }
.empty.small { padding: 8px 0; }
.mt { margin-top: 24px; }
.tos h3 { margin-top: 1.4em; }

/* --- per-category badge colors (rainbow) --- */
.hero-badges { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.badge.cat-oving        { background: #e3edfb; color: #2b4a7e; }  /* blue  — learning */
.badge.cat-undervisning { background: #e2f3e6; color: #2e6b3b; }  /* green — learning */
.badge.cat-dans         { background: #fcebda; color: #8a4a17; }  /* orange — experiencing */
.badge.cat-forestilling { background: #fbe3e3; color: #8a2222; }  /* red — experiencing */
.badge.cat-festival     { background: #ffffff; color: #444;    border: .5px solid var(--line-2); }  /* white — everything */
.badge.badge-genre      { background: transparent; color: var(--ink-2); border: .5px solid var(--line-2); }

@media (prefers-color-scheme: dark) {
  .badge.cat-oving        { background: #1e2c44; color: #9cc0f5; }
  .badge.cat-undervisning { background: #1c3424; color: #8fd29c; }
  .badge.cat-dans         { background: #3a2a18; color: #f0b483; }
  .badge.cat-forestilling { background: #3a1e1e; color: #f0a0a0; }
  .badge.cat-festival     { background: #f3f1ea; color: #222; border: 0; }
}

/* selectable category pills take their category color when checked */
.checkpill.cat-oving        input:checked + span { background: #cfe0f6; color: #234070; border-color: #cfe0f6; }
.checkpill.cat-undervisning input:checked + span { background: #cdeed4; color: #245930; border-color: #cdeed4; }
.checkpill.cat-dans         input:checked + span { background: #f8dcc2; color: #7a3f12; border-color: #f8dcc2; }
.checkpill.cat-forestilling input:checked + span { background: #f6cccc; color: #7a1d1d; border-color: #f6cccc; }
.checkpill.cat-festival     input:checked + span { background: #ffffff; color: #333; border-color: var(--ink-3); }

/* embedded map */
.mapwrap { margin: 4px 0 22px; border-radius: var(--radius); overflow: hidden; border: .5px solid var(--line); }
.map { display: block; width: 100%; height: 260px; border: 0; }

/* --- card: distinct placement per message type --- */
.event-row { position: relative; }
.warn-corner {
  position: absolute; top: -7px; right: -7px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--surface); border: .5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: #e0820f; font-size: 15px; z-index: 1;
}
.event-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 4px; flex-shrink: 0; text-align: right; }
.price { font-size: .82rem; color: var(--ink-2); }
.genre-tag {
  font-size: .72rem; font-weight: 600; display: inline-flex; align-items: center; gap: 3px;
  padding: 2px 9px; border-radius: 999px; background: var(--bg); color: var(--ink-2);
  border: .5px solid var(--line-2);
}
.genre-tag i { font-size: 12px; opacity: .8; }
/* per-genre colours (default vocabulary; unknown genres fall back to the base) */
.genre-tag.g-tango       { background: #f3e8fb; color: #5a2e86; border-color: #e3cdf5; }
.genre-tag.g-afro-latin  { background: #fcebda; color: #8a4a17; border-color: #f3d7b8; }
.genre-tag.g-swing       { background: #e2f0fb; color: #1f5a86; border-color: #c9e1f3; }
.genre-tag.g-gammeldans  { background: #e8f3e2; color: #356b2e; border-color: #cde3c8; }
.genre-tag.g-annet       { background: var(--bg); color: var(--ink-2); border-color: var(--line-2); }
@media (prefers-color-scheme: dark) {
  .genre-tag.g-tango      { background: #2c1e44; color: #c9a8f0; border-color: #3d2c5c; }
  .genre-tag.g-afro-latin { background: #3a2a18; color: #f0b483; border-color: #4c3a26; }
  .genre-tag.g-swing      { background: #1e2c44; color: #9cc0f5; border-color: #2c3c5c; }
  .genre-tag.g-gammeldans { background: #1c3424; color: #9bd2a0; border-color: #2c4a36; }
}
.meta-recur { display: inline-flex; align-items: center; gap: 3px; color: var(--ink-2); }
.meta-recur i { font-size: 14px; }
/* match the card's warning colour in the event-page notice */
.notice-warn .ti-alert-triangle { color: #e0820f; }

/* --- landing: cap note --- */
.cap-note { font-size: .85rem; color: var(--ink-2); display: flex; align-items: center; gap: 6px; margin: 12px 0 0; }
.notice-warn .ti-map-pin-off { color: #e0820f; }

/* --- JSON import panel on the create form --- */
.import-panel { background: var(--surface); border: .5px solid var(--line); border-radius: var(--radius); padding: 12px 16px; margin: 14px 0; }
.import-panel summary { cursor: pointer; font-weight: 500; display: flex; align-items: center; gap: 6px; }
.import-panel summary::-webkit-details-marker { display: none; }
.import-box { width: 100%; font-family: ui-monospace, monospace; font-size: .85rem; padding: 10px; border-radius: var(--radius-sm); border: .5px solid var(--line-2); background: var(--bg); color: var(--ink); margin: 10px 0; resize: vertical; }
.import-actions { display: flex; align-items: center; gap: 12px; }
.small.ok { color: #2e7d3b; }
.small.err { color: #b3261e; }

/* --- image gallery --- */
.upload-form { margin-bottom: 24px; }
.upload-form input[type=file] { padding: 8px; font-size: .9rem; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.gal-item { background: var(--surface); border: .5px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gal-item img { width: 100%; height: 140px; object-fit: cover; display: block; background: var(--bg); }
.gal-meta { padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; }
.gal-caption { font-size: .9rem; font-weight: 500; }
.gal-url { display: flex; gap: 6px; align-items: center; }
.gal-url input { flex: 1; min-width: 0; font-family: ui-monospace, monospace; font-size: .72rem; padding: 5px 7px; border: .5px solid var(--line-2); border-radius: var(--radius-sm); background: var(--bg); color: var(--ink-2); }
.gal-foot { display: flex; align-items: center; justify-content: space-between; }

/* --- logged-in identity in topbar --- */
.whoami { font-size: .85rem; color: var(--ink-2); display: inline-flex; align-items: center; gap: 5px; }
.admin-tag { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .03em; padding: 1px 6px; border-radius: 999px; background: var(--coral-bg); color: var(--coral-ink); }

/* --- card: each message on its own line --- */
.event-cats { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 5px; }
.event-title { font-weight: 600; display: block; }
.event-main .event-meta { margin-top: 4px; }
.event-main .event-meta:first-of-type { margin-top: 6px; }

/* --- stats dashboard --- */
.range-tabs { display: flex; gap: 6px; margin-bottom: 18px; }
.stat-headline { display: flex; gap: 28px; margin-bottom: 8px; }
.stat-figure { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; }
.stat-cap { font-size: .82rem; color: var(--ink-2); margin-top: 4px; }
.stat-block { margin-top: 18px; }
.statbar { display: grid; grid-template-columns: 150px 1fr 44px; align-items: center; gap: 10px; margin-bottom: 6px; font-size: .88rem; }
.statbar-label { color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.statbar-track { background: var(--bg); border: .5px solid var(--line); border-radius: 999px; height: 16px; overflow: hidden; }
.statbar-fill { display: block; height: 100%; background: var(--coral); border-radius: 999px; min-width: 2px; }
.statbar-n { text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }
@media (max-width: 520px) { .statbar { grid-template-columns: 110px 1fr 36px; } }

/* --- takeover requests --- */
.claim-pending { display: inline-flex; align-items: center; gap: 5px; color: var(--ink-2); }
.claim-admin { background: var(--surface); border: .5px solid var(--line-2); }
.claim-admin .ti-user-check { color: var(--coral); }
.claim-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 6px; }
.claim-list li { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; border-top: .5px solid var(--line); }
.claim-list li:first-child { border-top: 0; }

/* --- mobile: the centre-river two-column layout collapses to a single stack.
   Each label sits left-aligned above its full-width dropdown. The big header
   shrinks so it fits a narrow viewport. --- */
@media (max-width: 560px) {
  .filtergrid {
    grid-template-columns: 1fr;       /* one column */
    row-gap: 4px; column-gap: 0;
    align-items: stretch;
  }
  .fg-label {
    justify-self: start; text-align: left;
    margin-top: 10px;                 /* space each label-group apart */
  }
  .fg-control { justify-self: stretch; width: 100%; }
  .fg-control .select-wrap,
  .fg-control .select-wrap select { width: 100%; }
  /* the big header: smaller, and its label + dropdown stack tightly */
  .fg-head-label { font-size: 1.7rem; margin-top: 0; }
  .select-wrap.big { font-size: 1.7rem; }
  .select-wrap.big .select-face { display: inline-block; width: auto; }

  /* cards: reclaim horizontal room, and drop price+genre BELOW the text lines
     (still beside the logo) instead of squeezing a third column. The row wraps:
     logo + main share the top line; event-right wraps to a second line, indented
     past the logo so it sits under the text block. */
  .container { padding-left: 14px; padding-right: 14px; }
  .event-row { gap: 10px 12px; padding: 10px 11px; flex-wrap: wrap; align-items: flex-start; }
  .logo { width: 54px; height: 54px; font-size: 1rem; }
  .event-main { flex: 1 1 0; }
  .event-meta { font-size: .8rem; gap: 4px; }
  .event-right {
    flex-basis: 100%;                 /* force onto its own line */
    margin-left: 66px;                /* logo width (54) + row gap (12) -> align under text */
    flex-direction: row;              /* price and genre side by side */
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
    font-size: .78rem;
  }
}
