/* =========================================================
   2nd Summit — Site Styles (Bootstrap 5.x)
   Cleaned + deduped + Experiences updates
   Fonts expected in HTML:
   - Montserrat (primary)
   - brother-1816 (headline)
   - Optional script font (Pacifico / Great Vibes)
   ========================================================= */

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root{
  --font-sans: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-headline: "brother-1816", serif;
  --font-script: "Pacifico", "Great Vibes", cursive;

  --ink: #111827;
  --ink-2: #374151;
  --muted: #6B7280;

  --paper: #ffffff;
  --page-bg: #ffffff;

  /* Brand-ish accents */
  --teal: #1F8E86;
  --teal-dark: #0F6F68;
  --tan-ui: #efeee8; /* warm tan used for filter UI */

  --feature-green: #4d7c69; /* Move card */
  --feature-gold:  #bd8e3f; /* Discover card */
  --feature-teal:  #0f6672; /* Connect card */

  --radius-lg: 18px;
  --radius-md: 14px;

  --shadow-soft: 0 12px 30px rgba(17,24,39,.10);
  --shadow-soft-2: 0 10px 24px rgba(17,24,39,.12);

  --container-narrow: 920px;

  /* Experiences tokens */
  --border: #e5e7eb;
  --shadow: 0 8px 24px rgba(0,0,0,.06);
  --radius: 14px;
  --gap: 16px;

  --badge-bg: #efeaff;
  --badge-text: #4c1d95;

  --pill-bg: #fdebd2;
  --pill-text: #7a3e00;
}

/* =========================================================
   GLOBAL
   ========================================================= */
