/* === Go Today — Event Directory === */

/* ----- Editorial design system: fonts ----- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ----- Editorial design system: tokens ----- */
:root {
  /* palette */
  --paper: #F6F1E7;
  --paper-raised: #FCF9F2;
  --wash: #EFE8D8;
  --ink: #241F17;
  --ink-soft: rgba(36, 31, 23, 0.72);
  --ink-faint: rgba(36, 31, 23, 0.5);
  --clay: #B4442C;
  --clay-deep: #93351F;
  --amber: #B4831B;
  --hairline: #E2DACA;
  --on-ink: #F6F1E7;

  /* type */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, 'Segoe UI', Roboto, 'Hiragino Sans', 'Yu Gothic', sans-serif;

  /* layout */
  --radius-chip: 999px;
  --radius-card: 10px;
  --radius-sheet: 18px;
  --masthead-h: 64px;
  --tabbar-h: 66px;
  --rail-w: 300px;
  --shadow-sheet: 0 -12px 40px rgba(36, 31, 23, 0.18);
}

/* ----- Editorial base ----- */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--ink);
}

a {
  color: var(--clay);
}

a:hover, a:focus {
  color: var(--clay-deep);
}

/* ----- Site Hero ----- */
.site-hero {
  padding: 0.35rem 0 1.05rem;
  border-bottom: 0;
  margin-bottom: 1rem;
}

.site-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.site-hero .tagline {
  color: #666;
  font-size: 1rem;
  margin-bottom: 0;
}

.hero-verb {
  transition: opacity 0.3s;
  color: var(--clay);
}

.hero-suffix {
  color: var(--ink);
}

/* ----- Homepage city-tab navigation ----- */
.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.city-tab-btn {
  padding: 0.4rem 1.05rem;
  border-radius: 99px;
  border: 1.5px solid #e0e0e0;
  background: #fff;
  color: #555;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  line-height: 1.4;
}
.city-tab-btn:hover {
  border-color: var(--clay);
  color: var(--clay);
}
.city-tab-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.content-column,
.homepage-content-column {
  padding-top: 1.4rem;
}

.homepage-content .site-hero {
  padding: 0.35rem 0 1.05rem;
  margin-bottom: 1rem;
  border-bottom: 0;
}

.homepage-content .site-hero h1 {
  margin-bottom: 0.25rem;
}

.homepage-content .site-hero .tagline {
  margin-bottom: 0;
}

.homepage-brand-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.homepage-brand-logo {
  width: 5rem;
  height: 5rem;
  flex: 0 0 auto;
  border-radius: 1.1rem;
  box-shadow: 0 0.45rem 1.25rem rgba(36, 31, 23, 0.12);
}

.homepage-brand-hero h1 {
  font-size: 2.35rem;
}

.homepage-directory-context {
  display: none;
}

.homepage-stat-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: -0.35rem 0 0.5rem;
}

.stat-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  padding: 0.22rem 0.72rem;
  border-radius: 99px;
  background: #faeae5;
  color: #8c2f1b;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.stat-chip strong {
  font-weight: 800;
}

.stat-chip-cities {
  background: #e7f0fb;
  color: #245f9c;
}


.stat-chip-date-ideas {
  background: #fde0ea;
  color: #a82a55;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.stat-chip-date-ideas:hover,
.stat-chip-date-ideas:focus {
  background: #f8c8da;
  color: #861f43;
  text-decoration: none;
}

.stat-chip-visitor {
  background: #d8f0e9;
  color: #16745c;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.stat-chip-visitor:hover,
.stat-chip-visitor:focus {
  background: #bfe6db;
  color: #105844;
  text-decoration: none;
}

.city-tab-btn.active::before {
  content: "\2713\00a0";
}

.homepage-content .city-tabs {
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.homepage-content .city-tab-btn {
  padding: 0.32rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.25;
}

/* Compact city selector: current city + change CTA; the full chip list lives
   inside the picker panel below and only shows when toggled open. */
.home-city-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  margin: 0 0 0.85rem;
  padding: 0.5rem 0.55rem 0.5rem 0.65rem;
  border: 1px solid var(--hairline);
  border-radius: 0.65rem;
  background: var(--paper-raised);
  color: var(--ink);
  line-height: 1.15;
}

.home-city-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--wash);
  color: var(--clay);
  font-size: 0.95rem;
}

.home-city-bar__details {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.home-city-bar__label {
  color: var(--ink-faint);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-city-bar__details strong {
  overflow: hidden;
  font-family: var(--font-serif);
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-city-bar button {
  flex: 0 0 auto;
  margin-left: 0.35rem;
  padding: 0.38rem 0.8rem;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-city-bar button:hover,
.home-city-bar button:focus,
.home-city-bar button[aria-expanded="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--on-ink);
  outline: none;
}

.home-city-picker {
  display: block;
  margin: -0.35rem 0 0.85rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--hairline);
  border-radius: 0.65rem;
  background: var(--paper-raised);
}

.home-city-picker[hidden] {
  display: none;
}

.city-picker-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 24rem;
  margin: 0 0 0.85rem;
}

.city-picker-search .fa {
  position: absolute;
  left: 0.75rem;
  z-index: 1;
  color: var(--clay);
  font-size: 0.78rem;
  pointer-events: none;
}

.city-picker-search input {
  width: 100%;
  min-height: 2.35rem;
  padding: 0.48rem 0.75rem 0.48rem 2rem;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  outline: none;
}

.city-picker-search input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 2px rgba(180, 68, 44, 0.12);
}

.city-picker-regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.35rem;
}

.city-picker-region {
  min-width: 0;
  padding-top: 0.65rem;
  border-top: 1px solid var(--hairline);
}

.city-picker-region h3 {
  margin: 0 0 0.48rem;
  color: var(--ink-faint);
  font-family: var(--font-ui);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-transform: uppercase;
}

.city-picker-region__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.home-city-picker .city-tab-btn {
  padding: 0.3rem 0.7rem;
  border-width: 1px;
  background: #fff;
  font-size: 0.72rem;
}

.home-city-picker .city-tab-btn.active {
  border-color: var(--clay);
  background: var(--clay);
  color: #fff;
}

.homepage-signup-prompt {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: -0.25rem 0 0.85rem;
  color: #666;
  font-size: 0.78rem;
  line-height: 1.3;
}

.homepage-signup-prompt button {
  padding: 0.38rem 1.05rem;
  border: 0;
  border-radius: 99px;
  background: var(--clay);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  transition: background 0.15s;
}

.homepage-signup-prompt button:hover,
.homepage-signup-prompt button:focus {
  background: var(--clay-deep);
  color: #fff;
  outline: none;
}

.city-panel { display: none; }
.city-panel.active { display: block; }

.event-search-shell {
  margin: 0 0 1.15rem;
  padding: 0 0 0.9rem;
  border-bottom: 1px solid var(--hairline);
}

.homepage-content .event-search-shell {
  margin: 0 0 1rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.event-search-box {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 46rem;
  min-height: 2.75rem;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: var(--paper-raised);
  box-shadow: none;
}

/* Browse: search box + city scope select side by side */
.event-search-controls {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 50rem;
}

.event-search-controls .event-search-box {
  flex: 1 1 auto;
  max-width: none;
}

.event-search-city {
  flex: 0 0 auto;
  max-width: 12rem;
  min-height: 2.75rem;
  padding: 0 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: var(--paper-raised);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .event-search-controls {
    flex-direction: column;
  }

  .event-search-city {
    max-width: none;
    min-height: 2.75rem;
  }
}

.event-search-box .fa {
  flex: 0 0 auto;
  margin-left: 1rem;
  color: var(--clay);
  font-size: 0.88rem;
}

.event-search-box input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0.62rem 2.65rem 0.62rem 0.7rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.35;
}

.event-search-box input::placeholder {
  color: var(--ink-faint);
}

.homepage-content .event-search-box {
  min-height: 2.65rem;
}

.homepage-content .event-search-box input {
  padding-top: 0.62rem;
  padding-bottom: 0.62rem;
}

.event-search-clear {
  position: absolute;
  right: 0.55rem;
  top: 50%;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  color: #555;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.event-search-clear:hover {
  background: #e6e6e6;
  color: var(--ink);
}

.event-search-hint {
  margin: 0.45rem 0 0;
  color: #777;
  font-size: 0.78rem;
}

.search-results-panel {
  max-width: 46rem;
  margin-top: 0.85rem;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(36, 31, 23, 0.08);
  overflow: hidden;
}

.search-results-header {
  padding: 0.75rem 0.95rem;
  border-bottom: 1px solid #f0f0f0;
  color: #555;
  font-size: 0.8rem;
  font-weight: 700;
}

.search-results-section {
  padding: 0.85rem 0.95rem 0.95rem;
}

.search-results-section + .search-results-section {
  border-top: 1px solid #f3f3f3;
}

.search-results-section h2 {
  margin: 0 0 0.5rem;
  color: #777;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.search-results-list {
  display: grid;
  gap: 0.45rem;
}

.search-result-card {
  display: block;
  padding: 0.65rem 0.7rem;
  border-radius: 6px;
  color: #222;
  text-decoration: none;
}

.search-result-card:hover {
  background: #f7f7f7;
  color: var(--clay);
  text-decoration: none;
}

.search-event-result.homepage-event-link,
.search-event-result.homepage-event-link:hover,
.search-event-result.homepage-event-link:focus {
  display: block;
  color: #222;
}

.search-event-result.homepage-event-link:hover,
.search-event-result.homepage-event-link:focus {
  color: var(--clay);
  opacity: 1;
}

.search-event-result.homepage-event-link .search-result-title {
  color: inherit;
}

.search-result-title,
.search-result-meta {
  display: block;
}

.search-result-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
}

.search-result-meta {
  margin-top: 0.25rem;
  color: #666;
  font-size: 0.8rem;
  line-height: 1.35;
}

.search-results-empty {
  padding: 1rem;
  color: #777;
  font-size: 0.9rem;
}

/* ----- City tabs (event pages) ----- */
.city-tab-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.city-tab {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  border: 1.5px solid var(--clay);
  background: var(--clay);
  color: #fff;
  cursor: default;
  letter-spacing: 0.02em;
}

.city-more {
  font-size: 0.72rem;
  color: #bbb;
  font-style: italic;
}

/* ----- Expansion pages ----- */
.page-intro {
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 48rem;
}

.quick-page-grid,
.directory-list {
  display: grid;
  gap: 0.9rem;
}

.quick-city-section {
  margin-bottom: 1.75rem;
}

.quick-city-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #f0f0f0;
}

.quick-page-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}

.quick-page-card {
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  background: #fff;
  padding: 0.85rem 1rem;
  min-height: 3.25rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: box-shadow 0.18s, transform 0.18s, background-color 0.15s;
}

.quick-page-card:hover,
.quick-page-card:focus {
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
  transform: translateY(-1px);
  background: #fafafa;
}

.quick-page-arrow {
  color: var(--clay);
  font-size: 1.25rem;
  opacity: 0.65;
  transition: transform 0.18s, opacity 0.18s;
  flex-shrink: 0;
}

.quick-page-card:hover .quick-page-arrow {
  transform: translateX(3px);
  opacity: 1;
}

.signup-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid #ead7d4;
  border-radius: 0.5rem;
  background: #fff8f6;
}

.signup-cta h2 {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.signup-cta p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.45;
}

.signup-cta-button {
  flex: 0 0 auto;
  min-height: 2.55rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.4rem;
  background: var(--clay);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.signup-cta-button:hover,
.signup-cta-button:focus {
  background: var(--clay-deep);
  outline: none;
}

body[data-go-auth-state="signed-in"] [data-auth-visitor-cta] {
  display: none;
}

.directory-card {
  border: 1px solid #e8e8e8;
  border-radius: 0.5rem;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
}

.directory-card h5 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.directory-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.directory-card-meta {
  color: #777;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}

.directory-card-meta i {
  color: var(--clay);
}

.page-note {
  background: #f8f8f8;
  border-left: 3px solid var(--clay);
  color: #555;
  font-size: 0.9rem;
  margin: 1.5rem 0;
  padding: 0.85rem 1rem;
}

/* ----- Tonight banner ----- */
.tonight-section {
  background: var(--ink);
  color: #fff;
  border-radius: 0.75rem;
  padding: 0.95rem 1.25rem 0.8rem;
  margin-bottom: 1.25rem;
}

.tonight-section h3 {
  color: #fff;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  opacity: 0.68;
}

.today-tomorrow-row {
  display: flex;
  gap: 1.5rem;
}

.today-block,
.tomorrow-block,
.weekend-block {
  flex: 1;
  min-width: 0;
}

.today-block[hidden],
.tomorrow-block[hidden],
.weekend-block[hidden] {
  display: none;
}

.tonight-summary,
.tonight-section .tonight-summary,
.today-block .tonight-summary,
.tomorrow-block .tonight-summary {
  color: #fff !important;
  font-size: 0.8rem;
  margin-bottom: 0;
  line-height: 1.15;
}

.tonight-summary strong {
  color: #fff !important;
}

.banner-event {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.08rem 0 0.42rem;
  color: #fff;
}

.homepage-event-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08rem;
  color: #fff;
  text-decoration: none;
}

.homepage-event-statuses,
.homepage-event-tags {
  display: none !important;
}

.homepage-event-link:hover,
.homepage-event-link:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.86;
}

