@charset "UTF-8";
body {
  background-color: #f7f5f2 !important;
}

.Full-Event[data-hidden=true] {
  display: none;
}

.Events-Empty,
.Events-Loading {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
}
.Events-Empty p,
.Events-Loading p {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(252, 249, 235, 0.683);
}

.Load-More-Btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 16px 24px;
  margin-top: 32px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: #2e3d52;
  background: rgb(178, 156, 115);
  color: rgba(0, 0, 0, 0.711);
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.1s;
}
.Load-More-Btn:hover {
  background: rgb(209, 185, 141);
}
.Load-More-Btn.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.Load-More-Btn.is-loading .Load-More-Text::after {
  content: "...";
}
.Load-More-Btn[data-exhausted=true] {
  border-style: solid;
  opacity: 0.25;
  pointer-events: none;
  cursor: default;
}
.Load-More-Btn:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/*
.Event-Artist {
    font-size: 0.78rem;
    font-weight: 500;
    color: $text-secondary;
    margin-top: 2px;
}
    */
.Free-Label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 5px;
  color: #dbb485;
}

.Image-Placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Count[data-has-events=false] {
  opacity: 0.35;
}

/*
:root {
    --text-primary: rgb(30, 34, 48);
    --text-secondary: rgb(82, 88, 110);
    --text-muted: rgb(97, 102, 122);
    --text-faint: rgb(170, 176, 194);
    --bg-page: rgb(234, 237, 242);
    --bg-popup: rgb(255, 255, 255);
    --bg-surface: rgb(244, 246, 249);
    --bg-raised: rgb(236, 238, 243);
    --border: rgb(216, 220, 230);
    --border-strong: rgb(190, 196, 210);
    --accent: rgb(72, 96, 200);
    --accent-soft: rgba(72, 96, 200, 0.08);
    --accent-text: rgb(255, 255, 255);
    --green: rgb(58, 128, 76);
    --green-soft: rgba(58, 128, 76, 0.08);
    --amber: rgb(180, 130, 20);
    --amber-soft: rgba(180, 130, 20, 0.08);
}
    */
:root {
  --bg-page: rgb(51, 48, 41);
  --bg-popup: rgba(16, 13, 8, 0.595);
  --bg-surface: rgb(61, 58, 48);
  --bg-raised: rgb(77, 73, 62);
  --text-primary: rgb(241, 238, 233);
  --text-secondary: rgba(179, 175, 168, 0.732);
  --text-muted: rgba(167, 160, 146, 0.599);
  --text-faint: rgba(120, 113, 97, 0.575);
  --border: rgb(98, 92, 83);
  --border-strong: rgb(164, 146, 113);
  --accent: #dbb485;
  --accent-soft: #dbb48563;
  --accent-text: #333029;
  --green: rgb(58, 128, 76);
  --green-soft: rgba(58, 128, 76, 0.08);
  --amber: rgb(233 131 72);
  --amber-soft: rgb(220 125 63 / 8%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  padding: 40px 20px;
  line-height: 1.45;
}

/* ═══════════════════════════════════════════════
   SHARED POPUP SHELL
═══════════════════════════════════════════════ */
.popup-overlay {
  background: var(--bg-popup);
  border-radius: 0px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: fixed;
  inset: 0;
  z-index: 10000000;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: black;
  transition: all 0.55s ease;
}
.popup-overlay[data-view-state=open] {
  display: flex;
}
.popup-overlay[data-view-state=open] .popup {
  transform: translateY(0);
}
.popup-overlay[data-view-state=closed] {
  pointer-events: none;
  opacity: 0;
}
.popup {
  background: var(--bg-raised);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  transform: translateY(100dvh);
}

.c-header {
  padding: 12px 22px;
  padding-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-content {
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg-surface);
}

.c-header-text {
  flex: 1;
}

.c-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.c-subtitle {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.c-close {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  border-radius: 6px;
  margin-left: 12px;
}

.c-close:hover {
  background: var(--bg-raised);
}

.c-tabs {
  display: flex;
  gap: 2px;
  margin: 26px 22px 0;
  background: var(--bg-raised);
  padding: 3px;
  border-radius: 7px;
}

.c-tab {
  flex: 1;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  transition: all 0.15s;
}

.c-tab:hover {
  color: var(--text-secondary);
}

.c-tab.active {
  background: var(--accent-soft);
  color: var(--text-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.c-tab svg {
  flex-shrink: 0;
}

.c-panel {
  display: none;
  padding: 22px;
}

.c-panel.active {
  display: block;
}

.c-panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.c-panel-icon.blue {
  background: var(--accent-soft);
  color: var(--accent);
}

.c-panel-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.c-panel-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.c-panel-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.c-info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  margin-bottom: 8px;
}

.c-info-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-raised);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}

.c-info-content {
  flex: 1;
}

.c-info-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.c-info-value {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.c-info-action {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  display: none;
}

.c-info-action:hover {
  background: var(--accent-soft);
}

.c-panel-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 12px;
  padding-left: 2px;
}

.c-footer {
  padding: 0 22px 20px;
}

.c-btn {
  width: 100%;
  padding: 16px 11px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--accent-text);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.15s;
  margin: 25px 0px;
}

.c-btn:hover {
  opacity: 0.9;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .popup-overlay {
    padding: 12px;
    min-height: 440px;
  }
  .popup {
    max-width: 100%;
  }
  .a-body {
    padding: 14px 18px 18px;
  }
  .a-method {
    padding: 12px;
  }
  .b-body {
    padding: 16px 18px;
  }
  .b-footer {
    padding: 0 18px 16px;
  }
  .c-panel {
    padding: 18px;
  }
}
@media screen and (max-width: 700px) {
  .popup-overlay {
    padding: 0px !important;
    padding-top: 12vh;
    width: 100%;
    min-height: 100dvh;
    justify-content: flex-end;
  }
  .popup-overlay .popup {
    min-height: 400px;
    height: -moz-max-content;
    height: max-content;
    max-height: calc(100% - 45px);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    display: flex;
    flex-direction: column;
  }
  .popup-overlay .popup .c-header {
    height: -moz-max-content;
    height: max-content;
  }
  .popup-overlay .popup .c-content-scroll {
    flex: 1;
    overflow-y: auto;
  }
  .popup-overlay .popup .c-content-scroll .c-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}/*# sourceMappingURL=public.css.map */