/* Connect (X) schedule page — design handoff "Schedule 1C".
   Tokens (--cx-*, --radius-*, --shadow-*, --ease-out, --font-brand, …)
   come from core/tokens.css, shipped inside the theme's main.css. */

.cx-schedule {
  background: var(--cx-mist);
  font-family: var(--font-brand);
  color: var(--cx-navy);
  padding: 48px 32px 96px;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
.cx-schedule *, .cx-schedule *::before, .cx-schedule *::after { box-sizing: border-box; }
.cx-schedule a { text-decoration: none; }
.cx-schedule [hidden] { display: none !important; }

.cx-wrap { max-width: 1320px; margin: 0 auto; }

/* ---------- Buttons (design-system Button spec) ---------- */
.cx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-button);
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.cx-btn-sm { padding: 9px 18px; font-size: 13px; }
.cx-btn-lg { padding: 17px 36px; font-size: 17px; }
.cx-btn-primary { background: var(--action-primary); color: var(--action-on-primary); }
.cx-btn-primary:hover { background: var(--action-primary-hover); color: var(--action-on-primary); transform: translateY(-1px); }
.cx-btn-primary:active { background: var(--action-primary-press); transform: translateY(0); }
.cx-btn-outline { background: transparent; color: var(--cx-navy); border-color: var(--cx-navy); }
.cx-btn-outline:hover { background: var(--cx-navy); color: var(--cx-white); transform: translateY(-1px); }

/* ---------- Countdown (rendered in the theme's title-block header) ---------- */
.cx-count { text-align: center; }
.cx-count-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cx-count-cards { display: flex; gap: 10px; justify-content: center; }
.cx-count-card {
  min-width: 66px;
  padding: 12px 10px;
  background: var(--cx-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
}
.cx-count-num { font-size: 28px; font-weight: 700; color: var(--cx-navy); line-height: 1; }
.cx-count-unit {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cx-green-deep);
  margin-top: 7px;
}
/* On the dark title-block band */
.title-block .cx-count-label { color: rgba(255, 255, 255, 0.85); }

/* ---------- Content panel + sticky control bar ---------- */
.cx-panel {
  background: var(--cx-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  overflow: clip; /* keeps the rounded clip without breaking position:sticky */
}
.cx-controlbar {
  position: sticky;
  top: 0;
  z-index: 6;
  background: rgba(230, 234, 246, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 3px solid var(--border-subtle);
  padding: 22px 40px;
}
.cx-loadbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  pointer-events: none;
  overflow: hidden;
}
.cx-loadbar-fill {
  height: 100%;
  background: var(--cx-green);
  width: 0%;
  opacity: 0;
  transition: width 520ms var(--ease-out), opacity 320ms var(--ease-out);
}
.cx-controlrow { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cx-controlrow-spacer { flex: 1; }
.cx-daytabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cx-daytab {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius-xs);
  color: var(--cx-navy);
  background: transparent;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
}
.cx-daytab.is-active { background: var(--cx-green); border-color: var(--cx-green); }
.cx-searchbox {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--cx-mist);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 230px;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}
.cx-searchbox svg { flex: none; transition: stroke var(--dur-fast) var(--ease-out); }
.cx-searchbox input {
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-brand);
  font-weight: 300;
  font-size: 14px;
  color: var(--cx-navy);
  width: 100%;
  padding: 0;
}
.cx-searchbox input::placeholder { color: var(--text-muted); }
/* focus ring lives on the box, never on the inner input */
.cx-searchbox input:focus, .cx-searchbox input:focus-visible { outline: none; box-shadow: none; }
.cx-searchbox:focus-within {
  border-color: var(--cx-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 178, 136, 0.25);
}
.cx-searchbox:focus-within svg { stroke: var(--cx-green); }
.cx-chip-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }

/* Event / Track filter dropdowns */
.cx-dd { position: relative; }
.cx-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px 9px 14px;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-xs);
  font-family: var(--font-brand);
  cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.cx-dd-btn:hover, .cx-dd.is-open .cx-dd-btn { border-color: var(--cx-navy); }
