/* ============================================================
   CNGateway — /expo  Trade Show Calendar
   Page-specific styles. Inherits all tokens from ../assets/styles.css
   ============================================================ */

/* ---------- Layout shell ---------- */
.expo-main { padding-top: 0; }

.expo-section { padding: 3.5rem 0; }
.expo-section--tight { padding: 2rem 0 3.5rem; }

/* ---------- Method / disclosure strip ---------- */
.expo-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
}
.expo-meta-strip strong { color: var(--navy); font-weight: 600; }
.expo-meta-item { display: inline-flex; align-items: center; gap: 0.4375rem; }
.expo-meta-item svg { flex: none; color: var(--text-light); }

.expo-method-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--crimson);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.expo-method-toggle:hover { border-bottom-color: var(--crimson); }
.expo-method-toggle svg { transition: transform 0.25s ease; }
.expo-method-toggle[aria-expanded='true'] svg { transform: rotate(180deg); }

.expo-method-panel {
  display: none;
  margin-top: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: #fff;
}
.expo-method-panel.open { display: block; }
.expo-method-panel h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.625rem;
}
.expo-method-panel h3:not(:first-child) { margin-top: 1.5rem; }
.expo-method-panel p,
.expo-method-panel li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.expo-method-panel ol,
.expo-method-panel ul { padding-left: 1.25rem; }
.expo-method-panel li { margin-bottom: 0.375rem; }
.expo-method-panel li strong { color: var(--navy); }

/* ---------- Filter panel ---------- */
.expo-filters {
  position: sticky;
  top: 72px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.expo-filters-inner { display: flex; flex-direction: column; gap: 1rem; }

.expo-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.expo-filter-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 66px;
  flex: none;
}

/* search + selects */
.expo-search {
  position: relative;
  flex: 1 1 260px;
  min-width: 220px;
}
.expo-search svg {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
}
.expo-search input {
  width: 100%;
  padding: 0.6875rem 0.875rem 0.6875rem 2.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.expo-search input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.07);
}

.expo-select {
  padding: 0.6875rem 2rem 0.6875rem 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.expo-select:focus { outline: none; border-color: var(--navy); }

/* The `hidden` attribute only carries a UA-level `display: none`, so ANY author
   rule setting display on the same element silently defeats it. Several of the
   elements below are flex containers, so state them explicitly — without this
   the sector search "filters" rows that stay perfectly visible. */
.expo-sector-count[hidden],
.expo-sector-opt[hidden],
.expo-sector-empty[hidden],
.expo-filter-row[hidden],
.expo-chips[hidden] { display: none; }

/* ---------- sector picker ----------
   Sits in the filter row looking like the other selects, but opens a popover so
   the 40 sectors overlay the page instead of pushing the list below the fold. */
.expo-sector { position: relative; }

.expo-sector-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  text-align: start;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
.expo-sector-btn[aria-expanded="true"] {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.08);
}
.expo-sector-btn.has-selection { border-color: var(--navy); color: var(--navy); font-weight: 500; }

.expo-sector-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.3125rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: var(--crimson);
  border-radius: 999px;
}

.expo-sector-pop {
  position: absolute;
  top: calc(100% + 0.5rem);
  inset-inline-start: 0;
  z-index: 40;
  width: 22rem;
  max-width: calc(100vw - 2rem);
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(10, 37, 64, 0.16);
  overflow: hidden;
}
.expo-sector-pop.open { display: flex; }

.expo-sector-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  flex-shrink: 0;
}
.expo-sector-search input {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--text);
  border: none;
  outline: none;
  background: transparent;
}
.expo-sector-search input::-webkit-search-cancel-button { cursor: pointer; }

.expo-sector-list {
  /* Internal scroll: the popover never grows taller than this, whatever the
     sector count, so it cannot swallow the viewport the way the chips did. */
  max-height: 17.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.375rem;
}

.expo-sector-opt {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.5625rem;
  border-radius: 6px;
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.14s ease;
}
.expo-sector-opt:hover { background: var(--bg-alt); }
.expo-sector-opt input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}
.expo-sector-opt:focus-within { background: var(--bg-alt); box-shadow: inset 0 0 0 2px rgba(10, 37, 64, 0.18); }
.expo-sector-opt .name { flex: 1; min-width: 0; }
.expo-sector-opt .n {
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-light);
  flex-shrink: 0;
}
.expo-sector-opt input:checked + .name { font-weight: 600; color: var(--navy); }