@font-face{
  font-family: "HarlowSolidLET";
  src: url("/assets/fonts/Harlow%20Solid%20LET%20Plain1.0.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html, body{ height: 100%; }

body{
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--page-bg);
}

a{ color: inherit; }

.container{
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Override Bootstrap container width */
@media (min-width: 992px){
  .container{ max-width: 960px; }
}

.lead-tight{
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-2);
}

.text-muted-2{ color: var(--muted) !important; }

.section-pad{ padding: 64px 0; }
.section-pad-sm{ padding: 44px 0; }

.container-narrow{ max-width: var(--container-narrow); }

.hr-soft{
  border: 0;
  height: 1px;
  background: rgba(17,24,39,.08);
  margin: 30px 0;
}

/* Screen-reader only utility */
.sr-only{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  font-size: 1em;
  font-weight: 600;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn-2s{
  background-color: #27a290;
  border-color: #27a290;
  color: #fff;
  box-shadow: 0 3px 8px rgba(39, 162, 144, 0.28);
}

.btn-2s:hover,
.btn-2s:focus{
  background-color: #1f8e7d;
  border-color: #1f8e7d;
  color: #fff;
  box-shadow: 0 5px 12px rgba(39, 162, 144, 0.32);
}

.btn-2s:active{
  background-color: #187a6c;
  border-color: #187a6c;
  box-shadow: 0 2px 6px rgba(39, 162, 144, 0.30);
  transform: translateY(1px);
}

/* =========================================================
   HERO (top photo w/ logo + tagline)
   ========================================================= */
.hero{
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: normal;
  color: #fff;
  overflow: hidden;
  background: #0b1220;
}

@media (max-width: 767.98px){
  .hero{ min-height: 330px; }
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.60) 100%);
  z-index: 1;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-inner{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px 16px;
}

@media (max-width: 767.98px){
  .hero-inner{
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.hero-logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-logo img{
  height: 220px;
  width: auto;
}

@media (max-width: 767.98px){
  .hero-logo img{ height: 110px; }
}

.hero-brandname{
  font-weight: 700;
  letter-spacing: .2px;
  font-size: 1.1rem;
  opacity: .95;
}

.hero-tagline{
  font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  letter-spacing: -.02em;
  margin: 0;
  text-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.hero h1{
  font-family: var(--font-headline);
  font-weight: 700;
  color: #ece8cf;
}

/* =========================================================
   INTRO COPY
   ========================================================= */
.intro{ text-align: center; }

.intro p{
  margin: 0 auto 14px;
  max-width: var(--container-narrow);
}

.intro p:last-child{ margin-bottom: 0; }

/* =========================================================
   FEATURE CARDS (Move / Discover / Connect)
   ========================================================= */
.features{ padding-top: 18px; }

.feature-card{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17,24,39,.06);
  background: #fff;
}

.feature-row{
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 230px;
}

.feature-media{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-body{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  color: rgba(255,255,255,.90);
}

.feature-title{
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 6px;
  letter-spacing: -.01em;
  color: inherit;
}

.feature-text{
  margin: 0;
  line-height: 1.55;
  font-size: .95rem;
  color: rgba(255,255,255,.90);
}

.feature-mark{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-bottom: 10px;
}

.feature-mark img{
  height: 36px;
  width: auto;
  display: block;
}

.feature-icon{
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  margin-left: auto;
}

.feature-move .feature-body{ background: var(--feature-green); }
.feature-discover .feature-body{ background: var(--feature-gold); }
.feature-connect .feature-body{ background: var(--feature-teal); }

.feature-stack{
  display: grid;
  gap: 16px;
}

@media (max-width: 767.98px){
  .feature-row{ grid-template-columns: 1fr; }
  .feature-media{ min-height: 280px; }
}

/* =========================================================
   EMAIL CAPTURE
   ========================================================= */
.updates{ text-align: center; }

.updates h2{
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.updates p{
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--ink-2);
}

.updates .fineprint{
  margin-top: 10px;
  font-size: .9rem;
  color: var(--muted);
}

.updates .btn-wrap{ margin-top: 10px; }

/* =========================================================
   EVENT SECTION INTRO
   ========================================================= */
.event-intro{ text-align: center; }

.event-intro h2{
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.event-intro p{
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink-2);
}

/* Event hero image block */
.event-hero{
  margin-top: 22px;
  border-radius: 0;
  overflow: hidden;
}

.event-hero img{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   EVENT BANNER
   ========================================================= */
.event-banner{
  background: #0b0b0b;
  color: #fff;
  text-align: center;
  padding: 50px 16px 28px;
  position: relative;
  padding-bottom: 96px;
}

@media (max-width: 767.98px){
  .event-banner{ padding-bottom: 100px; }
}

.event-banner .event-name{
  font-family: "HarlowSolidLET", cursive;
  font-weight: 700;
  font-size: clamp(2.3rem, 4.8vw, 3.2rem);
  letter-spacing: .02em;
  margin: 0 0 6px;
  color: #eeeac3;
}

.event-banner .event-subtitle{
  font-weight: 600;
  font-size: 1.05rem;
  opacity: .95;
  margin: 0 0 4px;
}

.event-banner .event-hosted{
  font-size: .9rem;
  opacity: .75;
  margin: 0;
}

/* =========================================================
   EVENT DETAILS "PAPER" BLOCK
   ========================================================= */
.event-details{
  position: relative;
  padding: 46px 16px 54px;
  text-align: center;
  color: #111;
  overflow: visible;
}

.event-details::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.06));
  z-index: 0;
}

.event-details-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(.9) contrast(.98);
  opacity: .95;
  z-index: -1;
}

.event-details-inner{
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 50px;
}

.event-badge{
  position: absolute;
  left: 50%;
  top: 0;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  z-index: 50;
}

.event-badge img{
  width: 86%;
  height: 86%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.28));
}

@media (max-width: 767.98px){
  .event-badge{
    width: 110px;
    height: 110px;
  }
  .event-badge img{
    width: 88%;
    height: 88%;
  }
}

.event-kv{
  margin-top: 6px;
  display: grid;
  gap: 18px;
}