.cx-dd-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cx-dd-value {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cx-navy);
  white-space: nowrap;
}
.cx-dd-chev {
  flex: none;
  color: var(--text-muted);
  transition: transform 180ms var(--ease-out);
}
.cx-dd.is-open .cx-dd-chev { transform: rotate(180deg); color: var(--cx-green); }
/* a non-default selection marks the trigger */
.cx-dd.has-value .cx-dd-btn { border-color: var(--cx-green); }
.cx-dd.has-value .cx-dd-value { color: var(--cx-green-deep); }
.cx-dd-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 100%;
  width: max-content;
  max-width: 320px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  transform: translateY(-4px);
  visibility: hidden;
  transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out), visibility 160ms;
}
.cx-dd.is-open .cx-dd-menu { opacity: 1; transform: translateY(0); visibility: visible; }
.cx-dd-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: var(--radius-xs);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--cx-navy);
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}
.cx-dd-opt:hover { background: var(--cx-mist); }
.cx-dd-opt.is-active { background: rgba(0, 178, 136, 0.12); color: var(--cx-green-deep); }

/* Mobile dropdowns (hidden on desktop) */
.cx-mobile-selects { display: none; flex-direction: column; gap: 10px; }
.cx-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 13px;
  color: var(--cx-navy);
  background: #fff;
}
.cx-mobile-selects .cx-searchbox { padding: 11px 14px; min-width: 0; }

/* ---------- Schedule body ---------- */
.cx-body { background: var(--cx-white); padding: 8px 40px 52px; }
.cx-day-head { display: flex; align-items: baseline; gap: 14px; margin: 36px 0 0; }
.cx-day-head h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--cx-navy);
}
.cx-day-date { font-weight: 700; font-size: 16px; color: var(--cx-green); }

/* General Info panel */
.cx-gi { margin: 18px 0 4px; }
.cx-gi-head { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; cursor: pointer; }
.cx-gi-chev { margin-left: auto; color: var(--text-muted); display: flex; }
.cx-gi.is-open .cx-gi-chev { color: var(--cx-green); }
.cx-gi .cx-chev-up { display: none; }
.cx-gi.is-open .cx-chev-up { display: block; }
.cx-gi.is-open .cx-chev-down { display: none; }
.cx-gi:not(.is-open) { margin-bottom: 0; }
.cx-gi:not(.is-open) .cx-gi-head { margin-bottom: 0; }
.cx-gi-title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cx-green-deep);
}
.cx-gi-sub { font-weight: 300; font-size: 12px; color: var(--text-muted); }
.cx-gi-card {
  background: var(--cx-white);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--cx-slate);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
}
.cx-gi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px 26px;
}
.cx-gi-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid var(--border-subtle);
}
.cx-gi-main { min-width: 0; flex: 1; }
.cx-gi-item-title { font-weight: 700; font-size: 13.5px; line-height: 1.22; color: var(--cx-navy); }
.cx-gi-meta { display: flex; flex-wrap: wrap; gap: 5px 11px; margin-top: 5px; align-items: center; }
.cx-gi-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 11px;
  color: var(--cx-green-deep);
  background: rgba(0, 178, 136, 0.1);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
}
.cx-gi-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-body);
}
.cx-gi-sponsors { flex: none; display: flex; gap: 6px; }
.cx-gi-sponsor {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  width: 74px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 7px;
}
.cx-gi-sponsor img { max-height: 24px; max-width: 62px; width: auto; object-fit: contain; display: block; }

/* Time-slot block header */
.cx-block-head { display: flex; align-items: center; gap: 16px; margin: 38px 0 22px; }
.cx-block-time {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 22px;
  color: var(--cx-navy);
  letter-spacing: -0.01em;
}
.cx-block-time svg { flex: none; }
.cx-block-pill {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cx-green-deep);
  background: rgba(0, 178, 136, 0.12);
  padding: 5px 11px;
  border-radius: var(--radius-xs);
}
.cx-block-rule { flex: 1; height: 1px; background: var(--border-subtle); }

