:root {
  --wd-orange: #DD722A;
  --wd-brown: #8B6914;
  --wd-orange-light: #E8A96A;
  --wd-orange-dark: #C4621F;
  --wd-cream: #FFF8F0;
  --wd-header-height: 56px;
  --wd-bottom-nav-height: 64px;
}

@media (pointer: coarse) {
  input,
  select,
  textarea,
  .form-control,
  .form-control-sm,
  .form-select,
  .form-select-sm {
    font-size: 16px;
  }
  a,
  button,
  label,
  .btn,
  [role=button] {
    touch-action: manipulation;
  }
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-top: var(--wd-header-height);
  padding-bottom: calc(var(--wd-bottom-nav-height) + 16px);
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
}
body.no-bottom-nav {
  padding-bottom: 16px;
}
body:not(.no-bottom-nav) {
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body:not(.no-bottom-nav) .wd-header {
  position: static;
}
body:not(.no-bottom-nav) > main {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body:not(.no-bottom-nav) .wd-bottom-nav {
  position: static;
  flex: 0 0 auto;
}

.wd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background-color: var(--wd-orange);
  display: flex;
  flex-direction: column;
}
.wd-header .wd-brand {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.wd-header button.wd-brand {
  background: none;
  border: 0;
  padding: 0;
  line-height: inherit;
  flex-shrink: 0;
}
.wd-header button.wd-brand:hover, .wd-header button.wd-brand:focus, .wd-header button.wd-brand:active {
  color: white;
  text-decoration: none;
}
.wd-header .wd-goto {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  min-width: 0;
  flex: 1 1 auto;
}
.wd-header .wd-goto__label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  margin: 0;
  flex-shrink: 0;
}
.wd-header .wd-goto__input {
  min-width: 0;
  flex: 1 1 auto;
  max-width: 260px;
  font-size: 16px;
  line-height: 1.2;
  padding: 3px 8px;
  touch-action: manipulation;
  color: white;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}
.wd-header .wd-goto__input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.25);
  border-color: white;
}
.wd-header .wd-goto__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  background: none;
  border: 0;
  padding: 2px 12px;
  font-size: 1.5rem;
  line-height: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.wd-header .wd-goto__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  height: 48px;
}
.wd-header .wd-goto__btn:hover, .wd-header .wd-goto__btn:focus {
  color: white;
}
.wd-header .wd-goto__btn:active {
  opacity: 0.6;
}
.wd-header .wd-goto__btn[type=submit] {
  padding-left: 4px;
  padding-right: 24px;
}
@media (pointer: coarse) {
  .wd-header .wd-goto {
    gap: 8px;
  }
  .wd-header .wd-goto__btn {
    padding: 2px 16px;
    font-size: 1.65rem;
  }
  .wd-header .wd-goto__btn[type=submit] {
    padding-left: 6px;
    padding-right: 28px;
  }
  .wd-header .wd-goto__input {
    max-width: 200px;
  }
}
@media (max-width: 480px) {
  .wd-header .wd-goto__input {
    max-width: 135px;
  }
}
.wd-header .wd-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  display: none;
}
@media (min-width: 400px) {
  .wd-header .wd-tagline {
    display: inline;
    margin-left: 20px;
  }
}
.wd-header .wd-header-action {
  color: white;
  font-size: 1.25rem;
  text-decoration: none;
  padding: 8px;
}

.wd-goto-shown .wd-header .wd-goto {
  display: flex;
}
.wd-goto-shown .wd-header .wd-tagline.wd-goto-tagline {
  display: none;
}

.wd-info-tap {
  position: relative;
  font-size: 1.05rem;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.wd-info-tap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}
.wd-info-tap:active {
  opacity: 0.6;
}

#outpost-wall,
#gathering-messages {
  scroll-margin-top: calc(var(--wd-header-height) + 8px);
}

.wd-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--wd-header-height);
  padding: 0 16px;
}

.wd-header-flash {
  font-size: 0.85rem;
  margin-bottom: 8px !important;
}