.expo-sector-empty {
  margin: 0;
  padding: 1.25rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  text-align: center;
}

.expo-sector-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  flex-shrink: 0;
}
.expo-sector-clear,
.expo-sector-done {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  padding: 0.4375rem 0.875rem;
  transition: all 0.16s ease;
}
.expo-sector-clear {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
}
.expo-sector-clear:hover { color: var(--crimson); border-color: var(--border); background: #fff; }
.expo-sector-done {
  color: #fff;
  background: var(--navy);
  border: 1px solid var(--navy);
}
.expo-sector-done:hover { background: #123458; }

/* On a phone the popover spans the full width of the bar instead of a 22rem
   dropdown anchored to a wrapped button.

   NOTE: it deliberately stays position:absolute. `.expo-filters` carries a
   backdrop-filter, which makes it the containing block for `position: fixed`
   descendants — a "bottom sheet" pinned with inset:auto 0 0 0 therefore anchors
   to the sticky bar, not the viewport, and lands off-screen. Overlaying via
   absolute + z-index works regardless of the ancestor's filters. */
@media (max-width: 640px) {
  /* Two selects per line instead of one — eight stacked controls pushed the
     list a long way down before the visitor saw a single fair. */
  .expo-filter-row > .expo-select { flex: 1 1 calc(50% - 0.375rem); min-width: 0; }
  .expo-search { flex: 1 1 100%; min-width: 0; }
  .expo-sector { flex: 1 1 100%; }
  .expo-sector-btn { width: 100%; }
  .expo-sector-pop {
    inset-inline: 0;
    width: auto;
    max-width: none;
  }
  .expo-sector-list { max-height: 38vh; }
}

/* chips — now hold only the CHOSEN sectors, each removable */
.expo-chips { display: flex; flex-wrap: wrap; gap: 0.4375rem; }
.expo-chip {
  padding: 0.375rem 0.8125rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.expo-chip:hover { border-color: var(--navy); color: var(--navy); }
.expo-chip.on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.expo-chip.on {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  cursor: pointer;
}
.expo-chip.on::after {
  content: '';
  width: 0.5625rem;
  height: 0.5625rem;
  flex-shrink: 0;
  background: currentColor;
  opacity: 0.75;
  /* small × so the chip reads as removable */
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>") center / contain no-repeat;
}
.expo-chip.on:hover { background: var(--crimson); border-color: var(--crimson); }
.expo-chip.on:hover::after { opacity: 1; }

.expo-filter-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.expo-reset {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.expo-reset:hover { color: var(--crimson); }

/* ---------- Result bar ---------- */
.expo-resultbar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.expo-count { font-size: 0.9375rem; color: var(--text-muted); }
.expo-count b { color: var(--navy); font-weight: 600; }
.expo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-light);
}
.expo-legend span { display: inline-flex; align-items: center; gap: 0.375rem; }
.expo-legend i {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; flex: none;
}
.dot-verified { background: #12805C; }
.dot-listed   { background: #6B7B99; }
.dot-expected { background: var(--gold); }

/* Shown only when the visitor is not reading in English — says plainly that
   the per-fair assessments below are kept in their original language. */
.expo-langnote {
  margin: -0.5rem 0 1.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-inline-start: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}

/* Shown automatically once the data is older than the review cadence, so an
   unmaintained page tells the truth about itself instead of looking current. */
.expo-stale {
  margin: -0.5rem 0 1.5rem;
  padding: 0.8125rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #8A5200;
  background: rgba(201, 169, 97, 0.14);
  border-inline-start: 3px solid var(--crimson);
  border-radius: 0 6px 6px 0;
}
.expo-stale strong { color: var(--crimson); }

/* ---------- Cards ---------- */
.expo-list { display: grid; gap: 1.25rem; }

.expo-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}
.expo-card:hover {
  border-color: #cfd8e3;
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.07);
  transform: translateY(-1px);
}

.expo-card-head {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  align-items: start;
}

/* date block */
.expo-date {
  border-right: 1px solid var(--border);
  padding-right: 1.25rem;
}
.expo-date-month {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--crimson);
}
.expo-date-day {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.expo-date-year { font-size: 0.8125rem; color: var(--text-light); }
.expo-date-tbc {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  /* Wording length varies a lot across the seven languages */
  overflow-wrap: break-word;
}
.expo-countdown {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-light);
}
.expo-countdown.soon { color: var(--crimson); }

/* body */
.expo-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.expo-card-cn {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.1875rem;
}
.expo-card-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.125rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.expo-card-facts span { display: inline-flex; align-items: center; gap: 0.375rem; }
.expo-card-facts svg { flex: none; color: var(--text-light); }

.expo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4375rem;
  margin-top: 0.875rem;
}
.expo-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.5625rem;
  border-radius: 4px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge-tier-A { background: rgba(200, 16, 46, 0.08); color: var(--crimson); border-color: rgba(200, 16, 46, 0.2); }