/* Card grid */
.cx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

/* ---------- Cards (shared) ---------- */
.cx-card { transition: box-shadow 180ms var(--ease-out), transform 180ms var(--ease-out); }
.cx-card:hover {
  box-shadow: 0 6px 16px rgba(17, 27, 47, 0.15), 0 2px 6px rgba(17, 27, 47, 0.1);
  transform: translateY(-1px);
}
.cx-toggle { cursor: pointer; }
.cx-chev-up { display: none; }
.is-open > .cx-toggle .cx-chev-up, .is-open .cx-hero-chev .cx-chev-up { display: block; }
.is-open > .cx-toggle .cx-chev-down, .is-open .cx-hero-chev .cx-chev-down { display: none; }

.cx-loc { display: flex; align-items: center; gap: 6px; color: var(--text-body); font-size: 12px; font-weight: 300; }
.cx-loc svg { flex: none; }

.cx-mod-pill {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cx-green-deep);
  background: rgba(0, 178, 136, 0.12);
  padding: 2px 6px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

/* Avatars */
.cx-avatar-40, .cx-avatar-38, .cx-avatar-34 {
  border-radius: 50%;
  overflow: hidden;
  background: var(--cx-mist);
  display: block;
  flex: none;
}
.cx-avatar-40 { width: 40px; height: 40px; }
.cx-avatar-38 { width: 38px; height: 38px; }
.cx-avatar-34 { width: 34px; height: 34px; border: 2px solid #fff; margin-left: -10px; }
.cx-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cx-mist);
  display: block;
  flex: none;
}
.cx-thumb img, .cx-avatar-40 img, .cx-avatar-38 img, .cx-avatar-34 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.is-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cx-navy);
  font-weight: 700;
}
.cx-thumb.is-initials { font-size: 15px; }
.cx-avatar-40.is-initials, .cx-avatar-38.is-initials { font-size: 12px; }
.cx-avatar-34.is-initials { font-size: 11px; }
.cx-avatar-38.is-initials { border: 1px solid var(--border-subtle); }
.cx-thumb.is-mod, .cx-avatar-40.is-mod { box-shadow: inset 0 0 0 2px var(--cx-green); }

/* Sponsors */
.cx-sponsors { margin-top: 14px; }
.cx-sponsors-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.cx-sponsor-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.cx-sponsor-chip {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  height: 38px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cx-sponsor-chip img { max-height: 24px; max-width: 100px; width: auto; object-fit: contain; display: block; }
.cx-sponsor-name { font-size: 10px; font-weight: 700; color: var(--cx-navy); }

/* Speaker rows (expanded regions) */
.cx-spk-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.cx-spk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 26px; margin-bottom: 20px; }
.cx-spk-row { display: flex; gap: 11px; align-items: center; min-width: 0; }
.cx-spk-photo-link { flex: none; line-height: 0; }
.cx-spk-info { min-width: 0; }
.cx-spk-name-line { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.cx-spk-name { font-weight: 700; font-size: 13px; color: var(--cx-navy); line-height: 1.2; }
.cx-spk-name:hover { color: var(--cx-green); }
.cx-spk-role { font-size: 11px; color: var(--text-body); font-weight: 300; line-height: 1.25; }
.cx-spk-role b { font-weight: 700; color: var(--cx-navy); }

.cx-card-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Add-to-calendar provider links (revealed by the button; no downloads) */
.cx-cal { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cx-cal-links { display: none; align-items: center; gap: 6px; flex-wrap: wrap; }
.cx-cal.is-open .cx-cal-links { display: flex; }
.cx-cal-link {
  font-weight: 700;
  font-size: 11px;
  color: var(--cx-navy);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xs);
  padding: 6px 10px;
  white-space: nowrap;
  transition: border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.cx-cal-link:hover { border-color: var(--cx-green); color: var(--cx-green-deep); }

/* ---------- Standard session card ---------- */
.cx-card-std {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}
.cx-card-css { background: #f2f1f8; }
.cx-card-band {
  padding: 0 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cx-band-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cx-navy);
}
.cx-band-logo { height: 22px; width: auto; display: block; }
.cx-band-chev { flex: none; color: rgba(17, 27, 47, 0.72); display: flex; }
.cx-card-body { padding: 18px 20px; }
.cx-card-title {
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--cx-navy);
  min-height: 42px;
}
.cx-addl-tag {
  display: inline-block;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cx-orange);
  border: 1px solid var(--cx-orange);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  margin-bottom: 12px;
}
.cx-avatars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  margin-bottom: 14px;
  padding-left: 10px;
}
.cx-card-detail { padding: 16px 20px 20px; border-top: 1px solid var(--border-subtle); }
.cx-abstract {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 300;
  color: var(--text-body);
  margin: 16px 0 18px;
}

