/* CMR scoring + weigh-in page — tablet-first POS-style layout for the
   director entering paper sheets at the weigh-in station. Composes the
   global brand tokens from style.css; no hardcoded colors. */

.score-main {
  max-width: 1100px;
}

.standings-panel {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  margin: var(--space-2) 0;
  color: var(--c-text);
}
.standings-panel summary {
  font-weight: 700;
  cursor: pointer;
  padding: var(--space-1) 0;
  outline: none;
  color: var(--c-text);
}
.standings-panel summary::marker { color: var(--c-text-muted); }
.standings-panel[open] summary { margin-bottom: var(--space-2); }

/* ====== Scoreboard panel — gold "this is the moment" surface ====== */
.scoreboard {
  margin: var(--space-2) 0 var(--space-4);
  background: linear-gradient(135deg, var(--c-tag-gold), #B07515);
  color: var(--c-action-ink);
  border-radius: var(--radius-lg);
  border: 0;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.scoreboard summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-3) var(--space-4);
}
.scoreboard summary::-webkit-details-marker { display: none; }
.scoreboard summary::marker { display: none; }
.scoreboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.scoreboard .sb-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.scoreboard .sb-num {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.scoreboard .sb-label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.85;
  font-weight: 700;
}
.scoreboard .sb-leader {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  padding-top: var(--space-2);
  border-top: 1px solid rgba(13, 35, 24, 0.25);
}
.scoreboard .sb-expand-hint {
  text-align: center;
  font-size: var(--fs-xs);
  opacity: 0.75;
  margin-top: var(--space-1);
  letter-spacing: 0.04em;
  font-weight: 700;
}
.scoreboard[open] .sb-expand-hint::before { content: '▴ '; }
.scoreboard:not([open]) .sb-expand-hint::before { content: '▾ '; }
.scoreboard-body {
  background: var(--c-surface);
  color: var(--c-text);
  padding: var(--space-3) var(--space-4);
}
.scoreboard-body .standings-list li {
  grid-template-columns: 32px 48px 1fr auto auto;
}
.scoreboard-body .standings-list .boat {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-text-muted);
}

/* ====== Back-to-grid button ====== */
.back-btn {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
  margin-bottom: var(--space-3);
}
.back-btn:hover { background: var(--c-bg-mid); border-color: var(--c-cull-green); color: var(--c-text); }

.quickjump {
  position: sticky;
  top: 0;
  background: var(--c-bg);
  padding: var(--space-2) 0;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--space-3);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: var(--space-3);
}
.quickjump label { margin: 0; flex: 0 0 auto; color: var(--c-text); }
.quickjump input[type="number"] {
  font-size: var(--fs-xl);
  text-align: center;
  font-weight: 700;
  min-height: 48px;
  width: 8em;
  padding: var(--space-2);
  border: 2px solid var(--c-tag-gold);
  border-radius: var(--radius);
  background: var(--c-bg-mid);
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
}
.quickjump button { margin-left: auto; }

.standings-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-1);
}
.standings-list li {
  display: grid;
  /* rank · team-name · meta · pts. Was 5-cols with a stale 48px boat
     slot that no longer ships in the markup; team-name lands in
     col 2 with a 1fr so chip pills render at full width. */
  grid-template-columns: 32px 1fr auto auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-1) var(--space-2);
  border-radius: 4px;
  color: var(--c-text);
}
.standings-list li .team-name {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.standings-list li:nth-child(odd) { background: rgba(255,255,255,0.03); }
.standings-list li.dnw .team-name { color: var(--c-text-faint); }
.standings-list .rank { font-weight: 700; color: var(--c-tag-gold); font-variant-numeric: tabular-nums; }
.standings-list .pts { font-weight: 700; min-width: 60px; text-align: right; font-variant-numeric: tabular-nums; }
.standings-list .meta { font-size: var(--fs-sm); }

/* ====== POS-style culltag grid (boat-number tiles) ====== */
.culltag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--space-2);
}
.culltag-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: var(--space-3) var(--space-2);
  min-height: 110px;
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--c-text);
  cursor: pointer;
  transition: transform 80ms ease, background-color 100ms, border-color 100ms;
  text-align: center;
  position: relative;
}
.culltag-tile:hover { background: var(--c-bg-mid); border-color: var(--c-cull-green); }
.culltag-tile:active { transform: scale(0.97); }

/* Scored = done, but MUTED so the not-yet-weighed (full-strength) tiles
   stand out at a glance: lighter sage tint, softer border, slightly dimmed.
   The gold ✓ + weight stay so "done" is still unmistakable. Hover restores
   full strength for re-opening a scored entry to edit. */