.wd-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: calc(var(--wd-bottom-nav-height) + env(safe-area-inset-bottom, 0px));
  background-color: #ffffff;
  border-top: 1px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px 0;
  padding-bottom: env(safe-area-inset-bottom, 4px);
}
.wd-bottom-nav .wd-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6c757d;
  font-size: 0.65rem;
  font-weight: 500;
  flex: 1;
  padding: 4px 0;
  transition: color 0.15s;
}
.wd-bottom-nav .wd-nav-item i {
  font-size: 1.35rem;
  margin-bottom: 2px;
}
.wd-bottom-nav .wd-nav-item.active, .wd-bottom-nav .wd-nav-item:hover {
  color: var(--wd-orange);
}

.btn-wd-orange {
  background-color: var(--wd-orange);
  border-color: var(--wd-orange);
  color: white;
  font-weight: 600;
}
.btn-wd-orange:hover, .btn-wd-orange:focus {
  background-color: var(--wd-orange-dark);
  border-color: var(--wd-orange-dark);
  color: white;
}

.btn-wd-outline {
  border: 2px solid var(--wd-orange);
  color: var(--wd-orange);
  background: transparent;
  font-weight: 600;
}
.btn-wd-outline:hover {
  background-color: var(--wd-orange);
  color: white;
}

@media (hover: none) {
  .wd-card-actions .btn:hover,
  .wd-card-actions .btn:focus {
    color: var(--bs-btn-color);
    background-color: var(--bs-btn-bg);
    border-color: var(--bs-btn-border-color);
    box-shadow: none;
  }
}
@media (pointer: coarse) {
  .form-control,
  .form-control-sm,
  .form-select,
  .form-select-sm {
    font-size: 16px;
  }
}
.wd-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #dee2e6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.wd-avatar-sm {
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
}

.wd-avatar-lg {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.wd-avatar-xl {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  border: 3px solid white;
}

.wd-profile-header {
  background: var(--wd-orange);
  color: white;
  text-align: center;
  padding: 24px 16px;
  margin: -16px -16px 16px -16px;
}

.wd-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}
.wd-card .card-body {
  padding: 16px;
}

.wd-gathering-messages .accordion-item {
  border: 1px solid var(--bs-primary-border-subtle);
  border-radius: 12px;
  overflow: hidden;
}
.wd-gathering-messages .accordion-button {
  font-size: 1rem;
  font-weight: 700;
}

.wd-event-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
  transition: transform 0.1s;
}
.wd-event-card:active {
  transform: scale(0.98);
}
.wd-event-card .card-body {
  padding: 12px 16px;
}
.wd-event-card .wd-event-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}
.wd-event-card .wd-event-meta {
  font-size: 0.85rem;
  color: #6c757d;
}
.wd-event-card .wd-event-meta i {
  width: 16px;
  margin-right: 4px;
}
@media (min-width: 576px) {
  .wd-event-card {
    max-width: 100%;
  }
}

.badge-hosting {
  background-color: #198754;
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
}

.badge-recurring {
  background-color: var(--wd-orange);
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
}

.badge-full {
  background-color: #dc3545;
  color: white;
}

.badge-dads-only {
  background-color: var(--wd-brown);
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
}

.badge-year {
  background-color: white;
  color: var(--wd-orange);
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-going {
  background-color: #198754;
  color: white;
}

.badge-not-going {
  background-color: transparent;
  color: #6c757d;
  border: 1.5px solid #6c757d;
}

.wd-empty-state {
  text-align: center;
  padding: 32px 16px;
  color: #6c757d;
}
.wd-empty-state i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.5;
}
.wd-empty-state p {
  margin-bottom: 16px;
}

.wd-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}
.wd-section-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0;
}
.wd-section-header a:not(.btn) {
  color: var(--wd-orange);
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 500;
}

.wd-required::after {
  content: " *";
  color: #dc3545;
}