/* ---------- Main Stage / Keynote feature card ---------- */
.cx-card-hero {
  grid-column: 1 / -1;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.cx-card-hero:hover {
  box-shadow: 0 0 0 1px rgba(0, 178, 136, 0.4), 0 8px 24px rgba(0, 178, 136, 0.26);
  transform: translateY(-1px);
}
.cx-hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--cx-green);
  z-index: 1;
  transition: width 160ms var(--ease-out);
}
.cx-card-hero:hover .cx-hero-accent { width: 8px; }
.cx-hero-grid {
  display: grid;
  grid-template-columns: 172px minmax(0, 0.95fr) minmax(0, 1.95fr) minmax(128px, auto) 46px;
  align-items: stretch;
}
.cx-hero-cell { border-right: 1px solid var(--border-subtle); }
.cx-hero-label {
  padding: 20px 20px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.cx-hero-label .cx-loc { display: inline-flex; font-size: 12.5px; }
.cx-hero-eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cx-green-deep);
}
.cx-hero-stage {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--cx-navy);
  line-height: 1.1;
}
.cx-hero-titlecell { padding: 20px 22px; display: flex; align-items: center; }
.cx-hero-title {
  font-size: 20px;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin: 0;
  font-weight: 700;
  color: var(--cx-green-deep);
}
.cx-hero-speakers { padding: 16px 22px; display: flex; align-items: center; }
.cx-hero-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 8px;
  width: 100%;
}
.cx-hero-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.cx-hero-chip-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cx-hero-chip-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: 15px;
  color: var(--cx-navy);
  line-height: 1.15;
  white-space: nowrap;
}
.cx-hero-chip-role {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cx-hero-chip-co {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cx-green-deep);
  line-height: 1.2;
}
.cx-hero-sponsors { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.cx-hero-sponsors .cx-sponsors { margin-top: 0; }
.cx-hero-sponsors .cx-sponsor-chip { padding: 5px 9px; }
.cx-hero-sponsors .cx-sponsor-chip img { max-width: 92px; }
.cx-hero-chev {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.is-open .cx-hero-chev { color: var(--cx-green); }
.cx-card-hero .cx-card-detail { padding: 18px 24px 22px 28px; }

/* No-results note */
.cx-no-results {
  margin: 48px 0 24px;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-body);
  text-align: center;
}

/* The standard title-block band above the schedule gives the fixed
   transparent site header its expected dark backdrop; the control bar
   just needs to stick below the shrunk (.toscroll) header state. */
@media (min-width: 769px) {
  body.post-type-archive-schedule .cx-controlbar { top: 64px; }
}

/* ---------- Mobile (single breakpoint, per design) ---------- */
@media (max-width: 760px) {
  .cx-schedule { padding: 24px 14px 60px; }
  .cx-controlbar { padding: 16px 16px; position: static; }
  .cx-body { padding: 6px 16px 40px; }
  .cx-daytabs, .cx-search, .cx-filters { display: none; }
  .cx-controlrow { display: none; }
  .cx-mobile-selects { display: flex; }
  .cx-grid { grid-template-columns: 1fr; }
  .cx-hero-grid { display: flex; flex-direction: column; }
  .cx-hero-cell { border-right: none; }
  .cx-hero-chips { grid-template-columns: 1fr; }
}