.culltag-tile.scored {
  background: rgba(122, 158, 126, 0.10);
  border-color: rgba(122, 158, 126, 0.40);
  opacity: 0.68;
  padding-left: calc(var(--space-2) + 4px);
}
.culltag-tile.scored:hover { opacity: 1; background: rgba(122, 158, 126, 0.18); }
.culltag-tile.scored::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  bottom: -2px;
  width: 4px;
  background: var(--c-tag-gold);
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.culltag-tile.scored .boat-num::before {
  content: "✓ ";
  color: var(--c-tag-gold);
  font-weight: 900;
  font-size: 0.7em;
  vertical-align: middle;
  margin-right: 1px;
}

/* Pending = still needs entry. Brighter surface + stronger border so the
   boats left to weigh jump out against the muted scored/DNW tiles — the
   weigh-master can scan for "what's left" at a glance. */
.culltag-tile.pending {
  background: #2E5842;
  border-color: var(--c-border-strong);
}

/* DNW = visually retired (dimmed but still readable). */
.culltag-tile.dnw {
  background: var(--c-surface);
  border-color: var(--c-border);
  opacity: 0.55;
}

.culltag-tile .boat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  font-style: italic;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--c-tag-gold);
  letter-spacing: 0.04em;
}
.culltag-tile.dnw .boat-num { color: var(--c-text-muted); }

.culltag-tile .team-names {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: 1.2;
  max-width: 100%;
  text-align: center;
}
.culltag-tile .team-names span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.culltag-tile.checked-in {
  /* The check-in marker shows in the corner. The .row-done formula is
     reserved for "scored" — being checked in alone shouldn't flood the
     tile with sage when the more important state is "did this team's
     fish get entered yet." Just a small tag in the corner. */
}
.culltag-tile .tile-checkin {
  position: absolute;
  top: 6px;
  right: 8px;
  font-size: var(--fs-xs);
  color: var(--c-cull-green);
  font-weight: 700;
}
.culltag-tile .tile-status {
  font-size: var(--fs-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
}
.culltag-tile .tile-status.muted { font-weight: 500; color: var(--c-text-muted); }
.culltag-tile.scored .tile-status { color: var(--c-cull-green); }
.culltag-tile.dnw .tile-status    { color: var(--c-text-faint); }

@media (min-width: 600px) { .culltag-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); } }

/* ====== Entry view (single-team focused, gold = action moment) ====== */
.entry-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.entry-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--c-border);
}
.entry-boat-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  font-style: italic;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  background: var(--c-tag-gold);
  color: var(--c-action-ink);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
  min-width: 80px;
  text-align: center;
  letter-spacing: 0.04em;
}
.entry-team h2 { margin: 0; font-size: var(--fs-xl); line-height: 1.2; color: var(--c-text); }
.entry-team p { margin: 0; line-height: 1.2; color: var(--c-text-muted); }
.entry-team p:not(:empty) { margin-top: 2px; }

/* ====== Fish tile bar (5 horizontal culltags) ====== */
.catches-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-2);
  margin: var(--space-3) 0 var(--space-4);
}
@media (max-width: 480px) {
  .catches-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}

.fish-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: var(--space-3) var(--space-2) var(--space-2);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  text-align: center;
  min-height: 130px;
  transition: border-color 80ms, background-color 80ms;
  color: var(--c-text);
}
.fish-tile.active-fish {
  border-color: var(--c-tag-gold);
  background: rgba(232, 160, 32, 0.10);
  box-shadow: 0 0 0 2px rgba(232, 160, 32, 0.25);
}
.fish-tile.lunker-row { background: rgba(232, 160, 32, 0.18); border-color: var(--c-tag-gold); }

.fish-tile .fish-label {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.fish-tile.active-fish .fish-label { color: var(--c-tag-gold); }

.fish-tile .fish-cells {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  gap: 4px;
  align-items: center;
  width: 100%;
}
.fish-tile .fish-cell {
  width: 100%;
  height: 44px;
  padding: 0;
  text-align: center;
  font-size: var(--fs-xl);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  background: var(--c-bg-mid);
  color: var(--c-text);
  caret-color: transparent;
  cursor: pointer;
  transition: border-color 80ms, box-shadow 80ms, background-color 80ms;
}
.fish-tile .fish-cell.active {
  border-color: var(--c-tag-gold);
  background: var(--c-bg-dark);
  color: var(--c-tag-gold);
  box-shadow: 0 0 0 2px rgba(232, 160, 32, 0.40);
}
.fish-tile .cell-unit {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--c-text-muted);
}
.fish-tile .fish-display {
  font-size: var(--fs-sm);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
  min-height: 1.2em;
}
.fish-tile .lunker-flag {
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: var(--fs-lg);
  color: var(--c-tag-gold);
}