.homepage-event-link span:not(.homepage-event-meta):not(.homepage-event-statuses):not(.homepage-event-tags):not(.homepage-event-desc) {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.18;
}

.homepage-saved-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1rem;
  margin-left: 0.28rem;
  padding: 0.08rem 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: currentColor;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: baseline;
  position: relative;
  top: -0.07em;
}

.homepage-event-detail {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  max-width: 100%;
  min-width: 0;
}

.homepage-event-link small {
  color: rgba(255, 255, 255, 0.52);
  flex: 0 0 auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.1;
}

.homepage-event-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 480px) {
  .today-tomorrow-row {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ----- Mode filter ----- */
/* Mode filter: one quiet pill group (segmented chips on a raised track)
   instead of four floating outlined pills. */
.mode-filter {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  background: var(--paper-raised);
}

.mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.85rem;
  border: 0;
  border-radius: 99px;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  line-height: 1.25;
}

.mode-btn:hover,
.mode-btn:focus {
  color: var(--ink);
  outline: none;
}

.mode-btn.active {
  background: var(--ink);
  color: var(--on-ink);
}

/* ----- Filter bar ----- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.filter-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.4;
}

.filter-btn:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.filter-btn.active {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.filter-today {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-today.active {
  background: var(--ink);
  border-color: var(--ink);
}

/* ----- Event cards ----- */
.event-grid > [class*='col-'] {
  margin-bottom: 0.75rem;
}

.event-hidden {
  display: none !important;
}

.event-card {
  position: relative;
  border: 1px solid #e8e8e8;
  border-radius: 0.75rem;
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.18s, transform 0.18s;
}

.event-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Average rating from published reviews (cards + featured list) */
.event-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.event-rating-star {
  color: #f5a623;
  font-size: 0.78rem;
}

.event-rating-count {
  font-weight: 600;
  opacity: 0.6;
}

.event-card .event-rating {
  margin: auto 0 0;
  padding-top: 0.35rem;
}

.event-rating-badge.summary-rating {
  margin-left: 0.12rem;
  font-size: 0.68rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-card > .status-badge {
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
}

.event-statuses {
  position: static;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-bottom: 0.15rem;
}

.status-new {
  background: var(--clay);
  color: #fff;
}

.status-free {
  background: #2980b9;
  color: #fff;
}

.status-outdoor {
  background: #00897b;
  color: #fff;
}

.status-upcoming {
  background: #d4a017;
  color: var(--ink);
}

.status-rooms {
  background: #6c5ce7;
  color: #fff;
}

.status-live {
  background: var(--ink);
  color: #fff;
}

.status-social {
  background: #16a085;
  color: #fff;
}

.status-certified {
  background: #14213d;
  color: #fff;
  border: 1px solid rgba(212, 160, 23, 0.65);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 1px 4px rgba(20, 33, 61, 0.16);
}

.status-certified::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-weight: normal;
  color: #f4c95d;
  margin-right: 0.32rem;
}

/* Day badges */
.day-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 0.3rem;
  color: #fff;
  margin-bottom: 0.3rem;
  align-self: flex-start;
}