.event-kv .label{
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.event-kv .value{
  margin: 0;
  color: #111;
}

.event-kv .subvalue{
  margin: 0;
  color: rgba(17,24,39,.75);
  font-size: .95rem;
}

.event-details .btn-2s{ margin-top: 18px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: #0b0b0b;
  color: rgba(255,255,255,.85);
  padding: 38px 0;
  text-align: center;
}

.site-footer img{
  height: 44px;
  width: auto;
  display: inline-block;
  margin-bottom: 10px;
}

.site-footer .url{
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .9;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header .navbar{ min-height: 100px; }

.site-logo{ display: block; }
.site-wordmark{ display: block; }

.navbar-brand{
  text-decoration: none;
}

.navbar-brand-spacer{
  width: 40px; /* balances the toggler width */
}

/* =========================================================
   EXPERIENCES BANNER
   ========================================================= */
.experiences-banner{
  background: #4f7b66; /* brand green */
  color: #fff;
}

.experiences-banner__container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.experiences-banner__inner{
  min-height: 260px;
  padding: 64px 0 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.experiences-banner__title{
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.experiences-banner__art{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.18;
  pointer-events: none;
}

.experiences-banner__art img{
  width: 340px;
  max-width: 38vw;
  height: auto;
  display: block;
}

@media (max-width: 768px){
  .experiences-banner__inner{
    min-height: 200px;
    padding: 44px 0 52px;
  }

  .experiences-banner__art{ right: -12%; }

  .experiences-banner__art img{ width: 240px; }
}

/* =========================================================
   EXPERIENCES LISTING LAYOUT
   ========================================================= */
.experiences{
  margin: 0 auto;
  padding: 24px 16px 40px;
}

@media (min-width: 992px){
  .experiences{
    padding-left: 24px;
    padding-right: 24px;
  }
}

.experiences__header{ margin-bottom: 18px; }
.experiences__title{ font-size: 28px; line-height: 1.15; margin: 0; }
.experiences__sub{ margin: 6px 0 0; color: var(--muted); }

.experiences-shell{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 900px){
  .experiences-shell{ grid-template-columns: 1fr; }
}

/* Sidebar */
.experiences-sidebar{
  position: sticky;
  top: 16px;
  background: var(--tan-ui);
  border-radius: 14px;
  padding: 18px;
}

@media (max-width: 900px){
  .experiences-sidebar{ position: static; }
}

/* Results card */
.results-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 16px;
  padding: 18px 18px 10px;
}

.results-card__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.results-title{
  text-align: center;
  font-size: 34px;
  margin: 8px 0 18px;
}

/* Results list */
.experiences__list{
  display: grid;
  gap: 16px;
}

@media (min-width: 1024px){
  .experiences__list.large__list{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Count */
.experiences-count{
  margin: 6px 0 12px;
  color: var(--muted);
  font-size: 14px;
  text-align: left;
}

.experiences-count strong{
  color: var(--ink);
  font-weight: 800;
}

/* =========================================================
   FILTERS (SIDEBAR)
   ========================================================= */
.filter-block + .filter-block{ margin-top: 18px; }

.filter-block__title{
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Desktop header row inside a block */
.filter-block__header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.filter-search{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid #d8d6cf;
  border-radius: 12px;
  outline: none;
}

.filter-link{
  display: block;
  width: 100%;
  text-align: left;
  padding: 6px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  cursor: pointer;
  font-size: 16px;
  color: inherit;
  opacity: .85;
}

.filter-link.is-active{
  font-weight: 700;
  opacity: 1;
  text-decoration: underline;
}

/* Checkbox row */
.filter-check{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  user-select: none;
  font-weight: 600;
}

.filter-check input{ transform: translateY(1px); }

/* Reset/Clear links (deduped) */
.filter-reset,
.filter-clear{
  background: none !important;
  border: 0 !important;
  padding: 0 !important;
  font-size: .85rem;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}

.filter-reset:hover,
.filter-clear:hover{ color: #000; }

/* =========================================================
   FILTERS (MOBILE TOP BAR + PANEL)
   ========================================================= */
.filters-topbar{
  background: var(--tan-ui);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
}

.filters-topbar__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.filters-topbar__title{
  font-weight: 800;
  font-size: 22px;
}

.filters-topbar__actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.filters-topbar__hosted{ margin-top: 10px; }

/* Mobile bar (optional additional layout) */
.filters-mobilebar{
  display: none;
  padding: 12px;
  border-radius: 16px;
}

.filters-mobilebar--tan{ background: var(--tan-ui); }

.filters-mobilebar__row{
  display: flex;
  gap: 10px;
  align-items: center;
}

.filters-mobilebar__row + .filters-mobilebar__row{ margin-top: 10px; }

.filters-mobilebar__row--top{ justify-content: space-between; }

.filters-mobilebar__title{
  font-weight: 800;
  font-size: 16px;
}

/* Centered toggle row */
.filters-mobilebar__row--toggle{
  justify-content: center;
  margin-top: 8px;
}

.filters-togglelink,
.filters-toggle-text{
  background: none;
  border: 0;
  padding: 6px 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: rgba(17,24,39,.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filters-togglelink:hover,
.filters-toggle-text:hover{
  color: rgba(17,24,39,1);
}

.filters-togglelink__count{ font-weight: 800; }

/* Disclosure button */
.filters-disclosure{
  display: none; /* shown on mobile */
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  padding: 0;
}

.filters-disclosure__icon{
  font-size: 14px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .15s ease;
}

/* Rotate chevron when open */
#js-filters-toggle[aria-expanded="true"] .filters-disclosure__icon{
  transform: rotate(180deg);
}

.filters-disclosure__count{
  font-size: 12px;
  color: #444;
}

/* Panel behavior:
   - Desktop: always visible (even if [hidden] exists)
   - Mobile: collapsible via [hidden] + JS
*/
@media (min-width: 992px){
  .filters-panel{ display: block !important; }
  .filters-panel[hidden]{ display: block !important; }
}

@media (max-width: 991px){
  .filters-disclosure{ display: inline-flex; }
  .filters-panel[hidden]{ display: none !important; }

  /* show the mobilebar pattern (if you’re using it) */
  .filters-mobilebar{ display: block; }

  /* hide desktop-only blocks if you’ve assigned these helper classes */
  .filter-block--desktop-header,
  .filter-block--desktop-hosted{ display: none !important; }
}

/* =========================================================
   RESULTS LOADING STATE
   ========================================================= */
.results-loading{
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.results-loader__spinner{
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  opacity: .8;
}

@keyframes spin{ to{ transform: rotate(360deg); } }

/* When loading, hide the results content area */
#js-results-card.is-loading #js-experiences-results{ display: none; }

/* =========================================================
   EXPERIENCE CARDS (EVENT LIST)
   ========================================================= */
.event-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--gap);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}

.event-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(17,24,39,.14);
}

/* Media */
.event-card__media{
  position: relative;
  overflow: hidden;
  background: rgb(170 128 57 / 15%);
  min-height: 140px;
  display: block;
}

/* HERO IMAGE: fill the left column */
.event-card__media > img{
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
}

/* OPTIONAL: logo mode */
.event-card__media.is-logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-card__media.is-logo > img{
  width: 160px;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.5));
}

/* Hosted overlay pill (over media) */
.event-card__media .hosted-pill{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(0,0,0,.75);
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;

  pointer-events: none;
}

.event-card__media .hosted-pill__logo{
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain !important;
  display: block;
  flex: 0 0 18px;
}

.event-card__media .hosted-pill__text{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-card__media:hover .hosted-pill{ background: rgba(0,0,0,.85); }

/* Body */
.event-card__body{
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.event-card__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.event-card__top-left{
  flex: 1 1 auto;
}

.event-card__top-right{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}
/* Titles/meta */
.event-card__title{
  font-size: 22px;
  line-height: 1.2;
  margin: 10px 0 6px 0;
  letter-spacing: -0.01em;
}

.event-card__title a{
  color: inherit;
  text-decoration: none;
}

.event-card__title a:hover{ text-decoration: underline; }

.event-card__meta{
  margin: 2px 0;
  color: var(--muted);
  font-size: 14px;
}

.event-card__meta.bold{ font-weight: 600; }

.event-card__bottom{
  margin-top: 10px;
  display: grid;
  gap: 6px;
}

/* Price row */
.event-card__price{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px 0;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 18px;
  text-align: left;
}

.event-card__price i{
  font-size: 14px;
  opacity: .9;
}

/* FREE / PAID label pill */
.price-label{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  line-height: 1;
}

.price-label.is-free{
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.28);
}

.price-label.is-paid{
  background: rgba(59,130,246,.12);
  border-color: rgba(59,130,246,.25);
}

.event-card__note{
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-card__dot{ opacity: .8; }

.event-card__link{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.event-card__link:hover{ opacity: .85; }

/* Badges wrapper */
.event-card__badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

/* Hosted badge (modern pill) */
.hosted-icon{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(6px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(17,24,39,.85);
  white-space: nowrap;
}

.hosted-icon img{
  width: 18px;
  height: 18px;
  display: block;
}

/* Optional: if you sometimes omit the text */
.hosted-icon__text{
  font-family: "brother-1816", "Brother 1816", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 11px;
  line-height: 1;
}

/* If your browser supports :has(), tighten padding when no text exists */
.hosted-icon:not(:has(.hosted-icon__text)){
  padding: 6px 8px;
}

/* Subtle hover polish */
.event-card:hover .hosted-icon{
  border-color: rgba(0,0,0,.14);
  background: rgba(255,255,255,.85);
}

/* Category badge */
.badge{
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: auto;
}

.badge--soft{
  background: var(--badge-bg);
  color: var(--badge-text);
}

/* Category badge colors */
.badge--move{
  background: color-mix(in srgb, var(--feature-green) 90%, #000);
  color: #fff;
}

.badge--discover{
  background: color-mix(in srgb, var(--feature-gold) 90%, #000);
  color: #fff;
}

.badge--connect{
  background: color-mix(in srgb, var(--feature-teal) 90%, #000);
  color: #fff;
}

.badge--move,
.badge--discover,
.badge--connect{
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

/* Deal pill (optional) */
.pill{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.pill--deal{
  background: var(--pill-bg);
  color: var(--pill-text);
}

/* Hidden state used by JS filters */
.event-card.is-hidden{ display: none !important; }

/* Responsive card */
@media (max-width: 720px){
  .event-card{ grid-template-columns: 1fr; }

  .event-card__media{
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .event-card__body{ padding: 14px 14px 12px; }

  .event-card__title{ font-size: 20px; }
}
/* =========================================================
   EXPERIENCES — LAYOUT FIX (force correct column order)
   Paste at bottom of stylesheet
   ========================================================= */

.experiences{
  margin: 0 auto;
  padding: 24px 16px 40px;
}

/* The two-column shell */
.experiences-shell{
  /* Force grid to win even if something else tries flex */
  display: grid !important;
  grid-template-columns: 320px minmax(0, 1fr) !important;
  gap: 28px;
  align-items: start;

  /* Defensive: prevent accidental reverse layouts */
  direction: ltr;
}

/* Force sidebar to left column */
.experiences-sidebar{
  grid-column: 1 / 2 !important;
  grid-row: 1 !important;

  float: none !important;
  order: 0 !important;

  position: sticky;
  top: 16px;
  align-self: start;

  background: var(--tan-ui);
  border-radius: 14px;
  padding: 18px;
}

/* Force results to right column */
.experiences-main{
  grid-column: 2 / 3 !important;
  grid-row: 1 !important;

  float: none !important;
  order: 1 !important;

  min-width: 0; /* critical so the card can shrink correctly */
}

/* Results card should fill its column */
.results-card{
  width: 100%;
  max-width: none;
}

/* If any parent is flex, don’t let children reorder */
.experiences-shell > *{
  flex: none !important;
}

/* Tablet/mobile: stack (sidebar above results) */
@media (max-width: 991px){
  .experiences-shell{
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .experiences-sidebar{
    position: static;
    top: auto;

    grid-column: 1 / -1 !important;
    grid-row: 1 !important;        /* ???? ensure sidebar is row 1 */

    z-index: auto;                  /* no overlay needed */
  }

  .experiences-main{
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;         /* ???? push results to row 2 */

    z-index: auto;
  }
}

{!-- EVENT CARD V2 --}

.experiences__list {
    display: grid;
    gap: 18px;
}

.event-card--v2 {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    background: #fff;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card--v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
}

.event-card__media-wrap {
    position: relative;
    min-width: 0;
    min-height: 100%;
    background: #d8e1dc;
}

.event-card__media {
    display: block;
    height: 100%;
    min-height: 100%;
    text-decoration: none;
}

.event-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.event-card__media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.event-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(20, 29, 43, 0.88);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.event-chip__logo {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
}

.event-chip__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.event-chip__text {
    display: inline-block;
}

.event-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 18px 20px 16px;
}

.event-card__header {
    margin-bottom: 14px;
    min-width: 0;
}

.event-card__title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.event-card__title a {
    color: #1f2937;
    text-decoration: none;
}

.event-card__title a:hover {
    text-decoration: underline;
}

.event-card__desc {
    margin: 4px 0 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.4;
    max-width: 62ch;
}

.event-card__facts {
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 16px;
}

.event-card__fact {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 10px 14px;
}

.event-card__fact + .event-card__fact {
    border-top: 1px solid rgba(17, 24, 39, 0.12);
}

.event-card__fact-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #f7f8fa;
    border: 1px solid rgba(17, 24, 39, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    font-size: 17px;
    line-height: 1;
}

.event-card__fact-icon--logo {
    padding: 6px;
    background: #f7f8fa;
}

.event-card__fact-icon--logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.event-card__fact-text {
    min-width: 0;
}

.event-card__fact-title {
    color: #111827;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
}

.event-card__fact-sub {
    margin-top: 2px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.35;
}

.event-card__extras {
    margin: 0 0 0 18px;
    padding: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.4;
}

.event-card__extras li + li {
    margin-top: 4px;
}

.event-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
}

.event-card__actions-left {
    flex: 0 0 auto;
}

.event-card__actions-right {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.event-card__details-btn {
    min-height: 36px;
    padding: 0 18px;
    border-radius: 10px;
    border: 1px solid rgba(17, 24, 39, 0.22);
    background: #fff;
    color: #374151;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.event-card__details-btn:hover {
    text-decoration: none;
    background: #f8fafc;
    color: #111827;
    border-color: rgba(17, 24, 39, 0.30);
}

.event-card__pricebox {
    min-width: 108px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    border: 1px solid #9fb7ca;
    background: #dceaf6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
}

.event-card__pricebox-value {
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    color: #364152;
    white-space: nowrap;
}

.event-card__cta {
    min-height: 36px;
    min-width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 991px) {
    .event-card--v2 {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .event-card__body {
        padding: 16px 18px 16px;
    }

    .event-card__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-card__actions-left,
    .event-card__actions-right {
        width: 100%;
    }

    .event-card__actions-right {
        margin-left: 0;
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .event-card--v2 {
        grid-template-columns: 1fr;
    }

    .event-card__media-wrap {
        min-height: 220px;
    }

    .event-card__media {
        min-height: 220px;
    }

    .event-card__body {
        padding: 16px;
    }

    .event-card__title {
        font-size: 22px;
    }

    .event-card__desc {
        max-width: none;
    }

    .event-card__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .event-card__actions-left,
    .event-card__actions-right {
        width: 100%;
    }

    .event-card__actions-right {
        margin-left: 0;
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
    }

    .event-card__details-btn,
    .event-card__cta,
    .event-card__pricebox {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .event-card--v2 {
        border-radius: 20px;
    }

    .event-card__media-wrap {
        min-height: 200px;
    }

    .event-card__media {
        min-height: 200px;
    }

    .event-card__media-badge {
        top: 14px;
        left: 14px;
    }

    .event-chip {
        padding: 9px 12px;
        border-radius: 14px;
        font-size: 13px;
    }

    .event-chip__logo {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
    }

    .event-card__title {
        font-size: 20px;
    }

    .event-card__fact {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 10px;
        padding: 10px 12px;
    }

    .event-card__fact-icon {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .event-card__fact-title {
        font-size: 14px;
    }

    .event-card__fact-sub,
    .event-card__extras {
        font-size: 13px;
    }

    .event-card__actions-right {
        grid-template-columns: 1fr;
    }

    .event-card__pricebox {
        min-width: 0;
    }

    .event-card__cta {
        min-width: 0;
    }
}

.event-card__media-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.event-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 72px;
    height: 72px;
    padding: 10px;

    border-radius: 16px;
    background: rgba(20, 29, 43, 0.82);
    backdrop-filter: blur(4px);

    color: #fff;
    text-align: center;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.event-chip__icon {
    width: 36px;
    height: 36px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.event-chip__label {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.event-chip--discover .event-chip__icon {
    background-image: url('/uploads/icon_cat_discover.png');
}

.event-chip--connect .event-chip__icon {
    background-image: url('/uploads/icon_cat_connect.png');
}

.event-chip--move .event-chip__icon {
    background-image: url('/uploads/icon_cat_move.png');
}
@media (max-width: 575px) {
    .event-chip {
        width: 64px;
        height: 64px;
        padding: 8px;
        border-radius: 14px;
    }

    .event-chip__icon {
        width: 30px;
        height: 30px;
    }

    .event-chip__label {
        font-size: 10px;
    }
}