.badge-tier-B { background: rgba(10, 37, 64, 0.06); color: var(--navy); border-color: rgba(10, 37, 64, 0.16); }
.badge-tier-C { background: var(--bg-alt); color: var(--text-light); border-color: var(--border); }
.badge-verified { background: rgba(18, 128, 92, 0.08); color: #0E6B4D; border-color: rgba(18, 128, 92, 0.2); }
.badge-listed { background: rgba(107, 123, 153, 0.1); color: #4E5C75; border-color: rgba(107, 123, 153, 0.28); }
.badge-expected { background: rgba(201, 169, 97, 0.14); color: #8A6D22; border-color: rgba(201, 169, 97, 0.35); }
.badge-industry { background: var(--bg-alt); color: var(--text-muted); border-color: var(--border); font-weight: 500; }
.badge-focus { background: #fff; color: var(--navy-soft); border-color: #cfd8e3; font-weight: 500; }

/* international score */
.expo-score { text-align: right; flex: none; min-width: 104px; }
.expo-score-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.375rem;
}
.expo-score-bars { display: flex; gap: 3px; justify-content: flex-end; }
.expo-score-bars i {
  width: 15px; height: 5px;
  border-radius: 2px;
  background: var(--border);
  display: block;
}
.expo-score-bars i.on { background: var(--gold); }
.expo-score-num {
  font-size: 0.6875rem;
  color: var(--text-light);
  margin-top: 0.3125rem;
}

/* expandable body */
.expo-card-more {
  display: none;
  padding: 0 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.expo-card.open .expo-card-more { display: block; }
.expo-card-more-inner { padding-top: 1.375rem; }

.expo-block { margin-bottom: 1.25rem; }
.expo-block:last-child { margin-bottom: 0; }
.expo-block h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4375rem;
}
.expo-block p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.expo-block ul { padding-left: 1.125rem; }
.expo-block li {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.25rem;
}
.expo-watchout {
  padding: 0.875rem 1.125rem;
  background: var(--bg-alt);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.expo-watchout p { font-size: 0.875rem; font-style: italic; }

.expo-datanote {
  font-size: 0.8125rem;
  color: var(--text-light);
  padding: 0.625rem 0.875rem;
  background: var(--bg-alt);
  border-radius: 6px;
}

.expo-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.expo-stat-k {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
}
.expo-stat-v {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.expo-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.375rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.expo-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  padding: 0.5625rem 1rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--navy);
  background: #fff;
  transition: all 0.18s ease;
}
.expo-btn-sm:hover { border-color: var(--navy); background: var(--bg-alt); }
.expo-btn-sm.primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.expo-btn-sm.primary:hover { background: var(--navy-dark); }
.expo-btn-sm svg { flex: none; }

.expo-toggle-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  width: 100%;
  padding: 0.6875rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  transition: color 0.18s ease, background 0.18s ease;
}
.expo-toggle-more:hover { color: var(--navy); background: #eef2f7; }
.expo-toggle-more svg { transition: transform 0.25s ease; }
.expo-card.open .expo-toggle-more svg { transform: rotate(180deg); }

/* ---------- Empty state ---------- */
.expo-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}
.expo-empty svg { margin: 0 auto 1rem; color: var(--text-light); }
.expo-empty h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.expo-empty p { font-size: 0.9375rem; color: var(--text-muted); max-width: 460px; margin: 0 auto 1.25rem; }

/* ---------- Subscribe / lead capture ---------- */
.expo-subscribe {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.75rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.expo-subscribe h2 { color: #fff; font-size: 1.625rem; margin-bottom: 0.75rem; }
.expo-subscribe p { font-size: 0.9375rem; color: rgba(255, 255, 255, 0.72); line-height: 1.75; }
.expo-subscribe .section-eyebrow { color: var(--gold); }

.expo-sub-form { display: flex; flex-direction: column; gap: 0.75rem; }
.expo-sub-row { display: flex; gap: 0.625rem; }
.expo-sub-form input,
.expo-sub-form select {
  flex: 1;
  min-width: 0;
  padding: 0.8125rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}
.expo-sub-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.expo-sub-form input:focus,
.expo-sub-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}
.expo-sub-form select option { color: var(--text); }
.expo-sub-form button {
  padding: 0.8125rem 1.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.expo-sub-form button:hover { background: #d9bb75; transform: translateY(-1px); }
.expo-sub-form button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.expo-sub-note { font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6; }
.expo-sub-msg {
  font-size: 0.8125rem;
  padding: 0.6875rem 0.875rem;
  border-radius: 6px;
  display: none;
}
.expo-sub-msg.show { display: block; }
.expo-sub-msg.ok { background: rgba(201, 169, 97, 0.18); color: var(--gold); }
.expo-sub-msg.err { background: rgba(230, 57, 80, 0.18); color: #ffb3bd; }

/* ---------- Support services block ---------- */
.expo-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.expo-support-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.expo-support-card:hover {
  border-color: #cfd8e3;
  box-shadow: 0 8px 22px rgba(10, 37, 64, 0.06);
}
.expo-support-card .ico {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--bg-alt);
  color: var(--navy);
  margin-bottom: 1rem;
}
.expo-support-card h4 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.expo-support-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- Enquiry modal ---------- */
.expo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(6, 26, 48, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.expo-modal.open { display: flex; }

.expo-modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 24px 60px rgba(6, 26, 48, 0.28);
}
.expo-modal-box h3 { font-size: 1.375rem; margin-bottom: 0.375rem; }
.expo-modal-sub {
  font-size: 0.875rem;
  color: var(--crimson);
  font-weight: 500;
  margin-bottom: 1.375rem;
}
.expo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--text-light);
  transition: all 0.18s ease;
}
.expo-modal-close:hover { background: var(--bg-alt); color: var(--navy); }

.expo-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
#expoEnquiry label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
#expoEnquiry input,
#expoEnquiry select,
#expoEnquiry textarea {
  display: block;
  width: 100%;
  margin-top: 0.3125rem;
  padding: 0.6875rem 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
#expoEnquiry textarea { resize: vertical; line-height: 1.6; }
#expoEnquiry input:focus,
#expoEnquiry select:focus,
#expoEnquiry textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.07);
}
#expoEnquiry input.invalid,
#expoEnquiry textarea.invalid { border-color: var(--crimson); }

#mMsg.ok  { background: rgba(18, 128, 92, 0.1); color: #0E6B4D; }
#mMsg.err { background: rgba(200, 16, 46, 0.08); color: var(--crimson); }

.expo-modal-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .expo-card-head { grid-template-columns: 108px 1fr; }
  .expo-score {
    grid-column: 2;
    text-align: left;
    margin-top: 0.25rem;
  }
  .expo-score-bars { justify-content: flex-start; }
  .expo-subscribe { grid-template-columns: 1fr; padding: 2rem; }
  .expo-support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .expo-filters { position: static; padding: 1rem 0; }
  .expo-filter-label { min-width: 100%; }
  .expo-filter-actions { margin-left: 0; width: 100%; }
  .expo-card-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .expo-date {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 0.875rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  .expo-date-day { font-size: 1.375rem; }
  .expo-countdown { margin-top: 0; }
  .expo-score { grid-column: 1; }
  .expo-card-more { padding: 0 1.25rem 1.25rem; }
  .expo-sub-row { flex-direction: column; }
  .expo-stats { gap: 1.125rem; }
  .expo-modal { padding: 0; align-items: flex-end; }
  .expo-modal-box {
    padding: 1.75rem 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
    max-height: 94vh;
  }
  .expo-modal-grid { grid-template-columns: 1fr; gap: 0; }
}