.day-mon { background-color: #6c5ce7; }
.day-tue { background-color: #0984e3; }
.day-wed { background-color: #00897b; }
.day-thu { background-color: #e17055; }
.day-fri { background-color: var(--clay); }
.day-sat { background-color: #8e44ad; }
.day-sun { background-color: #d4a017; }

/* Card text */
.event-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.15rem;
  line-height: 1.35;
}

.event-title-link {
  color: inherit;
  text-decoration: none;
}

.event-title-link:hover,
.event-title-link:focus {
  color: var(--clay);
  text-decoration: none;
}

.event-time,
.event-date,
.event-venue {
  font-size: 0.74rem;
  color: #666;
  line-height: 1.35;
  margin-bottom: 0.08rem;
}

/* Out-specify style.default.css's `.content-column-content p/h5 { margin-bottom: 2rem }` */
.content-column-content .event-card .event-name {
  margin-bottom: 0.15rem;
}

.content-column-content .event-card .event-time,
.content-column-content .event-card .event-date,
.content-column-content .event-card .event-venue {
  margin-bottom: 0.08rem;
}

.content-column-content .event-card .event-description {
  margin-bottom: 0;
}

.event-time .fa,
.event-date .fa,
.event-venue .fa {
  width: 14px;
  opacity: 0.5;
  margin-right: 2px;
}

.venue-map-links {
  color: #888;
  white-space: nowrap;
}

.venue-map-links a {
  color: var(--clay);
  text-decoration: none;
}

.venue-map-links a:hover,
.venue-map-links a:active {
  color: var(--clay-deep);
}

/* Style tags */
.event-tags {
  margin-top: 0.4rem;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
}

.style-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  border: 1.5px solid currentColor;
}

.tag-salsa    { color: var(--clay); }
.tag-bachata  { color: #6c5ce7; }
.tag-kizomba  { color: #00897b; }
.tag-afrobeats { color: #e17055; }
.tag-karaoke  { color: #e91e63; }
.tag-trivia   { color: #2980b9; }
.tag-jazz     { color: var(--ink); }
.tag-comedy   { color: #d35400; }
.tag-tech     { color: #16a085; }
.tag-social   { color: #e67e22; }
.tag-rooms    { color: #8e44ad; }
.tag-run      { color: #27ae60; }
.tag-soccer   { color: #0b5cad; }
.tag-board    { color: #7d3c98; }

.recurring-badge {
  font-size: 0.6rem;
  color: #5f6673;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-left: 0.1rem;
}

/* More info link inside card */
.event-more-link {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clay);
  text-decoration: none;
}

.event-more-link:hover {
  color: var(--clay-deep);
  text-decoration: none;
}

.event-description {
  display: none;
}

/* Event details modal */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.event-modal.is-open {
  display: flex;
}

.event-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 31, 23, 0.62);
}

.event-modal-dialog {
  position: relative;
  width: min(100%, 430px);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  padding: 1.35rem;
}

.event-modal-statuses {
  display: none;
  position: absolute;
  top: 1.05rem;
  right: 3.15rem;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.event-modal-statuses.is-visible {
  display: flex;
}

.event-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #555;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.event-modal-close:hover,
.event-modal-close:focus {
  background: #ececec;
  color: var(--ink);
  outline: none;
}

.event-modal-title {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  margin: 0.4rem 2rem 0.9rem 0;
}

.event-modal-details {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 0.75rem 0;
  margin-bottom: 0.85rem;
}

.event-modal-detail {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.45;
}

.event-modal-detail + .event-modal-detail {
  margin-top: 0.35rem;
}

.event-modal-detail .fa {
  width: 1rem;
  color: var(--clay);
  margin-right: 0.25rem;
}

.event-modal-description {
  color: #444;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.event-modal-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
}

.event-modal-actions {
  display: grid;
  grid-template-columns: 1fr 2.65rem 2.65rem 2.65rem;
  align-items: center;
  gap: 0.55rem;
}

.event-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: auto;
  min-height: 2.65rem;
  border-radius: 0.35rem;
  background: var(--clay);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.event-modal-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.1rem;
}

.event-modal-save,
.event-modal-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.event-modal-share-wrap {
  position: relative;
  flex: 0 0 auto;
  width: 2.65rem;
}

.event-modal-share {
  width: 100%;
}

.event-modal-share-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.45rem);
  z-index: 2;
  min-width: 9.5rem;
  padding: 0.35rem;
  border: 1px solid #dddddd;
  border-radius: 0.45rem;
  background: #fff;
  box-shadow: 0 0.7rem 1.8rem rgba(36, 31, 23, 0.18);
}

.event-modal-share-menu button {
  display: flex;
  width: 100%;
  min-height: 2.25rem;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 0.3rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: left;
}

.event-modal-share-menu button:hover,
.event-modal-share-menu button:focus {
  background: #fff8f6;
  color: var(--clay-deep);
  outline: none;
}

.event-modal-icon-btn:hover,
.event-modal-icon-btn:focus {
  border-color: var(--clay);
  color: var(--clay-deep);
  outline: none;
}

.event-modal-icon-btn:disabled {
  cursor: wait;
  opacity: 0.68;
}

.event-modal-save[data-saved="true"] {
  border-color: var(--clay);
  background: #fff8f6;
  color: var(--clay-deep);
}

.event-modal-save-message {
  min-height: 1.15rem;
  margin: 0.45rem 0 0;
  color: #666;
  font-size: 0.78rem;
  font-weight: 700;
}

.event-modal-save-message[data-state="success"] {
  color: #287a45;
}

.event-modal-save-message[data-state="warn"] {
  color: #9a6a14;
}

.event-modal-save-message[data-state="error"] {
  color: #b42318;
}

.event-modal-reminder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.65rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e1ddd7;
  border-radius: 0.6rem;
  background: #fffdfb;
}

.event-modal-reminder-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

.event-modal-reminder-title {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.event-modal-reminder select {
  min-height: 2rem;
  padding: 0.2rem 1.8rem 0.2rem 0.45rem;
  border: 1px solid #d8d3cd;
  border-radius: 0.35rem;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.event-modal-reminder-btn {
  display: inline-flex;
  min-height: 2.35rem;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: #fff;
  color: var(--clay-deep);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.event-modal-reminder-btn:hover,
.event-modal-reminder-btn:focus,
.event-modal-reminder-btn[data-active="true"] {
  background: #fff0eb;
  outline: none;
}

.event-modal-reminder-btn:disabled,
.event-modal-reminder select:disabled {
  cursor: wait;
  opacity: 0.65;
}

.event-modal-reminder-message {
  min-height: 1.15rem;
  margin: 0.35rem 0 0;
  color: #666;
  font-size: 0.76rem;
  font-weight: 700;
}

.event-modal-reminder-message[data-state="success"] {
  color: #287a45;
}

.event-modal-reminder-message[data-state="warn"] {
  color: #9a6a14;
}

.event-modal-reminder-message[data-state="error"] {
  color: #b42318;
}

@media (max-width: 460px) {
  .event-modal-reminder {
    align-items: stretch;
    flex-direction: column;
  }

  .event-modal-reminder-copy {
    overflow: hidden;
  }

  /* Keep the computed 16px size that prevents iOS focus zoom, but render the
     native select on the same compact type scale as the rest of the sheet. */
  .event-modal-reminder select {
    width: 117.65%;
    margin-bottom: -0.3rem;
    transform: scale(0.85);
    transform-origin: left top;
  }

  .event-modal-reminder-btn {
    justify-content: center;
  }
}

.event-modal-cal-wrap {
  position: relative;
  flex: 0 0 auto;
}

.event-modal-cal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.event-modal-cal-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.45rem);
  z-index: 2;
  min-width: 11rem;
  padding: 0.35rem;
  border: 1px solid #dddddd;
  border-radius: 0.45rem;
  background: #fff;
  box-shadow: 0 0.7rem 1.8rem rgba(36, 31, 23, 0.18);
}

.event-modal-cal-menu button {
  display: flex;
  width: 100%;
  min-height: 2.25rem;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 0.3rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: left;
}

.event-modal-cal-menu button:hover,
.event-modal-cal-menu button:focus {
  background: #fff8f6;
  color: var(--clay-deep);
  outline: none;
}

.event-modal-cta:hover,
.event-modal-cta:focus {
  background: var(--clay-deep);
  color: #fff;
  text-decoration: none;
}

.event-modal-reviews {
  margin-top: 0.9rem;
  padding-top: 0.8rem;
  border-top: 1px solid #ececec;
}

.event-modal-reviews-title {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

.event-modal-reviews-average {
  margin: 0 0 0.55rem;
  color: #9a6a14;
  font-size: 0.88rem;
  font-weight: 800;
}

.event-modal-review {
  margin: 0 0 0.6rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid #ececec;
  border-radius: 0.4rem;
  background: #fafafa;
}

.event-modal-review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.8rem;
}

.event-modal-review-rating {
  color: #c8941a;
  letter-spacing: 0.08em;
}

.event-modal-review-name {
  color: #666;
  font-weight: 700;
}

.event-modal-review-body {
  margin: 0.3rem 0 0;
  color: #333;
  font-size: 0.84rem;
  line-height: 1.45;
}

.event-modal-review-empty {
  margin: 0 0 0.55rem;
  color: #666;
  font-size: 0.84rem;
}

.event-modal-review-form-label {
  margin: 0 0 0.25rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.event-modal-review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}

.event-modal-review-stars button {
  padding: 0 0.1rem;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.event-modal-review-stars button.is-selected {
  color: #c8941a;
}

.event-modal-review-stars button:hover,
.event-modal-review-stars button:focus {
  color: #c8941a;
  outline: none;
}

.event-modal-review-text {
  width: 100%;
  min-height: 4.9rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  background: var(--paper-raised);
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.4;
  resize: vertical;
}

.event-modal-review-text:focus {
  border-color: var(--clay);
  outline: none;
}

.event-modal-review-disclaimer {
  margin: 0.45rem 0;
  color: #666;
  font-size: 0.76rem;
  line-height: 1.4;
}

.event-modal-review-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.35rem;
  background: var(--clay);
  color: #fff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.event-modal-review-submit:hover,
.event-modal-review-submit:focus {
  background: var(--clay-deep);
  outline: none;
}

.event-modal-review-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.event-modal-review-message {
  min-height: 1.15rem;
  margin: 0.45rem 0 0;
  color: #666;
  font-size: 0.78rem;
  font-weight: 700;
}

.event-modal-review-message[data-state="success"] {
  color: #287a45;
}

.event-modal-review-message[data-state="warn"] {
  color: #9a6a14;
}

.event-modal-review-message[data-state="error"] {
  color: #b42318;
}

.event-modal-review-signin {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--clay-deep);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
}

/* "Were you at {event}?" review prompt — bottom sheet on mobile, corner card
   on desktop. Sits under the event modal (1050) and auth modal (1090). */
.review-prompt {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 1040;
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom));
  border-radius: 0.5rem;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translateY(0.75rem);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.review-prompt.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.event-modal-open .review-prompt {
  display: none;
}

@media (min-width: 768px) {
  .review-prompt {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    max-width: 340px;
    padding: 1rem 1.1rem;
  }
}

.review-prompt-close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  padding: 0.2rem 0.45rem;
  border: 0;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}

.review-prompt-close:hover,
.review-prompt-close:focus {
  color: var(--ink);
  outline: none;
}

.review-prompt-title {
  margin: 0 1.2rem 0.2rem 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
}

.review-prompt-meta {
  margin: 0 0 0.5rem;
  color: #666;
  font-size: 0.78rem;
}

.review-prompt-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.15rem;
}

.review-prompt-stars button {
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d8d8;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1;
}

.review-prompt-stars button:hover,
.review-prompt-stars button:focus {
  color: #c8941a;
  outline: none;
}

.review-prompt-hint {
  margin: 0 0 0.4rem;
  color: #666;
  font-size: 0.76rem;
}

.review-prompt-skip {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--clay-deep);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: underline;
}

@media (max-width: 520px) {
  .event-modal-details {
    padding: 0.55rem 0;
    margin-bottom: 0.7rem;
  }

  .event-modal-detail {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .event-modal-detail + .event-modal-detail {
    margin-top: 0.22rem;
  }

  .event-modal-detail .fa {
    width: 0.95rem;
    margin-right: 0.2rem;
    font-size: 0.85rem;
  }

  .event-modal-actions {
    grid-template-columns: 1fr auto auto auto;
  }
}

.event-modal-open {
  overflow: hidden;
}

/* ----- Organizer CTA ----- */
.submit-cta {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #f9f9f9;
  border-radius: 0.75rem;
  border: 1px solid #eee;
}

.submit-cta p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
}

.submit-cta a {
  color: var(--clay);
  font-weight: 600;
  text-decoration: none;
}

.submit-cta a:hover {
  text-decoration: underline;
}

/* ----- Submit form ----- */
.submit-page {
  max-width: 1180px;
}

.submit-page .site-hero {
  margin-bottom: 1.6rem;
}

.submit-form-wrap {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 12px 32px rgba(25, 35, 45, 0.06);
}

.submit-form-wrap .form-group {
  margin-bottom: 1.05rem;
}

.submit-form-wrap label {
  color: #333;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.submit-form-wrap .form-control {
  min-height: 46px;
  margin-left: 0;
  margin-right: 0;
  border: 1px solid #d7dce0;
  border-radius: 7px;
  color: #252525;
  font-size: 0.94rem;
  box-shadow: none;
}

.submit-form-wrap textarea.form-control {
  min-height: 116px;
}

.submit-form-wrap .form-control:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 0.16rem rgba(192, 57, 43, 0.13);
}

.form-section-label {
  color: #8a3b31;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #ececec;
  padding-bottom: 0.5rem;
  margin: 1.45rem 0 1rem;
}

.submit-form-wrap .form-section-label:first-of-type {
  margin-top: 0;
}

.day-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.day-check-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.3rem 0.7rem;
  border: 1px solid #d9dee3;
  border-radius: 7px;
  transition: all 0.15s;
  background: #fbfbfb;
}

.day-check-label:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.day-check-label input {
  margin: 0;
}

.btn-submit {
  background-color: var(--clay);
  border-color: var(--clay);
  color: #fff;
  border-radius: 7px;
  padding: 0.72rem 1.4rem;
  font-weight: 600;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--clay-deep);
  border-color: var(--clay-deep);
  color: #fff;
}

.submit-note {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 0;
}

.submit-sidebar-info {
  background: #f7f7f4;
  border: 1px solid #e4e2dc;
  border-radius: 8px;
  padding: 1.5rem;
  font-size: 0.875rem;
  position: sticky;
  top: 1rem;
}

.submit-sidebar-info h6 {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #999;
  margin-bottom: 0.75rem;
}

.submit-benefits {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.submit-benefits li {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

/* ----- Footer ----- */
.footer {
  padding: 1rem;
  background-color: #f5f5f5;
  text-align: center;
  font-size: 0.8rem;
}

.footer a {
  color: var(--clay);
}

/* ----- Misc ----- */
.meta {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0;
  margin-bottom: 10px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin: 10px 0;
}

.pagination a {
  text-decoration: none;
  color: var(--clay);
}

@media (min-width: 768px) {
  .content-column {
    flex: 0 0 80%;
    max-width: 80%;
  }
}

@media (min-width: 992px) {
  .content-column {
    flex: 0 0 84%;
    max-width: 84%;
  }
}

/* ----- Mobile ----- */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  .content-column-content {
    padding: 1rem;
  }

  .content-column,
  .homepage-content-column {
    padding-top: 1rem;
  }

  .homepage-content {
    padding-top: 0;
  }

  .site-hero {
    padding: 0.2rem 0 0.85rem;
    margin-bottom: 1rem;
  }

  .site-hero h1 {
    font-size: 1.5rem;
  }

  .site-hero .tagline {
    font-size: 0.9rem;
  }

  .homepage-content .homepage-brand-hero {
    display: none;
  }

  .homepage-directory-context {
    display: none;
  }

  .homepage-content .city-tab-btn {
    flex: 0 0 auto;
    padding: 0.27rem 0.62rem;
    font-size: 0.72rem;
    border-width: 1px;
  }

  .homepage-stat-chips {
    margin: 0 0 0.35rem;
    gap: 0.3rem;
  }

  .stat-chip {
    padding: 0.18rem 0.58rem;
    font-size: 0.68rem;
  }

  .homepage-signup-prompt button {
    padding: 0.34rem 0.9rem;
    font-size: 0.72rem;
  }

  .home-city-bar {
    margin: 0 0 0.65rem;
    width: 100%;
  }

  .homepage-signup-prompt {
    gap: 0.45rem;
    margin: 0 0 0.55rem;
    font-size: 0.68rem;
  }

  .event-search-shell {
    margin-top: -0.25rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
  }

  .homepage-content .event-search-shell {
    min-height: 0;
    margin: 0 0 0.65rem;
    padding: 0;
    border-bottom: 0;
  }

  .event-search-box {
    max-width: none;
    min-height: 2.8rem;
  }

  .homepage-content .event-search-box {
    min-height: 2.5rem;
  }

  .homepage-content .event-search-box .fa {
    margin-left: 0.75rem;
    font-size: 0.85rem;
  }

  .event-search-box input {
    font-size: 0.92rem;
    padding-right: 2.4rem;
  }

  .homepage-content .event-search-box input {
    padding: 0.55rem 2.2rem 0.55rem 0.55rem;
    font-size: 0.84rem;
  }

  .search-results-panel {
    max-width: none;
  }

  /* Filter bar wraps to two rows on mobile */
  .filter-bar {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .filter-btn {
    flex-shrink: 0;
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
  }

  .tonight-section {
    padding: 0.9rem 1rem;
  }

  .homepage-content .mode-filter {
    margin-bottom: 0.8rem;
  }

  .homepage-content .mode-btn {
    padding: 0.26rem 0.66rem;
    font-size: 0.74rem;
  }

  .homepage-tonight-section {
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.8rem;
    border-radius: 0.55rem;
  }

  .tonight-summary {
    font-size: 0.82rem;
  }

  .homepage-event-link small {
    font-size: 0.58rem;
  }

  .homepage-event-meta {
    font-size: 0.66rem;
  }

  /* Full-width cards on phones */
  .event-grid .col-12 {
    margin-bottom: 1rem;
  }

  .event-card {
    padding: 1rem;
  }

  /* Bigger tap target for more info link */
  .event-more-link {
    padding-top: 0.25rem;
    font-size: 0.85rem;
  }

  .quick-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-city-label {
    font-size: 0.65rem;
  }

  .city-tab-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .submit-form-wrap {
    padding: 1.25rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }

  .submit-form-wrap .form-control {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .day-checkboxes {
    gap: 0.4rem;
  }

  .day-check-label {
    font-size: 0.82rem;
    padding: 0.28rem 0.6rem;
  }
}

/* =============================================
   THEME OVERRIDE — swap teal (#379392 / #60c5ba)
   for Go Today red (var(--clay)) everywhere
   ============================================= */

/* General links */
a { color: var(--clay); }
a:hover, a:focus { color: var(--clay-deep); }

/* Buttons — primary */
.btn-primary {
  background-color: var(--clay);
  border-color: var(--clay);
}
.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  background-color: var(--clay-deep);
  border-color: var(--clay-deep);
}
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(192, 57, 43, 0.4);
}
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: var(--clay);
  border-color: var(--clay);
}

/* Buttons — outline primary */
.btn-outline-primary {
  color: var(--clay);
  border-color: var(--clay);
}
.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: var(--clay);
  border-color: var(--clay);
  color: #fff;
}
.btn-outline-primary:focus,
.btn-outline-primary.focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(192, 57, 43, 0.4);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled { color: var(--clay); }

/* Text / bg / border utilities */
.text-primary,
a.text-primary:hover,
a.text-primary:focus { color: var(--clay) !important; }

.bg-primary,
a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus { background-color: var(--clay) !important; }

.border-primary { border-color: var(--clay) !important; }

/* Badges */
.badge-primary { background-color: var(--clay); }
.badge-primary[href]:hover,
.badge-primary[href]:focus { background-color: var(--clay-deep); }

/* Blockquote left border */
.blockquote { border-left-color: var(--clay); }

/* Misc theme classes */
.required,
.accent { color: var(--clay); }
.icon { border-color: var(--clay); color: var(--clay); }

/* Pagination (Bootstrap's page-link) */
.page-item.active .page-link {
  background-color: var(--clay);
  border-color: var(--clay);
}
.page-link { color: var(--clay); }
.page-link:hover, .page-link:focus { color: var(--clay-deep); }

/* Form focus rings */
.form-control:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 0.2rem rgba(192, 57, 43, 0.2);
}

/* Section background (secondary) */
section.background-secondary { background: var(--clay); border-color: var(--clay-deep); }

/* Nav pills active */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--clay);
}

/* Dropdown active item */
.dropdown-item.active,
.dropdown-item:active { background-color: var(--clay); }

.go-auth-nav-button {
  position: fixed;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0.45rem 1.35rem rgba(36, 31, 23, 0.12);
  cursor: pointer;
}

.go-auth-nav-button svg {
  width: 1.35rem;
  height: 1.35rem;
}

.go-auth-nav-button:hover,
.go-auth-nav-button:focus {
  border-color: #d8c1bd;
  color: var(--clay);
  background: #fff8f6;
  outline: none;
}