.wd-tabs {
  border-bottom: 2px solid #dee2e6;
  display: flex;
  gap: 0;
  flex: 0 0 auto;
  background-color: #f8f9fa;
}
.wd-tabs .wd-tab {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6c757d;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.wd-tabs .wd-tab i {
  font-size: 1.1rem;
}
.wd-tabs .wd-tab.active {
  color: var(--wd-orange);
  border-bottom-color: var(--wd-orange);
}

.wd-view-toggle .btn {
  font-size: 0.85rem;
  padding: 6px 16px;
}
.wd-view-toggle .btn.active {
  background-color: var(--wd-orange);
  border-color: var(--wd-orange);
  color: white;
}

#outpost-wall {
  scroll-margin-top: 1rem;
}

.wd-recent-message {
  cursor: pointer;
  border-left: 3px solid var(--wd-orange);
}
.wd-recent-message:hover, .wd-recent-message:focus-visible {
  background-color: var(--wd-cream);
}
.wd-recent-message .wd-recent-message__body {
  font-size: 0.9rem;
  overflow-wrap: anywhere;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.wd-scroll-top {
  position: fixed;
  right: 16px;
  bottom: calc(var(--wd-bottom-nav-height) + 16px);
  z-index: 1040;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--wd-orange);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  touch-action: manipulation;
}
.wd-scroll-top:active {
  opacity: 0.7;
}
.wd-scroll-top[hidden] {
  display: none;
}

.wd-message-item {
  display: flex;
  gap: 10px;
  padding: 0;
  margin-bottom: 6px;
}
.wd-message-item--own {
  position: relative;
  margin-left: min(6em, 25%);
  padding: 4px 12px 2px;
  background-color: #eef7ee;
  border: 1px solid #dcecdc;
  border-radius: 10px;
}
.wd-message-item--own .wd-message-actions {
  position: absolute;
  top: 2px;
  right: 6px;
  z-index: 1;
  touch-action: manipulation;
}
.wd-message-item--own .wd-message-text {
  padding-right: 20px;
}
.wd-message-item:not(.wd-message-item--own) {
  margin-right: min(3em, 12%);
}
.wd-message-item:not(.wd-message-item--own) .wd-message-content {
  padding: 6px 12px 4px;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}
.wd-message-item .wd-message-actions:has(.dropdown-menu.show) {
  z-index: 1050;
}
.wd-message-item:not(.wd-message-item--own) .wd-message-actions {
  position: relative;
}
.wd-message-item .wd-message-content {
  position: relative;
  flex: 1;
  min-width: 0;
}
.wd-message-item .wd-message-important {
  position: absolute;
  top: 2px;
  right: -18px;
  z-index: 2;
  font-size: 0.72rem;
  padding: 0.22em 0.6em;
  letter-spacing: 0.02em;
}
.wd-message-item .wd-message-important-icon {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 2px;
  z-index: 2;
  font-size: 0.7rem;
  line-height: 1;
  color: #b8860b;
}
.wd-message-item > .wd-avatar,
.wd-message-item > [class*=wd-avatar] {
  align-self: flex-end;
  flex-shrink: 0;
}
.wd-message-item .wd-message-author {
  font-weight: 600;
  font-size: 0.9rem;
}
.wd-message-item .wd-message-number {
  color: #6c757d;
  font-size: 0.75rem;
}
.wd-message-item .wd-message-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.wd-message-item .wd-message-time {
  color: #6c757d;
  font-size: 0.75rem;
  margin-left: auto;
}
.wd-message-item .wd-message-text {
  font-size: 0.9rem;
  margin-top: 4px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.wd-message-item .wd-message-edited {
  color: #adb5bd;
  font-size: 0.7rem;
  font-style: italic;
}

.wd-message-reactions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.wd-message-pills {
  display: contents;
}

.wd-reaction-add-btn {
  display: inline-flex;
  align-items: center;
  padding: 3px 0;
  border: 0;
  background: none;
  color: #c3c9cf;
  font-size: 1.025rem;
  line-height: 1;
  touch-action: manipulation;
}
.wd-reaction-add-btn:hover, .wd-reaction-add-btn[aria-expanded=true] {
  color: var(--wd-orange);
}
.wd-reaction-add-btn:focus-visible {
  outline: 2px solid var(--wd-orange);
  outline-offset: 2px;
  border-radius: 50%;
}

.wd-reaction-picker {
  min-width: 0;
  padding: 4px;
}
.wd-reaction-picker.show {
  display: flex;
  gap: 2px;
}

.wd-reaction-choice {
  border: 0;
  border-radius: 50%;
  background: none;
  padding: 7px 5px;
  font-size: 1.475rem;
  line-height: 1;
  touch-action: manipulation;
}
.wd-reaction-choice:hover, .wd-reaction-choice:focus-visible {
  background-color: #f1f3f5;
}
.wd-reaction-choice--mine {
  background-color: var(--wd-cream);
  box-shadow: inset 0 0 0 2px var(--wd-orange);
}

.wd-reaction {
  display: inline-flex;
}

.wd-reaction-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border: 1px solid #e0e3e6;
  border-radius: 999px;
  background-color: #fff;
  line-height: 1.2;
  touch-action: manipulation;
}
.wd-reaction-pill--mine {
  border-color: var(--wd-orange-light);
  background-color: var(--wd-cream);
}
.wd-reaction-pill:focus-visible {
  outline: 2px solid var(--wd-orange);
  outline-offset: 2px;
}