/* ====== Numpad ====== */
.numpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  max-width: 360px;
  margin: var(--space-4) 0;
}
.numpad button {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  min-height: 64px;
  padding: var(--space-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  color: var(--c-text);
  cursor: pointer;
  transition: transform 60ms, background-color 80ms, border-color 80ms;
  font-variant-numeric: tabular-nums;
}
.numpad button:hover { background: var(--c-bg-mid); border-color: var(--c-cull-green); color: var(--c-text); }
.numpad button:active { transform: scale(0.96); }
.numpad button.numpad-aux {
  background: var(--c-bg-mid);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--c-text-muted);
}
.numpad button.numpad-wide {
  grid-column: span 3;
  background: var(--c-tag-gold);
  color: var(--c-action-ink);
  border-color: var(--c-tag-gold);
}
.numpad button.numpad-wide:hover {
  background: var(--c-action-hover);
  border-color: var(--c-action-hover);
  color: var(--c-action-ink);
}
@media (min-width: 700px) {
  .numpad { max-width: 420px; }
  .numpad button { min-height: 72px; font-size: 1.8rem; }
}

.entry-summary {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--c-border);
  margin-top: var(--space-3);
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
}
.entry-summary > div { font-size: var(--fs-base); }
.entry-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--space-3);
}
.entry-actions button { min-width: 140px; }

/* (Legacy layout for /admin/weigh-in still uses .team-card; keep it.) */
.team-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--space-4);
  margin-bottom: var(--space-3);
  color: var(--c-text);
}
.team-card header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.team-card h3 { margin: 0; font-size: var(--fs-lg); color: var(--c-text); }

.fish-row {
  display: grid;
  grid-template-columns: 24px 5em 5em 1fr;
  align-items: center;
  gap: var(--space-2);
}
.fish-row .fish-num { color: var(--c-text-muted); font-weight: 600; }
.fish-row input[type="number"] {
  font-size: var(--fs-lg);
  text-align: center;
  padding: var(--space-2);
}
.fish-row .fish-display {
  color: var(--c-text-muted);
  font-variant-numeric: tabular-nums;
}

.weigh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
@media (min-width: 700px) {
  .weigh-grid { grid-template-columns: repeat(3, 1fr); }
}
.weigh-grid label { margin: 0; }
.weigh-grid input[type="number"] {
  font-size: var(--fs-lg);
  text-align: center;
}

.team-totals {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding: var(--space-2) 0;
  border-top: 1px solid var(--c-border);
  margin-top: var(--space-2);
  font-variant-numeric: tabular-nums;
  color: var(--c-text);
}
.team-totals .team-status { width: 100%; font-size: var(--fs-sm); }

.team-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.team-actions .save-btn { min-width: 100px; }
.save-feedback { font-size: var(--fs-sm); color: var(--c-text-muted); }

@media (min-width: 900px) {
  .fish-row { grid-template-columns: 32px 6em 6em 1fr; }
  .fish-row input[type="number"] { font-size: var(--fs-xl); padding: var(--space-3); }
}

/* ─────────────────────────────────────────────────────────────
   Team tiles — shared by /t/<slug>/admin/checkin (where they're
   the active check-in surface) and by the Teams tab on
   /t/<slug>/admin (read-only listing, click → team sheet).
   The checkin page still owns the self-serve blast-draw
   variants + spinning animations in its inline <style>.
   ───────────────────────────────────────────────────────────── */
.checkin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}
.checkin-tile {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--space-2);
  padding: var(--space-2);
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  cursor: pointer;
  transition: border-color 100ms;
  text-align: left;
  font: inherit;
  width: 100%;
  touch-action: manipulation;
}
@media (hover: hover) {
  /* These tiles are <button>s, so the global gold button:hover in
     style.css would paint the whole tile gold and make the dark text
     unreadable. Re-pin the tile's own surface + text color on hover and
     keep just the green border as the hover cue. Checked tiles keep
     their sage fill via the higher-specificity .checked rule below. */
  .checkin-tile:hover {
    border-color: var(--c-cull-green);
    background: var(--c-surface);
    color: var(--c-text);
  }
}
.checkin-tile:active { transform: scale(0.99); }
.checkin-tile.checked {
  background: rgba(122, 158, 126, 0.45);
  border-color: var(--c-cull-green);
  border-width: 2px;
  padding-left: calc(var(--space-2) + 10px);
  box-shadow: 0 0 0 1px rgba(122, 158, 126, 0.4), 0 0 12px rgba(122, 158, 126, 0.25);
}
.checkin-tile.checked::before {
  content: "";
  position: absolute;
  left: -2px; top: -2px; bottom: -2px;
  width: 10px;
  background: var(--c-tag-gold);
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.checkin-tile.checked .boat-box {
  background: var(--c-cull-green);
  border-color: var(--c-cull-green);
  position: relative;
}
.checkin-tile.checked .boat-box .boat-num,
.checkin-tile.checked .boat-box .boat-lbl {
  color: var(--c-bg-dark);
}
.checkin-tile.checked .boat-box::after {
  content: "✓";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-tag-gold);
  color: var(--c-bg-dark);
  font-weight: 900;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--c-bg-dark);
  line-height: 1;
}
.checkin-tile .boat-box {
  flex: 0 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) 4px;
  background: var(--c-bg-mid);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}