.go-auth-nav-button[data-auth-state="signed-in"] {
  color: #fff;
  border-color: var(--clay);
  background: var(--clay);
}

.go-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.go-auth-modal[hidden] {
  display: none;
}

.go-auth-modal__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(36, 31, 23, 0.42);
  cursor: default;
}

.go-auth-modal__dialog {
  position: relative;
  width: min(36rem, 100%);
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  padding: 1.35rem;
  border: 1px solid #ececec;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1.1rem 3rem rgba(36, 31, 23, 0.22);
  opacity: 0;
  transform: translateY(0.3rem);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.go-auth-modal.is-visible .go-auth-modal__dialog {
  opacity: 1;
  transform: translateY(0);
}

.go-auth-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  border: 0;
  background: transparent;
  color: #999;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.go-auth-modal__close:hover,
.go-auth-modal__close:focus {
  color: var(--ink);
  outline: none;
}

.go-auth-modal__title {
  margin: 0 2rem 1rem 0;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.go-auth-modal__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1rem;
  padding: 0.2rem;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #f7f7f7;
}

.go-auth-modal__tab {
  min-height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #777;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.go-auth-modal__tab.is-active {
  background: #fff;
  color: var(--clay);
  box-shadow: 0 0.2rem 0.55rem rgba(36, 31, 23, 0.08);
}

.go-auth-modal__oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid #e4e4e4;
  border-radius: 0.45rem;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
}

.go-auth-modal__oauth:hover,
.go-auth-modal__oauth:focus {
  border-color: #d8c1bd;
  background: #fff8f6;
  outline: none;
}

.go-auth-google-icon,
.go-auth-google-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.go-auth-modal__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
  color: #999;
  font-size: 0.85rem;
  font-weight: 700;
}

.go-auth-modal__divider::before,
.go-auth-modal__divider::after {
  content: "";
  height: 1px;
  background: #e6e6e6;
}

.go-auth-modal__message {
  min-height: 1rem;
  margin: 0 0 0.65rem;
  color: #777;
  font-size: 0.82rem;
  font-weight: 600;
}

.go-auth-modal__message[data-state="error"] {
  color: #b43125;
}

.go-auth-modal__message[data-state="success"] {
  color: #247a3d;
}

.go-auth-modal__message[data-state="warn"] {
  color: #9a6a14;
}

.go-auth-form__group {
  margin-bottom: 0.8rem;
}

.go-auth-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.go-auth-form__label {
  display: block;
  margin-bottom: 0.35rem;
  color: #555;
  font-size: 0.86rem;
  font-weight: 800;
}

.go-auth-form__input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #dddddd;
  border-radius: 0.45rem;
  background: #fff;
  color: #222;
  font-size: 0.95rem;
}

.go-auth-form__input:disabled {
  background: #f8f8f8;
  color: #333;
  opacity: 1;
}

.go-auth-form__input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 0.12rem rgba(192, 57, 43, 0.12);
  outline: none;
}

.go-auth-phone-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.35fr) minmax(0, 1fr);
  gap: 0.65rem;
}

.go-auth-country-code {
  cursor: pointer;
}

.go-auth-country-code:disabled {
  cursor: default;
}

.go-auth-form__submit {
  width: 100%;
  min-height: 2.85rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--clay);
  color: #fff;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
}

.go-auth-form__submit:hover,
.go-auth-form__submit:focus {
  background: var(--clay-deep);
  outline: none;
}

.go-auth-form__submit:disabled,
.go-auth-modal__oauth:disabled {
  cursor: wait;
  opacity: 0.65;
}

.go-auth-form__submit--secondary {
  border: 1px solid #ead7d4;
  background: #fff8f6;
  color: var(--clay-deep);
}

.go-auth-form__submit--secondary:hover,
.go-auth-form__submit--secondary:focus {
  background: #f8ebe8;
  color: #8f2b21;
}

.go-auth-link-button {
  display: block;
  margin: 0.65rem 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.go-auth-link-button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.go-auth-danger-link {
  display: block;
  margin: 0.7rem 0 0 auto;
  border: 0;
  background: transparent;
  color: #9f2b21;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
}

.go-auth-danger-link:hover,
.go-auth-danger-link:focus {
  color: #6f1f19;
  outline: none;
  text-decoration: underline;
}

.go-auth-danger-link:disabled {
  cursor: wait;
  opacity: 0.6;
}

.go-auth-danger-panel {
  margin-top: 1rem;
  padding: 0.9rem;
  border: 1px solid #f0c8c2;
  border-radius: 0.45rem;
  background: #fff8f6;
}

.go-auth-danger-copy {
  margin: 0 0 0.75rem;
  color: #63332d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.go-auth-delete-confirm__input {
  text-transform: uppercase;
}

.go-auth-danger-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.go-auth-delete-confirm__cancel {
  flex: 0 0 auto;
  margin: 0;
}

.go-auth-danger-button {
  flex: 1 1 auto;
  min-height: 2.6rem;
  border: 0;
  border-radius: 0.45rem;
  background: #9f2b21;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
}

.go-auth-danger-button:hover,
.go-auth-danger-button:focus {
  background: #7f221a;
  outline: none;
}

.go-auth-danger-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.go-auth-link-button:hover,
.go-auth-link-button:focus {
  color: var(--clay-deep);
  outline: none;
}

.go-auth-panel-copy {
  margin: 0 0 0.9rem;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.45;
}

.go-auth-account-field {
  margin-bottom: 0.9rem;
}

.go-auth-account-email {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.45rem;
  background: var(--paper-raised);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.go-auth-profile-form {
  margin-bottom: 0.95rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid #eeeeee;
}

.go-auth-account .go-auth-account-field {
  margin-bottom: 0.65rem;
}

.go-auth-account .go-auth-account-section__title {
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
}

.go-auth-account .go-auth-account-email {
  padding: 0.45rem 0.6rem;
  font-size: 0.8rem;
}

.go-auth-account .go-auth-profile-form {
  margin-bottom: 0.7rem;
  padding-bottom: 0.7rem;
}

.go-auth-account .go-auth-form-row,
.go-auth-account .go-auth-phone-row {
  gap: 0.45rem;
}

.go-auth-account .go-auth-phone-row {
  grid-template-columns: minmax(5.5rem, 0.7fr) minmax(0, 1.3fr);
}

.go-auth-account .go-auth-form__group {
  margin-bottom: 0.5rem;
}

.go-auth-account .go-auth-form__label {
  margin-bottom: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  color: var(--ink-faint);
}

.go-auth-account .go-auth-form__input {
  min-height: 2.2rem;
  padding: 0.4rem 0.55rem;
  font-size: 0.82rem;
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 1.3;
}

.go-auth-account .go-auth-form__submit {
  min-height: 2.25rem;
  margin-top: 0;
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
}

.go-auth-profile-form[data-editing="false"] .go-auth-form__input {
  border-color: #e8e8e8;
}

.go-auth-account-meta {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  font-size: 0.85rem;
  color: #555;
}

.go-auth-account-meta__label {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--ink);
}

.go-auth-account-city-name {
  min-width: 0;
  overflow-wrap: anywhere;
}

.go-auth-inline-edit {
  flex: 0 0 auto;
  margin-left: 0.15rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.go-auth-inline-edit:hover,
.go-auth-inline-edit:focus {
  color: var(--clay-deep);
  outline: none;
}

.go-auth-account-section {
  margin: 0.95rem 0 1rem;
}

.go-auth-account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 0 22px;
  padding: 4px;
  background: var(--wash);
  border-radius: 11px;
}

.go-auth-account-tab {
  position: relative;
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-faint);
  font: 600 14px/1.2 var(--font-ui);
}

.go-auth-account-tab.is-active {
  background: var(--paper-raised);
  color: var(--ink);
  box-shadow: 0 1px 3px rgba(31, 37, 35, .12);
}

.go-auth-account-tab[data-count]:not([data-count=""])::after {
  content: attr(data-count);
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  margin-left: 6px;
  padding: 0 4px;
  place-items: center;
  border-radius: 9px;
  background: var(--clay);
  color: #fff;
  font-size: 11px;
}

.go-tab-you { position: relative; }

.go-notification-badge {
  position: absolute;
  top: 4px;
  left: calc(50% + 6px);
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border: 2px solid var(--paper-raised);
  border-radius: 10px;
  background: var(--clay);
  color: #fff;
  font: 700 10px/13px var(--font-ui);
  text-align: center;
}

.go-notification-list { display: grid; gap: 8px; }

.go-auth-updates {
  display: grid;
  gap: 0;
}

.go-update-section {
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}

.go-update-section:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.go-update-section__title {
  margin: 0 0 10px;
  color: var(--ink);
  font: 900 13px/1.3 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-update-event-list {
  display: grid;
  gap: 9px;
}

.go-update-event {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--paper-raised);
  color: var(--ink);
  text-decoration: none;
}

.go-update-event--featured {
  padding: 17px;
  border-color: rgba(184, 66, 43, .28);
  background: linear-gradient(135deg, rgba(184, 66, 43, .09), rgba(255, 255, 255, .72));
}

.go-update-event:hover,
.go-update-event:focus {
  border-color: var(--clay);
  color: var(--ink);
  outline: none;
}

.go-update-event__eyebrow {
  color: var(--clay-deep);
  font: 900 11px/1.3 var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-update-event__title {
  overflow-wrap: anywhere;
  font: 700 16px/1.3 var(--font-display);
}

.go-update-event--featured .go-update-event__title {
  font-size: 20px;
}

.go-update-event__meta {
  color: var(--ink-soft);
  font: 500 13px/1.45 var(--font-ui);
}

.go-update-event__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
  color: var(--clay-deep);
  font: 800 12px/1.35 var(--font-ui);
}

.go-update-empty {
  margin: 0;
  color: var(--ink-faint);
  font: 600 13px/1.5 var(--font-ui);
}

.go-notification-item {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr);
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  background: var(--paper-raised);
  color: var(--ink);
  text-decoration: none;
}

.go-notification-item:hover,
.go-notification-item:focus { border-color: var(--clay); color: var(--ink); }
.go-notification-item.is-unread { background: var(--wash); }
.go-notification-item__dot { width: 7px; height: 7px; margin-top: 5px; border-radius: 50%; background: transparent; }
.go-notification-item.is-unread .go-notification-item__dot { background: var(--clay); }
.go-notification-item__content { display: grid; gap: 3px; min-width: 0; }
.go-notification-item__title { font: 600 14px/1.35 var(--font-ui); }
.go-notification-item__body { color: var(--ink-soft); font: 400 13px/1.45 var(--font-ui); }
.go-notification-item__time { color: var(--ink-faint); font: 400 11px/1.4 var(--font-ui); }
.go-notification-status { min-height: 18px; color: var(--ink-soft); font-size: 13px; }

.go-auth-account-preferences {
  padding-top: 0.85rem;
  border-top: 1px solid #eeeeee;
}

.go-auth-account-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.65rem;
}