.wd-reaction-emoji {
  font-size: 1.025rem;
  line-height: 1;
}

.wd-reaction-count {
  color: #6c757d;
  font-size: 0.8rem;
  font-weight: 600;
}

.wd-reaction-who {
  max-height: 40vh;
  overflow-y: auto;
  padding: 4px 0;
  font-size: 0.8rem;
}
.wd-reaction-who .dropdown-header {
  padding: 2px 12px 4px;
  font-size: 0.72rem;
}
.wd-reaction-who .dropdown-item-text {
  display: block;
  padding: 2px 12px;
  white-space: nowrap;
}

.rsvp-toggle__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #6c757d;
  background: white;
  color: #495057;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rsvp-toggle__btn:hover {
  border-color: #495057;
  color: #343a40;
}
.rsvp-toggle__btn--yes:hover, .rsvp-toggle__btn--yes.rsvp-toggle__btn--active, .rsvp-toggle__btn--yes.rsvp-toggle__btn--active:hover {
  background: #198754;
  border-color: #198754;
  color: white;
}
.rsvp-toggle__btn--no:hover, .rsvp-toggle__btn--no.rsvp-toggle__btn--active, .rsvp-toggle__btn--no.rsvp-toggle__btn--active:hover {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
}
.rsvp-toggle__btn--sm {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
}
.rsvp-toggle__btn.wd-just-clicked, .rsvp-toggle__btn.wd-just-clicked:hover, .rsvp-toggle__btn.wd-just-clicked.rsvp-toggle__btn--active, .rsvp-toggle__btn.wd-just-clicked.rsvp-toggle__btn--active:hover {
  background: white !important;
  color: #495057 !important;
  border-color: #6c757d !important;
}

.rsvp-toggle__text {
  font-size: 1rem;
  font-weight: 700;
  color: #343a40;
  min-width: 100px;
  text-align: center;
}
.rsvp-toggle__text--going {
  color: #198754;
}
.rsvp-toggle__text--not-going {
  color: #dc3545;
}
.rsvp-toggle__text--sm {
  font-size: 0.8rem;
  min-width: 70px;
}