.checkin-tile .boat-box .boat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  color: var(--c-tag-gold);
  font-variant-numeric: tabular-nums;
}
/* Signup-time stamp (sign-up page) — numeric date over a small clock,
   reusing the boat-box frame so the tile layout is unchanged. */
.checkin-tile .boat-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
}
.checkin-tile .boat-time .boat-time-date {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--c-tag-gold);
  font-variant-numeric: tabular-nums;
}
.checkin-tile .boat-time .boat-time-clock {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
  margin-top: 2px;
}
.checkin-tile .boat-tbd {
  display: inline-flex;
  gap: 3px;
}
.checkin-tile .boat-tbd .boat-tbd-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 24px;
  background: var(--c-tag-gold);
  color: var(--c-bg-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
}
.checkin-tile .boat-box .boat-lbl {
  font-size: 0.55rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 2px;
}
.checkin-tile .boat-box .boat-badges {
  display: flex;
  gap: 2px;
  margin-top: 4px;
  min-height: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.checkin-tile .tile-anglers {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}
.checkin-tile .tile-anglers .ct-tag {
  width: 100%;
  max-width: none;
  height: 40px;
}
.checkin-tile .tile-anglers .ct-tag-num {
  flex: 0 0 44px;
  font-size: 0.72rem;
  padding: 0 4px;
}
.checkin-tile .tile-anglers .ct-tag-name {
  padding: 4px var(--space-2);
}
.checkin-tile .tile-anglers .ct-tag-first,
.checkin-tile .tile-anglers .ct-tag-last {
  font-size: 0.78rem;
  line-height: 1.1;
}
.checkin-tile .tile-anglers .ct-tag-single {
  font-size: 0.85rem;
}
.badge-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.badge-pin.paid { background: var(--c-tag-gold); color: var(--c-bg-dark); }
.badge-pin.donated { background: var(--c-cull-green); color: var(--c-bg-dark); }
.badge-pin.day-of { background: rgba(232, 160, 32, 0.20); color: var(--c-gold-light); border: 1px solid var(--c-tag-gold); }

/* ── Ops header band — shared by the Fish-Off day-of admin pages
   (Sign-up, Check-in, Pairing/Blast, Weigh-in). Back → Admin, a gold event
   eyebrow over the page title, and the page's controls docked on the right. */
.oh { display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  background: var(--c-bg-card); border: 1px solid var(--c-border); border-radius: 14px;
  padding: 14px 16px; margin: 0 0 var(--space-4); }
.oh-back { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; white-space: nowrap;
  border: 1px solid var(--c-action); border-radius: 10px; background: transparent; color: var(--c-action);
  padding: 9px 14px; font-weight: 800; font-size: 0.85rem; text-decoration: none; transition: background 120ms; }
@media (hover: hover) { .oh-back:hover { background: rgba(232, 160, 32, 0.10); } }
.oh-back .ar { font-size: 1.05rem; line-height: 1; }
.oh-info { flex: 1 1 0; min-width: 0; }
.oh-event { font-family: var(--font-display); font-style: italic; font-weight: 900; letter-spacing: 0.07em;
  text-transform: uppercase; font-size: 0.64rem; color: var(--c-tag-gold); margin: 0 0 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.oh-title { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 1.55rem;
  color: var(--c-text); letter-spacing: -0.01em; line-height: 1.15; margin: 0; white-space: nowrap; }
.oh-ctx { font-size: var(--fs-xs); color: var(--c-text-muted); margin: 5px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.oh-ctx:empty { display: none; }
.oh-controls { display: flex; gap: 14px; flex: 0 1 auto; min-width: 0; max-width: 100%; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.oh-nb { white-space: nowrap; }