.go-auth-account-section__title {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-auth-account-section__header .go-auth-account-section__title {
  margin-bottom: 0;
}

.go-auth-account-preference-list {
  margin-bottom: 0;
}

.go-auth-saved-events__list {
  display: grid;
  gap: 0.55rem;
}

.go-auth-saved-event {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.7rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.45rem;
  background: #fff;
}

.go-auth-saved-event__text {
  min-width: 0;
}

.go-auth-saved-event__title {
  display: inline-block;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
}

.go-auth-saved-event__title:hover,
.go-auth-saved-event__title:focus {
  color: var(--clay);
  text-decoration: none;
}

.go-auth-saved-event__meta {
  margin: 0.28rem 0 0;
  color: #666;
  font-size: 0.78rem;
  line-height: 1.35;
}

.go-auth-saved-event__category {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--clay-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.go-auth-saved-event__remove {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--clay);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.go-auth-saved-event__remove:hover,
.go-auth-saved-event__remove:focus {
  color: var(--clay-deep);
  outline: none;
}

.go-auth-saved-event__remove:disabled {
  cursor: wait;
  opacity: 0.6;
}

.go-auth-saved-events__empty,
.go-auth-saved-events__status {
  margin: 0;
  color: #777;
  font-size: 0.84rem;
  font-weight: 700;
}

.go-auth-saved-events__status--error {
  color: #b42318;
}

.saved-events-page {
  max-width: 68rem;
}

.saved-events-page__panel {
  max-width: 56rem;
  padding-top: 0;
}

.saved-events-page .site-hero {
  margin-bottom: 0.4rem;
}

.saved-events-page__item {
  padding: 1rem 1.1rem;
}

.saved-events-page__item .go-auth-saved-event__title {
  font-size: 1rem;
}

.saved-events-page__signin,
.saved-events-page__empty {
  padding: 1.2rem;
  border: 1px solid #e8e8e8;
  border-radius: 0.65rem;
  background: #fafafa;
}

.saved-events-page__signin p,
.saved-events-page__empty p {
  margin: 0 0 0.85rem;
  color: #666;
}

.saved-events-page__empty p {
  margin-bottom: 0;
}

.saved-events-page__signin-button {
  width: auto;
  min-width: 9rem;
  padding: 0.65rem 1rem;
}

@media (max-width: 575.98px) {
  .saved-events-page__item {
    padding: 0.85rem;
  }

  .saved-events-page__item .go-auth-saved-event__remove {
    padding: 0.2rem 0;
  }
}

.go-auth-tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: #fff8f6;
  color: var(--clay-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.go-auth-tag--more {
  border-color: #ead7d4;
  background: #fff;
  color: #7d261d;
}

.go-auth-form__label--spaced {
  margin-top: 0.9rem;
}

.go-auth-preference-search {
  margin-bottom: 0.85rem;
}

.go-auth-selected-preferences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: -0.1rem 0 0.8rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eeeeee;
}

.go-auth-selected-preferences[hidden] {
  display: none;
}

.go-auth-selected-chip {
  min-height: 1.85rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--clay);
  border-radius: 999px;
  background: #fff8f6;
  color: var(--clay-deep);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
}

.go-auth-selected-chip:hover,
.go-auth-selected-chip:focus {
  background: #f8ebe8;
  outline: none;
}

.go-auth-selected-chip::after {
  content: " x";
  color: #7d261d;
}

.go-auth-preference-list {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 0.95rem;
}

.go-auth-preference-group[hidden],
.go-auth-preference-option[hidden],
.go-auth-preference-empty[hidden] {
  display: none;
}

.go-auth-preference-group__title {
  margin: 0 0 0.45rem;
  color: #777;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.go-auth-preference-empty {
  margin: -0.25rem 0 0.95rem;
  color: #777;
  font-size: 0.86rem;
  font-weight: 700;
}

.go-auth-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.go-auth-preference-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0;
}

.go-auth-chip {
  margin: 0;
}

.go-auth-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.go-auth-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid #dedede;
  border-radius: 999px;
  color: #555;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.go-auth-preference-option span {
  width: 100%;
  border-radius: 0.45rem;
  line-height: 1.2;
}

.go-auth-chip input:checked + span {
  border-color: var(--clay);
  background: #fff8f6;
  color: var(--clay-deep);
}

.go-auth-chip input:focus + span {
  box-shadow: 0 0 0 0.12rem rgba(192, 57, 43, 0.12);
}

@media (max-width: 767.98px) {
  body.go-auth-page-open {
    overflow: hidden;
  }

  .go-auth-modal.go-auth-modal--page {
    inset: 0 0 calc(var(--tabbar-h) + env(safe-area-inset-bottom)) 0;
    z-index: 1044;
    align-items: stretch;
    padding: 0;
    background: var(--paper);
  }

  .go-auth-modal--page .go-auth-modal__overlay {
    display: none;
  }

  .go-auth-modal--page .go-auth-modal__dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    padding: calc(1rem + env(safe-area-inset-top)) 1rem 1.5rem;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
    transform: none;
  }

  .go-auth-modal--page.is-visible .go-auth-modal__dialog {
    transform: none;
  }

  .go-auth-modal--page .go-auth-modal__close {
    top: calc(1rem + env(safe-area-inset-top));
    left: 0.85rem;
    right: auto;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    color: var(--ink);
    font-size: 0;
  }

  .go-auth-modal--page .go-auth-modal__close::before {
    content: "\2190";
    font-size: 1.45rem;
    line-height: 1;
  }

  .go-auth-modal--page .go-auth-modal__title {
    min-height: 2.25rem;
    margin: 0 2.75rem 1.35rem;
    font-size: 1.5rem;
    line-height: 2.25rem;
    text-align: center;
  }

  body.go-auth-page-open .go-tabbar .go-tab.is-active {
    color: var(--ink-faint);
    font-weight: 500;
  }

  body.go-auth-page-open .go-tabbar .go-tab.is-active::after {
    display: none;
  }

  body.go-auth-page-open .go-tabbar .go-tab-you {
    color: var(--ink);
    font-weight: 600;
  }

  body.go-auth-page-open .go-tabbar .go-tab-you::after {
    content: "";
    width: 4px;
    height: 4px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--clay);
  }

  .go-auth-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .go-auth-phone-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .go-auth-account .go-auth-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .go-auth-account .go-auth-phone-row {
    grid-template-columns: minmax(5.5rem, 0.7fr) minmax(0, 1.3fr);
    gap: 0.45rem;
  }

  .go-auth-danger-actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 0.55rem;
  }

  .go-auth-delete-confirm__cancel,
  .go-auth-danger-button {
    width: 100%;
  }

  .go-auth-preference-grid {
    grid-template-columns: 1fr;
  }

  .go-auth-nav-button {
    top: 0.9rem;
    right: 0.9rem;
    width: 2.45rem;
    height: 2.45rem;
  }

  .go-auth-nav-button svg {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 767.98px) {

  body.event-modal-open .mobile-menu-toggle,
  body.event-modal-open .go-auth-nav-button {
    display: none;
  }

  .signup-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .signup-cta-button {
    width: 100%;
  }
}

/* Cross-city hub pages */
.hub-hero {
  padding-bottom: 0.2rem;
  margin-bottom: 0.5rem;
}

.hub-intro {
  margin: 0 0 0.75rem;
  max-width: 46rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


















.wc-area-strip {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
  scrollbar-width: thin;
}

.wc-area-strip[hidden] {
  display: none;
}

.wc-day-pill {
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  cursor: pointer;
  transition: all 0.15s;
  line-height: 1.4;
  white-space: nowrap;
}

.wc-day-pill:hover {
  border-color: var(--clay);
  color: var(--clay);
}

.wc-day-pill.active {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.wc-featured-section {
  margin-bottom: 0.85rem;
}

.wc-featured-row {
  display: block;
}

.wc-hidden {
  display: none !important;
}

@media (max-width: 520px) {


}

/* Neighborhood/area filter bar on standard directory pages (sits under the day
   filter). Reuses .filter-btn styling; just needs a little separation. */
.area-filter-bar {
  margin-top: -0.35rem;
  margin-bottom: 1rem;
}

/* Cross-city hub "refine" filters (Date Ideas): segmented pill groups, each a
   question, sitting between the city selector and the day strip. Reuses
   .filter-btn styling. */
.hub-refine {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 0.9rem;
  margin: 0.1rem 0 0.9rem;
}

.hub-refine-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.hub-refine-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  flex: 1 1 auto;
}

.hub-refine-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.hub-refine-q {
  font-size: 0.72rem;
  font-weight: 700;
  color: #444;
  margin-right: 0.1rem;
}

.hub-refine-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.hub-refine .refine-btn {
  font-size: 0.74rem;
  padding: 0.22rem 0.7rem;
}

.hub-refine-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: auto;
}

.hub-refine-count {
  font-size: 0.74rem;
  font-weight: 600;
  color: #888;
}

.hub-refine-clear {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--clay);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .hub-refine-groups {
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
  }
  .hub-refine-group {
    width: 100%;
  }
  .hub-refine-meta {
    margin-left: 0;
  }
}




















@media (max-width: 520px) {

}


/* iOS Safari auto-zooms the page when a focused form field's font-size is
   under 16px — and stays zoomed after blur, cropping the UI. Keeping every
   text-entry control at 16px on phone-size screens stops the zoom from ever
   triggering. !important is deliberate: it must beat every classed field
   selector above (e.g. .event-modal-review-text at 0.86rem). */
@media (max-width: 767px) {
  input[type="text"],
  input[type="search"],
  input[type="email"],
  input[type="password"],
  input[type="url"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* The organizer form is a long, dense workflow. Its 16px safeguard made
     labels, placeholders, and select values visually dominate on phones, so
     this surface deliberately uses the compact editorial type scale. */
  .submit-form-wrap {
    padding: 1rem;
  }

  .submit-form-wrap .form-group {
    margin-bottom: 0.85rem;
  }

  .submit-form-wrap label {
    margin-bottom: 0.28rem;
    font-size: 0.7rem;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: 0.045em;
  }

  .submit-form-wrap .form-control {
    min-height: 42px;
    padding: 0.5rem 0.65rem;
    font-size: 0.8rem !important;
    line-height: 1.3;
  }

  .submit-form-wrap select.form-control {
    padding-right: 2rem;
    font-size: 0.82rem !important;
  }

  .submit-form-wrap .form-control::placeholder {
    font-size: 0.78rem;
  }

  .submit-form-wrap textarea.form-control {
    min-height: 88px;
  }

  .submit-form-wrap .form-section-label {
    margin: 1.15rem 0 0.78rem;
    padding-bottom: 0.42rem;
    font-size: 0.65rem;
    letter-spacing: 0.075em;
  }

  .submit-form-wrap .day-check-label {
    font-size: 0.7rem;
    letter-spacing: 0;
  }
}

/* ===== Editorial chrome: masthead, page container, tab bar, footer ===== */

.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  padding: 0.9rem 1rem 0.7rem;
}

.masthead-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.masthead-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.masthead-brand-mark {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  border-radius: 0.34rem;
}

.masthead-brand:hover,
.masthead-brand:focus {
  color: var(--ink);
  text-decoration: none;
}

.masthead-brand .brand-verb {
  color: var(--clay);
}

.masthead-rule {
  width: 44px;
  height: 2px;
  background: var(--clay);
  margin: 0.4rem auto;
}

.masthead-dateline {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-faint);
}

.masthead-dateline .masthead-city {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

.masthead-dateline .masthead-city:hover,
.masthead-dateline .masthead-city:focus {
  color: var(--clay);
  border-color: var(--clay);
  text-decoration: none;
}

.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 15px 2rem;
}

.go-tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1045;
  display: flex;
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  padding: 0.3rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom));
}

.go-tabbar .go-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border: 0;
  background: transparent;
  color: var(--ink-faint);
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
  cursor: pointer;
}

.go-tabbar .go-tab .fa {
  font-size: 1.25rem;
}

.go-tabbar .go-tab.is-active {
  color: var(--ink);
  font-weight: 600;
}

.go-tabbar .go-tab.is-active::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
  margin-top: 2px;
}

.go-tabbar .go-tab:hover,
.go-tabbar .go-tab:focus {
  color: var(--ink);
  text-decoration: none;
}

@media (min-width: 768px) {
  .go-tabbar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom));
  }
}

.footer-directory {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.8rem 15px 1.4rem;
}

.footer-brand-link {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.footer-tagline {
  color: var(--ink-faint);
  font-size: 0.78rem;
  margin: 0.15rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.2rem;
}

/* Wide screens: the stacks dissolve so their sections sit as three grid
   columns (Events | More | Language via order). */
.footer-col-stack {
  display: contents;
}

.footer-col--lang {
  order: 1;
}

/* Mobile: two balanced columns — guides + languages stacked on the left,
   the longer More list on the right. */
@media (max-width: 575.98px) {
  .footer-grid {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .footer-col-stack {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1.2rem;
    min-width: 0;
  }
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--clay);
  margin: 0 0 0.5rem;
}

/* Neutralize the theme's global section padding (style.default.css). */
section.footer-col {
  padding: 0;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 0 0 0.4rem;
}

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-col a:hover,
.footer-col a:focus {
  color: var(--clay);
}

.footer-col a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.footer-copyright {
  border-top: 1px solid var(--hairline);
  margin: 1.4rem 0 0;
  padding-top: 1rem;
  text-align: center;
  color: var(--ink-faint);
  font-size: 0.78rem;
}

.browse-guides,
.browse-cities {
  margin-top: 1.4rem;
  padding: 0;
}

.browse-page-main .site-hero {
  margin-bottom: 0.35rem;
  padding-bottom: 0.45rem;
}

.browse-page-main .event-search-shell {
  margin-bottom: 0.75rem;
  padding-bottom: 0.8rem;
}

.browse-page-main .event-search-controls {
  max-width: 50rem;
}

.browse-page-main .browse-city-bar {
  display: flex;
  width: min(100%, 30rem);
  margin: 0.55rem 0 0;
}

.browse-page-main .browse-city-picker {
  max-width: 50rem;
  margin-top: 0.45rem;
}

/* Standalone /browse: the shared guide banners become bordered cards. */
.browse-guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.6rem;
}

.browse-guide-grid .home-hub-banner {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-raised);
}