.accordion-button.collapsed::after {
  transform: rotate(-90deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
}

@media (min-width: 992px) {
  .wd-desktop-nav {
    display: block !important;
  }
}
.wd-next-tooltip-wrap {
  position: relative;
  display: inline-block;
  -webkit-tap-highlight-color: transparent;
  cursor: not-allowed;
}
.wd-next-tooltip-wrap.gated > button {
  pointer-events: none;
}
.wd-next-tooltip-wrap::before, .wd-next-tooltip-wrap::after {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 10;
}
.wd-next-tooltip-wrap::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #2c2c2c;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.wd-next-tooltip-wrap::after {
  content: "";
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border: 6px solid transparent;
  border-top-color: #2c2c2c;
}
.wd-next-tooltip-wrap.gated:hover::before, .wd-next-tooltip-wrap.gated:hover::after, .wd-next-tooltip-wrap.gated:focus::before, .wd-next-tooltip-wrap.gated:focus::after, .wd-next-tooltip-wrap.gated:focus-within::before, .wd-next-tooltip-wrap.gated:focus-within::after, .wd-next-tooltip-wrap.gated:active::before, .wd-next-tooltip-wrap.gated:active::after, .wd-next-tooltip-wrap.gated.shown::before, .wd-next-tooltip-wrap.gated.shown::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.wd-next-tooltip-wrap:focus {
  outline: none;
}

.wd-next-tooltip-wrap--below::before, .wd-next-tooltip-wrap--below::after {
  transform: translateX(-50%) translateY(-4px);
}
.wd-next-tooltip-wrap--below::before {
  bottom: auto;
  top: calc(100% + 12px);
}
.wd-next-tooltip-wrap--below::after {
  bottom: auto;
  top: calc(100% + 6px);
  border-top-color: transparent;
  border-bottom-color: #2c2c2c;
}

.min-w-0 {
  min-width: 0 !important;
}

.text-wd-orange {
  color: var(--wd-orange) !important;
}

.bg-wd-orange {
  background-color: var(--wd-orange) !important;
}

.bg-wd-brown {
  background-color: var(--wd-brown) !important;
}

.wd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  cursor: default;
  touch-action: none;
}
.wd-lightbox__img {
  max-width: 96vw;
  max-height: 96vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  cursor: default;
  transform-origin: center center;
}
.wd-lightbox__close, .wd-lightbox__nav, .wd-lightbox__counter, .wd-lightbox__controls {
  z-index: 1;
}
.wd-lightbox__close {
  position: absolute;
  top: max(14px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.wd-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.wd-lightbox__nav--prev {
  left: max(12px, env(safe-area-inset-left));
}
.wd-lightbox__nav--next {
  right: max(12px, env(safe-area-inset-right));
}
@media (hover: hover) {
  .wd-lightbox__nav:hover {
    background: rgba(0, 0, 0, 0.7);
  }
}
.wd-lightbox__counter {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.85rem;
}
.wd-lightbox__controls {
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.wd-lightbox--bare .wd-lightbox__counter,
.wd-lightbox--bare .wd-lightbox__controls,
.wd-lightbox--bare .wd-lightbox__nav {
  display: none;
}
@media (orientation: portrait) {
  .wd-lightbox__img {
    max-height: 84vh;
  }
  .wd-lightbox__nav {
    top: auto;
    transform: none;
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}
@media (orientation: landscape) and (pointer: coarse) {
  .wd-lightbox__controls {
    display: none;
  }
}

.wd-steps__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wd-orange);
  color: #fff;
  font-size: 1.1rem;
}

.wd-qr {
  display: inline-block;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-align: center;
}
.wd-qr svg {
  display: block;
  max-width: 100%;
  height: auto;
}
.wd-qr__caption {
  margin-top: 0.35rem;
  max-width: 160px;
  color: #6c757d;
  font-size: 0.75rem;
  line-height: 1.25;
}

.wd-places-anchor {
  position: relative;
}

.wd-places {
  position: absolute;
  z-index: 1080;
  margin: 0;
  padding: 0.25rem 0;
  max-height: 15rem;
  overflow-y: auto;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.wd-places[hidden] {
  display: none;
}
.wd-places__option {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  line-height: 1.3;
  touch-action: manipulation;
}
.wd-places__option:hover, .wd-places__option.is-active {
  background: var(--wd-cream);
}
.wd-places__main {
  display: block;
  font-size: 0.9375rem;
}
.wd-places__secondary {
  display: block;
  color: #6c757d;
  font-size: 0.8125rem;
}

/*# sourceMappingURL=app.output.css.map */