/* Region jump-nav: quiet chips that anchor down the directory. */
.browse-region-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
}

.browse-region-nav a {
  padding: 0.26rem 0.72rem;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  background: var(--paper-raised);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.browse-region-nav a:hover,
.browse-region-nav a:focus {
  border-color: var(--ink);
  color: var(--ink);
  text-decoration: none;
}

.browse-region {
  border-bottom: 1px solid var(--hairline);
  padding: 1rem 0 1.1rem;
  scroll-margin-top: 1rem;
}

.browse-region:last-child {
  border-bottom: 0;
}

.browse-region h2 {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.75rem;
}

/* Cities flow into responsive columns so the directory scans vertically
   instead of one long flat list. */
.browse-city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.9rem 1.8rem;
  align-items: start;
}

.browse-city {
  margin: 0;
  min-width: 0;
}

.browse-city-name {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
}

.browse-city-name a {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.browse-city-name a:hover,
.browse-city-name a:focus {
  color: var(--clay);
  text-decoration: none;
}

.browse-city-count {
  color: var(--ink-faint);
  font-size: 0.7rem;
  font-weight: 600;
}

.browse-city-pages {
  margin: 0.15rem 0 0;
  line-height: 1.7;
  font-size: 0.8rem;
}

.browse-city-pages a {
  color: var(--ink-soft);
  text-decoration: none;
  margin-right: 0.6rem;
  white-space: nowrap;
}

.browse-city-pages a:hover,
.browse-city-pages a:focus {
  color: var(--clay);
}

/* City-scoped Browse directory: one category row at a time, using the same
   three-up event tiles as the mode-page grids. */
.browse-category-directory {
  margin-top: 0.8rem;
  padding: 0;
}

.browse-guides + .browse-category-directory {
  margin-top: 1.4rem;
}

.browse-category-title {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
}

/* Editorial static pages: plain-language copy with the same paper rhythm as
   the directory, rather than the legacy Bootstrap article treatment. */
.editorial-static-page .site-hero {
  max-width: 48rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
}

.editorial-prose {
  max-width: 48rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.editorial-prose .lead {
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.5;
}

.editorial-prose h2,
.editorial-prose h5 {
  margin: 1.8rem 0 0.55rem !important;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.editorial-prose p,
.editorial-prose li {
  color: var(--ink-soft);
}

.editorial-prose a {
  font-weight: 600;
}

.editorial-note {
  margin: 0.5rem 0 1.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--clay);
  border-radius: var(--radius-card);
  background: var(--paper-raised);
  color: var(--ink-soft);
}

.editorial-note strong {
  color: var(--clay-deep);
}

@media (max-width: 767.98px) {
  .browse-page-main .site-hero {
    margin-bottom: 0.15rem;
    padding-bottom: 0.25rem;
  }

  .browse-page-main .event-search-shell {
    margin-bottom: 0.5rem;
    padding-bottom: 0.65rem;
  }

  .event-search-controls {
    gap: 0.45rem;
  }

  .event-search-box,
  .event-search-city {
    min-height: 2.55rem;
  }

  .event-search-box input {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .editorial-prose {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .editorial-prose .lead {
    font-size: 1.05rem;
  }
}

.browse-category {
  padding: 1.25rem 0 1.45rem;
  border-top: 1px solid var(--hairline);
}

.browse-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.browse-category-head h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.browse-category-head a {
  flex: 0 0 auto;
  color: var(--clay);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.browse-category-head a:hover,
.browse-category-head a:focus {
  color: var(--clay-deep);
  text-decoration: underline;
}

.browse-category-events .event-item {
  margin-bottom: 0;
}

.browse-category-events .event-card {
  width: 100%;
}

@media (min-width: 768px) {
  .browse-category-events .event-item {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 767.98px) {
  .browse-category-events .event-item:nth-child(n + 2) {
    display: none !important;
  }

  .browse-category-head {
    align-items: center;
  }

  .browse-category-head h3 {
    font-size: 1.05rem;
  }
}

/* Homepage-embedded browse: desktop only — mobile reaches the same content
   through the Browse tab. */
.home-browse {
  display: none;
}

@media (min-width: 768px) {
  .home-browse {
    display: block;
    margin-top: 2.4rem;
    padding: 1.6rem 0 0;
    border-top: 1px solid var(--hairline);
  }

  .home-browse-head h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 0.15rem;
  }

  .home-browse-head p {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin: 0 0 1rem;
  }

  .home-browse .browse-cities {
    margin-top: 1.2rem;
  }
}

/* ===== Editorial directory pages: chips, cards, featured panel ===== */

.filter-bar .filter-btn {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-chip);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.85rem;
}

.filter-bar .filter-btn:hover,
.filter-bar .filter-btn:focus {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff;
}

.filter-bar .filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-ink);
}

.refine-panel {
  margin: 0.35rem 0 0;
}

.refine-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-chip);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.85rem;
  user-select: none;
}

.refine-toggle::-webkit-details-marker {
  display: none;
}

.refine-panel[open] .refine-toggle {
  background: var(--wash);
  border-color: var(--ink);
}

.refine-panel .filter-bar {
  margin-top: 0.5rem;
}

.event-card {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  box-shadow: none;
  padding: 1rem 1.05rem;
}

.event-card .day-badge {
  font-family: var(--font-serif);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clay);
  background: transparent;
  padding: 0;
}

.event-card .event-name {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0.3rem 0 0.35rem;
}

.event-card .event-name a,
.event-card .event-name a:visited {
  color: var(--ink);
}

.event-card .event-name a:hover,
.event-card .event-name a:focus {
  color: var(--clay);
}

.event-card .event-time,
.event-card .event-date,
.event-card .event-venue {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-bottom: 0.18rem;
}

.event-card .event-time .fa,
.event-card .event-date .fa,
.event-card .event-venue .fa {
  color: var(--ink-faint);
}

.event-card .event-description {
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.5;
}

.event-card .event-tags {
  margin: 0.3rem 0 0.4rem;
}

.event-card .event-tags span {
  background: var(--wash);
  border: 0;
  border-radius: var(--radius-chip);
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.16rem 0.55rem;
}

.event-card .status-badge {
  background: var(--wash);
  color: var(--clay-deep);
  border-radius: var(--radius-chip);
  font-size: 0.68rem;
  font-weight: 600;
}

.event-card .venue-map-links,
.event-card .venue-map-links a {
  color: var(--ink-faint);
  font-size: 0.76rem;
}

.tonight-section {
  background: var(--ink);
  border-radius: var(--radius-card);
  color: var(--on-ink);
}

.tonight-section h3 {
  font-family: var(--font-serif);
  color: var(--on-ink);
  letter-spacing: 0.08em;
}

.tonight-section .tonight-summary,
.tonight-section .tonight-summary a {
  color: var(--on-ink);
}

.tonight-section .homepage-event-link:hover,
.tonight-section .homepage-event-link:focus {
  color: #fff;
}

.stat-chip {
  background: var(--wash);
  border: 0;
  border-radius: var(--radius-chip);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.stat-chip strong {
  color: var(--clay-deep);
}

.city-tab-row .city-tab.active,
.city-tabs .city-tab-btn.active {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

.site-hero h1 {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.site-hero .tagline,
.page-intro {
  color: var(--ink-soft);
}

.events-count {
  color: var(--ink-faint) !important;
  font-size: 0.8rem;
}

.submit-cta {
  border-top: 1px solid var(--hairline);
  padding-top: 1rem;
  color: var(--ink-soft);
}

/* ===== Editorial homepage: day toggle, numbered picks, rail ===== */

.home-day-toggle {
  display: flex;
  border: 1px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  margin: 0.9rem 0 0.8rem;
}

.home-day-toggle .home-day-btn {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0;
  cursor: pointer;
}

.home-day-toggle .home-day-btn + .home-day-btn {
  border-left: 1px solid var(--ink);
}

.home-day-toggle .home-day-btn.active {
  background: var(--ink);
  color: var(--on-ink);
}

.city-panel .homepage-tonight-section {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  color: var(--ink);
}

.city-panel .homepage-tonight-section h3 {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--clay);
}

.city-panel .homepage-tonight-section .tonight-summary,
.city-panel .homepage-tonight-section .tonight-summary a {
  color: var(--ink);
}

.city-panel .homepage-summary {
  counter-reset: picks;
}

.city-panel .homepage-summary .homepage-event-link {
  position: relative;
  display: block;
  counter-increment: picks;
  padding: 0.45rem 0 0.45rem 2rem;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
}

.city-panel .homepage-summary .homepage-event-link:last-child {
  border-bottom: 0;
}

.city-panel .homepage-summary .homepage-event-link::before {
  content: counter(picks);
  position: absolute;
  left: 0.3rem;
  top: 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--clay);
}

.city-panel .homepage-summary .homepage-event-link:hover,
.city-panel .homepage-summary .homepage-event-link:focus {
  color: var(--clay-deep);
  background: var(--wash);
}

.city-panel .homepage-summary .homepage-event-link small,
.city-panel .homepage-summary .homepage-event-meta {
  color: var(--ink-faint);
}

.home-columns {
  display: block;
}

.feed-editorial {
  margin-top: 1.25rem;
}

.feed-editorial[hidden] {
  display: none !important;
}

.feed-editorial-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

.feed-editorial-heading p {
  margin: 0;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feed-editorial-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

.feed-editorial-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.feed-editorial-link {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
  overflow: hidden;
  min-height: 5.35rem;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-raised);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.feed-editorial-link img {
  width: 100%;
  height: 100%;
  min-height: 5.35rem;
  object-fit: cover;
}

.feed-editorial-link span {
  padding: 0.7rem 0;
}

.feed-editorial-link .fa {
  flex: 0 0 auto;
  margin-right: 0.75rem;
  color: var(--clay);
}

.feed-editorial-link:hover,
.feed-editorial-link:focus {
  background: var(--wash);
  color: var(--clay-deep);
  text-decoration: none;
}

/* Guide links: one quiet paper card of hairline-separated rows — serif
   title, faint one-line descriptor, soft-tinted icon, clay arrow. */
.home-rail {
  display: block;
  margin-top: 1.4rem;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-raised);
  overflow: hidden;
}

.home-hub-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
}

.home-hub-banner + .home-hub-banner {
  border-top: 1px solid var(--hairline);
}

.home-hub-banner:hover,
.home-hub-banner:focus {
  background: var(--wash);
  color: var(--ink);
  text-decoration: none;
}

.home-hub-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #faeae5;
  color: #8c2f1b;
  font-size: 1rem;
  flex: 0 0 auto;
}

.home-hub-banner--date-ideas .home-hub-icon {
  background: #fde0ea;
  color: #a82a55;
}

.home-hub-banner--visitor .home-hub-icon {
  background: #d8f0e9;
  color: #16745c;
}

.home-hub-text {
  display: grid;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
}

.home-hub-text strong {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.home-hub-text small {
  color: var(--ink-faint);
  font-size: 0.74rem;
  line-height: 1.3;
}

.home-hub-arrow {
  flex: 0 0 auto;
  color: var(--clay);
  font-size: 0.85rem;
  transition: transform 0.15s;
}

.home-hub-banner:hover .home-hub-arrow,
.home-hub-banner:focus .home-hub-arrow {
  transform: translateX(3px);
}

/* Description line: hidden on small screens, revealed on wide screens where
   the featured list runs as a single roomy column with richer rows. */
.homepage-event-desc {
  display: none;
}

@media (min-width: 900px) {
  .city-panel .homepage-summary .homepage-event-link {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .homepage-event-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 0.2rem;
    max-width: 60rem;
    color: var(--ink-soft);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.45;
    white-space: normal;
    text-overflow: unset;
  }

  /* !important outranks the legacy dark-banner rule
     `.tonight-summary strong { color: #fff !important }`. */
  .homepage-event-desc strong {
    color: var(--ink) !important;
    font-weight: 600;
  }
}

@media (min-width: 992px) {
  .home-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--rail-w);
    gap: 26px;
    align-items: start;
  }

  .home-rail {
    margin-top: 0;
    position: sticky;
    top: 1rem;
  }
}

/* ===== Source-driven city guides ===== */

.blog-main {
  width: min(100%, 920px);
  margin-inline: auto;
}

.blog-breadcrumbs {
  display: flex;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  color: var(--ink-faint);
  font-size: 0.75rem;
}

.blog-breadcrumbs a {
  color: var(--ink-soft);
}

.blog-article,
.blog-index-hero {
  max-width: 760px;
  margin-inline: auto;
}

.blog-hero {
  padding: clamp(1.5rem, 5vw, 3.25rem) 0 clamp(1.2rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--hairline);
}

.blog-kicker,
.blog-event-number {
  margin: 0 0 0.6rem;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-hero h1,
.blog-index-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.blog-deck,
.blog-index-hero > p:last-child {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.65;
}

.blog-published {
  margin: 1rem 0 0;
  color: var(--ink-faint);
  font-size: 0.72rem;
}

.blog-hero-image {
  overflow: hidden;
  margin: clamp(1.4rem, 4vw, 2.25rem) 0 0;
  border-radius: var(--radius-card);
  background: var(--wash);
}

.blog-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-event-pick {
  padding: clamp(1.6rem, 5vw, 2.75rem) 0;
  border-bottom: 1px solid var(--hairline);
}

.blog-event-number span {
  margin-left: 0.45rem;
  color: var(--ink-faint);
}

.blog-event-pick h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.blog-event-pick h2 a {
  display: inline;
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
}

.blog-event-pick h2 a:hover,
.blog-event-pick h2 a:focus {
  color: var(--clay-deep);
  text-decoration-color: currentColor;
}

.blog-event-meta {
  margin: 0 0 1rem;
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
}

.blog-event-description {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

.blog-event-source,
.blog-article-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--clay-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.blog-article-footer {
  padding: 1.75rem 0 0;
}

.blog-article-footer p {
  color: var(--ink-faint);
  font-size: 0.78rem;
  line-height: 1.55;
}

.blog-index-hero {
  padding: clamp(2rem, 6vw, 4rem) 0 2rem;
}

.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.blog-index-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  background: var(--paper-raised);
  color: var(--ink);
  text-decoration: none;
}

.blog-index-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-index-card > div {
  padding: 1.15rem 1.25rem 1.25rem;
}

.blog-index-card span,
.blog-index-card strong {
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index-card h2 {
  margin: 0.45rem 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.15;
}

.blog-index-card p {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

.blog-index-card:hover,
.blog-index-card:focus {
  background: var(--wash);
  color: var(--clay-deep);
  text-decoration: none;
}

@media (max-width: 639.98px) {
  .feed-editorial-heading {
    display: block;
  }

  .feed-editorial-heading h2 {
    margin-top: 0.15rem;
  }

  .feed-editorial-links {
    grid-template-columns: 1fr;
  }

  .feed-editorial-link {
    grid-template-columns: 6.75rem minmax(0, 1fr) auto;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }
}






/* Day / area / attribute strips: segmented chips on a raised track, like the
   homepage mode filter. Tracks keep their horizontal scroll on overflow. */
.wc-area-strip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  background: var(--paper-raised);
  scrollbar-width: none;
}

.wc-area-strip::-webkit-scrollbar {
  display: none;
}

.wc-area-strip[hidden] {
  display: none;
}

.wc-day-pill {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  padding: 0.3rem 0.85rem;
  line-height: 1.25;
}

.wc-day-pill:hover,
.wc-day-pill:focus {
  color: var(--ink);
  outline: none;
}

.wc-day-pill.active {
  background: var(--ink);
  color: var(--on-ink);
}

/* Hub refine groups: each pill row becomes the same raised track. */
.hub-refine-pills {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--hairline);
  border-radius: 99px;
  background: var(--paper-raised);
}

.hub-refine .refine-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 99px;
}

.hub-refine .refine-btn:hover,
.hub-refine .refine-btn:focus {
  color: var(--ink);
  background: transparent;
  outline: none;
}

.hub-refine .refine-btn.active {
  background: var(--ink);
  color: var(--on-ink);
}

/* Featured "suggested" panel: paper card with numbered picks, matching the
   homepage featured section instead of the dark banner. */
.tonight-section.wc-featured-section {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
  color: var(--ink);
}

.wc-featured-section h3 {
  color: var(--clay);
  opacity: 1;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.wc-featured-section .tonight-summary {
  color: var(--ink) !important;
  counter-reset: picks;
}

.wc-featured-section .tonight-summary a {
  color: var(--ink);
}

.wc-featured-section .tonight-summary .homepage-event-link {
  position: relative;
  display: block;
  counter-increment: picks;
  padding: 0.45rem 0 0.45rem 2rem;
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  white-space: normal;
}

.wc-featured-section .tonight-summary .homepage-event-link:last-child {
  border-bottom: 0;
}

.wc-featured-section .tonight-summary .homepage-event-link::before {
  content: counter(picks);
  position: absolute;
  left: 0.3rem;
  top: 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--clay);
}

.wc-featured-section .tonight-summary .homepage-event-link:hover,
.wc-featured-section .tonight-summary .homepage-event-link:focus {
  color: var(--clay-deep);
  background: var(--wash);
  opacity: 1;
}

.wc-featured-section .homepage-event-link small {
  display: block;
  margin-top: 2px;
  color: var(--ink-faint);
}

.wc-featured-section .homepage-event-meta {
  display: block;
  margin-top: 2px;
  color: var(--ink-faint);
}

/* ===== Editorial event sheet (mobile bottom sheet, desktop paper card) ===== */

.event-modal-dialog {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
}

.event-modal-handle {
  display: none;
}

@media (max-width: 767.98px) {
  .event-modal {
    inset: 0 0 calc(var(--tabbar-h) + env(safe-area-inset-bottom)) 0;
    align-items: flex-end;
    padding-bottom: 0;
  }

  .event-modal-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - var(--tabbar-h) - env(safe-area-inset-bottom) - 1.25rem);
    max-height: calc(100dvh - var(--tabbar-h) - env(safe-area-inset-bottom) - 1.25rem);
    margin: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: var(--radius-sheet) var(--radius-sheet) 0 0;
    border-bottom: 0;
    box-shadow: var(--shadow-sheet);
    padding-bottom: 1.35rem;
    scroll-padding-bottom: 1.35rem;
    -webkit-overflow-scrolling: touch;
    animation: go-sheet-up 0.22s ease;
  }

  .event-modal-handle {
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--hairline);
    margin: 0 auto 0.8rem;
  }
}

@media (min-width: 768px) {
  .event-modal-dialog {
    width: min(100%, 520px);
  }
}

@keyframes go-sheet-up {
  from { transform: translateY(24px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

.event-modal-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.event-modal-dialog .day-badge {
  font-family: var(--font-serif);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--clay);
  background: transparent;
  padding: 0;
}

.event-modal-detail,
.event-modal-description {
  color: var(--ink-soft);
}

.event-modal-cta {
  background: var(--ink);
  border-radius: 9px;
  color: var(--on-ink);
  font-weight: 600;
}

.event-modal-cta:hover,
.event-modal-cta:focus {
  background: #000;
  color: #fff;
}

.event-modal-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.7rem;
}

.event-modal-icon-btn:hover,
.event-modal-icon-btn:focus {
  border-color: var(--clay);
  color: var(--clay);
}

.event-modal-save[data-saved="true"] {
  border-color: var(--clay);
  color: var(--clay);
}

.event-modal-btn-label {
  display: none;
}

@media (min-width: 520px) {
  .event-modal-actions {
    grid-template-columns: minmax(5rem, 1.25fr) repeat(3, minmax(0, 1fr));
  }

  .event-modal-share-wrap,
  .event-modal-cal-wrap {
    width: auto;
    min-width: 0;
  }

  .event-modal-icon-btn {
    width: 100%;
    height: 100%;
    min-height: 2.65rem;
    padding: 0.5rem 0.45rem;
    line-height: 1.15;
    text-align: center;
  }

  .event-modal-btn-label {
    display: inline;
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

.event-modal-share-menu,
.event-modal-cal-menu {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
}

.event-modal-share-menu button:hover,
.event-modal-cal-menu button:hover {
  background: var(--wash);
}

.event-modal-reviews {
  border-top: 1px solid var(--hairline);
}

.event-modal-reviews h3,
.event-modal-review-form-label {
  font-family: var(--font-serif);
  color: var(--clay);
  letter-spacing: 0.06em;
}

.event-modal-review-stars button.is-selected,
.event-modal-review-stars button:hover,
.event-modal-review-stars button:focus {
  color: var(--amber);
}

.event-modal-review-submit {
  background: var(--ink);
  border-radius: 9px;
}

.event-modal-review-submit:hover,
.event-modal-review-submit:focus {
  background: #000;
}

.event-modal-review-signin,
.event-modal-review-rating {
  color: var(--amber);
}

.event-modal-review-signin {
  color: var(--clay);
}

/* Review prompt: editorial card, clear of the mobile tab bar */
.review-prompt {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  box-shadow: 0 14px 40px rgba(36, 31, 23, 0.16);
}

@media (max-width: 767.98px) {
  .review-prompt {
    bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom) + 0.6rem);
  }
}

.review-prompt-title {
  font-family: var(--font-serif);
  color: var(--ink);
}

.review-prompt-stars button:hover,
.review-prompt-stars button:focus {
  color: var(--amber);
}

.review-prompt-skip,
.review-prompt-meta {
  color: var(--ink-soft);
}

.review-prompt-skip {
  color: var(--clay);
}

/* ===== Editorial hub surfaces ===== */

.wc-day-pill,
.hub-refine-group .refine-btn {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-chip);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
}

.wc-day-pill:hover,
.wc-day-pill:focus,
.hub-refine-group .refine-btn:hover,
.hub-refine-group .refine-btn:focus {
  border-color: var(--ink);
  background: #fff;
  color: var(--ink);
}

.wc-day-pill.active,
.wc-day-pill[aria-pressed="true"],
.hub-refine-group .refine-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-ink);
}








.hub-hero h1 {
  font-family: var(--font-serif);
}

.hub-intro {
  color: var(--ink-soft);
}


#hub-refine-clear {
  color: var(--clay);
}

/* ===== Editorial auth: nav button, modal, onboarding, saved events ===== */

.go-auth-nav-button {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  color: var(--ink);
  box-shadow: none;
}

.go-auth-nav-button:hover,
.go-auth-nav-button:focus {
  border-color: var(--clay);
  color: var(--clay);
}

.go-auth-nav-button[data-auth-state="signed-in"] {
  background: var(--clay);
  border-color: var(--clay);
  color: #fff;
}

@media (max-width: 767.98px) {
  /* The tab bar's You tab owns account entry on mobile; auth.js still
     needs the button in the DOM as the click target it delegates to. */
  .go-auth-nav-button {
    position: fixed;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }
}

.go-auth-modal__dialog {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
}

.go-auth-modal__title {
  font-family: var(--font-serif);
  color: var(--ink);
}

.go-auth-modal__tab {
  color: var(--ink-faint);
  font-weight: 600;
}

.go-auth-modal__tab.is-active {
  color: var(--ink);
  border-color: var(--clay);
}

.go-auth-form__input {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: 9px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0;
}

.go-auth-form__input:focus {
  border-color: var(--clay);
  outline: none;
}

.go-auth-form__submit {
  background: var(--ink);
  border-radius: 9px;
  color: var(--on-ink);
  font-weight: 600;
}

.go-auth-form__submit:hover,
.go-auth-form__submit:focus {
  background: #000;
}

.go-auth-google-button {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  color: var(--ink);
}

.go-auth-link-button {
  color: var(--clay);
}

.go-auth-tag,
.go-auth-selected-chip,
.go-auth-preference-option {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-chip);
  background: #fff;
  color: var(--ink);
}

.go-auth-preference-option[aria-pressed="true"],
.go-auth-selected-chip {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-ink);
}

.saved-events-page__item,
.go-auth-saved-event {
  background: var(--paper-raised);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-card);
}

.go-auth-saved-event__title {
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
}

.go-auth-saved-event__meta,
.go-auth-saved-event__category {
  color: var(--ink-soft);
}

.go-auth-saved-event__remove {
  color: var(--clay);
}

.saved-events-page__signin-button {
  background: var(--ink);
  border-radius: 9px;
}

/* ===== Mode-page navigation + homepage city selector ===== */

.mode-page-nav {
  margin: 0.8rem 0 1rem;
}

.mode-page-nav .browse-guide-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mode-page-nav .home-hub-banner {
  min-width: 0;
  padding: 0.72rem 0.85rem;
}

.directory-intro {
  margin-bottom: 0.65rem;
}

.directory-area-strip {
  margin: 0.1rem 0 0.8rem;
}

.directory-refine {
  margin-top: 0;
}

.directory-featured-section {
  margin-bottom: 1rem;
}

.mode-city-bar {
  margin-top: 0.1rem;
}

.mode-city-picker {
  gap: 0.45rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--hairline);
}

.mode-city-picker .city-tab-btn {
  padding: 0.32rem 0.85rem;
  font-size: 0.78rem;
  line-height: 1.25;
}

/* The generic editorial rules below the original hub styles reintroduced a
   border on every option. Restore the homepage mode-filter contract: one
   outlined track, borderless choices, and one ink-filled active choice. */
.wc-area-strip {
  gap: 2px;
  padding: 3px;
}

.hub-refine-pills {
  flex-wrap: nowrap;
  gap: 2px;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.hub-refine-pills::-webkit-scrollbar {
  display: none;
}

.wc-area-strip .wc-day-pill,
.hub-refine .hub-refine-pills .refine-btn {
  border: 0;
  border-radius: 99px;
  background: transparent;
  box-shadow: none;
  color: var(--ink-soft);
  padding: 0.3rem 0.85rem;
  line-height: 1.25;
}

.wc-area-strip .wc-day-pill:hover,
.wc-area-strip .wc-day-pill:focus,
.hub-refine .hub-refine-pills .refine-btn:hover,
.hub-refine .hub-refine-pills .refine-btn:focus {
  border: 0;
  background: transparent;
  color: var(--ink);
}

.wc-area-strip .wc-day-pill.active,
.wc-area-strip .wc-day-pill[aria-pressed="true"],
.hub-refine .hub-refine-pills .refine-btn.active {
  border: 0;
  background: var(--ink);
  color: var(--on-ink);
}

@media (max-width: 767.98px) {
  .mode-page-nav .browse-guide-grid {
    grid-template-columns: 1fr;
  }

  .mode-city-picker .city-tab-btn {
    flex: 0 0 auto;
    padding: 0.27rem 0.62rem;
    font-size: 0.72rem;
  }

  .home-city-picker {
    max-height: min(64vh, 34rem);
    padding: 0.65rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .browse-page-main .browse-city-picker {
    max-height: calc(min(64vh, 34rem) - var(--tabbar-h) - env(safe-area-inset-bottom));
    scroll-padding-bottom: 0.65rem;
  }

  .city-picker-search {
    position: sticky;
    top: -0.65rem;
    z-index: 2;
    max-width: none;
    margin: -0.65rem -0.65rem 0.75rem;
    padding: 0.65rem;
    background: var(--paper-raised);
  }

  .city-picker-search .fa {
    left: 1.35rem;
  }

  .city-picker-regions {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .city-picker-region {
    padding-top: 0.55rem;
  }

  .home-city-picker .city-tab-btn {
    font-size: 0.7rem;
  }
}

/* ===== Mobile nearby-event scan preview ===== */

.go-nearby-trigger[hidden] {
  display: none !important;
}

body.nearby-scan-open {
  overflow: hidden;
}

.nearby-scan {
  position: fixed;
  inset: 0;
  z-index: 1065;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nearby-scan.is-open {
  pointer-events: auto;
  opacity: 1;
}

.nearby-scan.is-viewing-event {
  z-index: 1049;
}

.nearby-scan-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 20, 14, 0.68);
  backdrop-filter: blur(2px);
}

.nearby-scan-dialog {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: min(82vh, 690px);
  max-height: min(82dvh, 690px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--hairline);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(180, 68, 44, 0.12), transparent 42%),
    var(--paper);
  box-shadow: var(--shadow-sheet);
  padding: 0.55rem 1.1rem calc(1.15rem + env(safe-area-inset-bottom));
  transform: translateY(24px);
  transition: transform 0.24s ease;
  -webkit-overflow-scrolling: touch;
}

.nearby-scan.is-open .nearby-scan-dialog {
  transform: translateY(0);
}

.nearby-scan-handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 0.25rem;
  border-radius: 99px;
  background: var(--hairline);
}

.nearby-scan-close {
  position: absolute;
  top: 0.78rem;
  right: 1rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--wash);
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.nearby-scan-close:hover,
.nearby-scan-close:focus {
  background: var(--hairline);
  color: var(--ink);
}

.event-modal-close.event-modal-back {
  font-size: 1.2rem;
}

.nearby-scan-loading {
  min-height: 455px;
  padding: 3rem 0.5rem 1.5rem;
  text-align: center;
}

.nearby-radar {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 0 auto 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(180, 68, 44, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(rgba(180, 68, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 68, 44, 0.08) 1px, transparent 1px),
    rgba(252, 249, 242, 0.82);
  background-size: 24px 24px;
  box-shadow:
    0 0 0 12px rgba(180, 68, 44, 0.035),
    0 20px 50px rgba(36, 31, 23, 0.12);
}

.nearby-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(180, 68, 44, 0.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.nearby-radar-ring--one {
  width: 58px;
  height: 58px;
}

.nearby-radar-ring--two {
  width: 112px;
  height: 112px;
}

.nearby-radar-ring--three {
  width: 166px;
  height: 166px;
}

.nearby-radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 292deg,
    rgba(180, 68, 44, 0.02) 310deg,
    rgba(180, 68, 44, 0.42) 358deg,
    transparent 360deg
  );
  animation: nearby-radar-spin 1.35s linear infinite;
}

.nearby-radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 4px solid var(--paper);
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 8px 20px rgba(147, 53, 31, 0.28);
  transform: translate(-50%, -50%);
}

.nearby-radar-core-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.nearby-radar-center::after {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(180, 68, 44, 0.42);
  border-radius: 50%;
  animation: nearby-radar-pulse 1.35s ease-out infinite;
}

.nearby-scan-loading h2,
.nearby-scan-results h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.nearby-scan-loading p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.nearby-scan-results {
  padding: 1.2rem 0 0;
}

.nearby-results-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nearby-results-subtitle {
  margin: 0.35rem 0 0.8rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.nearby-results-filters {
  margin-bottom: 0.8rem;
}

.nearby-radius-filter {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.nearby-radius-filter legend,
.nearby-category-group-title {
  margin: 0 0 0.38rem;
  padding: 0;
  color: var(--ink-faint);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nearby-radius-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.nearby-radius-options button {
  min-height: 38px;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  background: var(--paper-raised);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.nearby-radius-options button:hover,
.nearby-radius-options button:focus {
  border-color: rgba(180, 68, 44, 0.45);
  color: var(--clay-deep);
}

.nearby-radius-options button[aria-pressed="true"] {
  border-color: var(--clay);
  background: var(--clay);
  box-shadow: 0 5px 13px rgba(147, 53, 31, 0.2);
  color: #fffaf3;
}

.nearby-category-filter {
  position: relative;
  margin-top: 0.5rem;
}

.nearby-category-trigger {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  background: var(--paper-raised);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.nearby-category-trigger:hover,
.nearby-category-trigger:focus,
.nearby-category-trigger[aria-expanded="true"] {
  border-color: rgba(180, 68, 44, 0.45);
}

.nearby-category-trigger[aria-expanded="true"] .fa-angle-down {
  transform: rotate(180deg);
}

.nearby-category-menu {
  position: absolute;
  z-index: 4;
  top: calc(100% + 0.35rem);
  right: 0;
  left: 0;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: var(--paper-raised);
  box-shadow: 0 18px 40px rgba(36, 31, 23, 0.18);
}

.nearby-category-menu[hidden] {
  display: none !important;
}

.nearby-category-search {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-faint);
}

.nearby-category-search .fa {
  position: absolute;
  left: 0.75rem;
  pointer-events: none;
}

.nearby-category-search input {
  width: 100%;
  min-height: 42px;
  padding: 0.55rem 0.75rem 0.55rem 2rem;
  border: 0;
  border-radius: 11px 11px 0 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.76rem;
}

.nearby-category-search:focus-within {
  box-shadow: inset 0 0 0 2px rgba(180, 68, 44, 0.35);
}

.nearby-category-options {
  max-height: min(34vh, 260px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0.45rem;
  scrollbar-width: thin;
}

.nearby-category-group + .nearby-category-group {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--hairline);
}

.nearby-category-group-title {
  margin: 0.15rem 0.4rem 0.3rem;
  color: var(--clay);
}

.nearby-category-option {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem;
  border-radius: 7px;
  color: var(--ink);
  font-size: 0.74rem;
  cursor: pointer;
}

.nearby-category-option:hover,
.nearby-category-option:focus-within {
  background: var(--wash);
}

.nearby-category-option input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--clay);
}

.nearby-category-option[hidden],
.nearby-category-group[hidden] {
  display: none !important;
}

.nearby-results-list {
  display: grid;
  gap: 0.65rem;
}

.nearby-result-card.homepage-event-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 0.85rem;
  border: 1px solid var(--hairline);
  border-radius: 13px;
  background: var(--paper-raised);
  box-shadow: 0 6px 20px rgba(36, 31, 23, 0.055);
  color: var(--ink);
  text-decoration: none;
}

.nearby-result-card.homepage-event-link:hover,
.nearby-result-card.homepage-event-link:focus {
  border-color: rgba(180, 68, 44, 0.45);
  background: #fffaf1;
  color: var(--ink);
  opacity: 1;
  transform: translateY(-1px);
}

.nearby-result-rank {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--wash);
  color: var(--clay);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

.nearby-result-copy {
  display: block;
  min-width: 0;
}

.nearby-result-eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.22rem;
  color: var(--ink-faint);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nearby-result-distance {
  flex: 0 0 auto;
  color: var(--clay);
  letter-spacing: 0;
  text-transform: none;
}

.nearby-result-title {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nearby-result-meta {
  display: block;
  overflow: hidden;
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nearby-result-chevron {
  color: var(--ink-faint);
  font-size: 1rem;
}

.nearby-results-empty {
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--hairline);
  border-radius: 13px;
  background: var(--paper-raised);
  color: var(--ink-soft);
  text-align: center;
}

.nearby-widen-radius {
  width: 100%;
  min-height: 38px;
  margin-top: 0.65rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(180, 68, 44, 0.3);
  border-radius: 9px;
  background: rgba(180, 68, 44, 0.06);
  color: var(--clay-deep);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.nearby-widen-radius:hover,
.nearby-widen-radius:focus {
  border-color: var(--clay);
  background: rgba(180, 68, 44, 0.1);
}

.nearby-results-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.9rem;
}

.nearby-results-actions {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.nearby-results-range {
  color: var(--ink-faint);
  font-size: 0.68rem;
}

.nearby-scan-again {
  min-height: 42px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: transparent;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.nearby-scan-again:hover,
.nearby-scan-again:focus {
  background: var(--ink);
  color: var(--on-ink);
}

.nearby-scan-again:disabled {
  border-color: var(--hairline);
  color: var(--ink-faint);
  cursor: default;
  opacity: 0.58;
}

.nearby-scan-again:disabled:hover,
.nearby-scan-again:disabled:focus {
  background: transparent;
  color: var(--ink-faint);
}

.nearby-results-footer p {
  margin: 0.65rem 0 0;
  color: var(--ink-faint);
  font-size: 0.64rem;
  text-align: center;
}

.nearby-results-footer .nearby-coordinate-credit {
  margin-top: 0.25rem;
  font-size: 0.58rem;
}

.nearby-coordinate-credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@keyframes nearby-radar-spin {
  to { transform: rotate(360deg); }
}

@keyframes nearby-radar-pulse {
  0% { opacity: 0.9; transform: scale(0.7); }
  100% { opacity: 0; transform: scale(1.65); }
}

@media (max-width: 767.98px) {
  .go-tabbar--with-nearby {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: visible;
  }

  .go-tabbar--with-nearby .go-tab {
    min-width: 0;
  }

  .go-nearby-trigger {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    border: 0;
    background: transparent;
    color: var(--clay);
    font-family: var(--font-ui);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.25rem 0;
    cursor: pointer;
  }

  .go-nearby-orb {
    position: absolute;
    top: -30px;
    left: 50%;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    overflow: visible;
    border: 5px solid var(--paper);
    border-radius: 50%;
    background: var(--clay);
    box-shadow:
      0 0 0 1px rgba(147, 53, 31, 0.16),
      0 9px 24px rgba(147, 53, 31, 0.32);
    color: #fff;
    font-size: 1.45rem;
    transform: translateX(-50%);
  }

  .go-nearby-orb-ring {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
  }

  .go-nearby-core-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
  }

  .go-nearby-label {
    margin-top: 1.62rem;
    white-space: nowrap;
  }

  .go-nearby-trigger:hover,
  .go-nearby-trigger:focus {
    color: var(--clay-deep);
  }

  .go-nearby-trigger:focus .go-nearby-orb {
    outline: 2px solid var(--ink);
    outline-offset: 2px;
  }
}

@media (min-width: 768px) {
  .nearby-scan {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nearby-scan,
  .nearby-scan-dialog,
  .nearby-result-card.homepage-event-link {
    transition: none;
  }

  .nearby-radar-sweep,
  .nearby-radar-center::after {
    animation: none;
  }
}
