/* Tripshaper Stage 2A app shell + responsive place panel */

@font-face {
  font-family: "Gotham";
  src: url("./assets/fonts/Gotham-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./assets/fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./assets/fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./assets/fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("./assets/fonts/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("./assets/fonts/GothamNarrow-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Narrow";
  src: url("./assets/fonts/GothamNarrow-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ui-accent: #6f9fb8;
  --ui-accent-dark: #5f8ea7;
  --ui-ink: #1f2a30;
  --ui-soft: rgba(255, 255, 255, 0.92);
  --ui-line: rgba(24, 34, 42, 0.12);
  --ui-shadow: 0 14px 32px rgba(15, 24, 31, 0.18);
  --font-gotham: "Gotham", "Gotham SSm", "Montserrat", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Open Sans", "Segoe UI", Arial, sans-serif;
  --mobile-nav-height: 0px;
  --mobile-nav-offset: 0px;
  --desktop-toolbar-width: 376px;
  --info-pane-max-width: 460px;
  --feed-drawer-max-width: 448px;
  --video-drawer-max-width: 420px;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--ui-ink);
  background: #e4eaec;
}

#map {
  position: absolute;
  inset: 0;
}

.map-status {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 20px 24px;
  pointer-events: none;
}

.map-status__card {
  width: min(480px, calc(100vw - 40px));
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(19, 42, 50, 0.16);
  background: rgba(248, 251, 252, 0.96);
  box-shadow: 0 18px 38px rgba(15, 24, 31, 0.16);
  pointer-events: auto;
}

.map-status__title {
  color: #163742;
  font-family: var(--font-gotham);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.08;
}

.map-status__body {
  margin: 10px 0 0;
  color: #42545b;
  font-size: 15px;
  line-height: 1.55;
}

.map-status__reload {
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: #055468;
  color: #fff;
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.map-status__reload:hover,
.map-status__reload:focus-visible {
  background: #044656;
}

.app-ui {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.app-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 30px;
  background: #015368;
  color: #fff;
  letter-spacing: 0.04em;
  pointer-events: auto;
  z-index: 12;
}

.title-lockup {
  justify-self: start;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  --header-title-size: 25px;
  --header-logo-size: 40px;
  --header-title-track: 0.14em;
  cursor: pointer;
}

.brand-logo {
  display: block;
  width: var(--header-logo-size);
  height: var(--header-logo-size);
  flex: 0 0 auto;
  object-fit: contain;
}

.brand {
  font-family: var(--font-gotham);
  font-size: var(--header-title-size);
  line-height: 1;
  font-weight: 500;
  letter-spacing: var(--header-title-track);
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.title-sep {
  font-family: var(--font-gotham);
  font-size: var(--header-title-size);
  line-height: 1;
  font-weight: 500;
  letter-spacing: var(--header-title-track);
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.country {
  font-family: var(--font-gotham);
  font-size: var(--header-title-size);
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.77);
  letter-spacing: var(--header-title-track);
  white-space: nowrap;
}

.auth-actions {
  display: none;
}

.app-header__right {
  flex: 0 0 auto;
  width: min(var(--desktop-toolbar-width), calc(100vw - 60px));
  display: flex;
  justify-content: flex-end;
  pointer-events: auto;
}

.app-toolbar {
  position: absolute;
  top: 62px;
  right: 30px;
  width: min(var(--desktop-toolbar-width), calc(100vw - 60px));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  z-index: 9;
  pointer-events: none;
}

.top-search-shell {
  position: relative;
  width: 100%;
  z-index: 16;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.top-search-input {
  width: 100%;
  height: 40px;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 97, 122, 0.9);
  color: #ffffff;
  font-family: var(--font-gotham);
  font-size: 15px;
  font-weight: 400;
  line-height: 40px;
  padding: 0 12px;
  outline: none;
  box-sizing: border-box;
}

.top-search-input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.top-search-input:focus {
  border-color: rgba(145, 207, 224, 0.85);
  box-shadow: 0 0 0 2px rgba(145, 207, 224, 0.18);
}

.top-search-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: min(46vh, 320px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: #055468;
  box-shadow: 0 14px 32px rgba(10, 21, 28, 0.3);
  padding: 4px 0;
}

.top-search-options.is-hidden {
  display: none;
}

.top-search-option {
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  display: block;
  text-align: left;
  padding: 9px 12px;
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.top-search-option:hover,
.top-search-option.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.top-search-option-region {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-family: var(--font-body);
}

.app-nav {
  pointer-events: auto;
}

.app-nav--desktop {
  display: inline-flex;
  align-items: stretch;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(79, 150, 166, 0.92);
  box-shadow: 0 8px 18px rgba(6, 38, 49, 0.18);
}

.app-nav--mobile {
  display: none;
}

.app-nav__btn {
  width: 56px;
  height: 40px;
  border: 0;
  padding: 0;
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 150, 166, 0.94);
  cursor: pointer;
  transition: background-color 140ms ease, opacity 140ms ease;
}

.app-nav__hover-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px 5px;
  border-radius: 6px;
  background: rgba(243, 246, 247, 0.96);
  border: 1px solid rgba(111, 159, 184, 0.28);
  color: #30414a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 8px 18px rgba(6, 38, 49, 0.16);
  transition: opacity 140ms ease, transform 140ms ease;
}

.app-nav__btn:hover .app-nav__hover-label,
.app-nav__btn:focus-visible .app-nav__hover-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.app-nav__btn + .app-nav__btn {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.app-nav__btn:hover,
.app-nav__btn:focus-visible {
  background: rgba(0, 97, 122, 0.72);
  outline: none;
}

.app-nav__btn.is-active {
  background: rgba(0, 97, 122, 0.95);
}

.app-nav__icon {
  display: block;
  max-width: 24px;
  max-height: 24px;
  width: auto;
  height: auto;
}

.app-nav__icon--curated,
.app-nav__icon--trip,
.app-nav__icon--profile {
  max-height: 25px;
}

.nav-overlay-pane {
  position: absolute;
  top: 118px;
  right: 18px;
  width: min(392px, calc(100vw - 36px));
  z-index: 14;
  border-radius: 24px;
  background: rgba(246, 248, 248, 0.98);
  box-shadow: 0 18px 44px rgba(8, 23, 29, 0.24);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-overlay-pane.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-overlay-pane__inner {
  padding: 18px 18px 20px;
}

.nav-overlay-pane__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.nav-overlay-pane__kicker {
  font-family: var(--font-gotham);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6a8c96;
}

.nav-overlay-pane__title {
  margin: 4px 0 0;
  color: #1f4048;
  font-family: var(--font-gotham);
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.nav-overlay-pane__body {
  margin: 14px 0 0;
  color: #42545b;
  font-size: 18px;
  line-height: 1.55;
}

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

.lang-toggle {
  display: inline-flex;
  align-items: stretch;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #00617a;
  pointer-events: auto;
}

.lang-toggle__btn {
  border: 0;
  background: #00617a;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 42px;
  height: 100%;
  transition: background-color 140ms ease;
}

.lang-toggle__btn + .lang-toggle__btn {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.lang-toggle__btn.is-active {
  background: #91cfe0;
}

.lang-toggle__btn.is-inactive {
  background: #00617a;
}

.lang-toggle__flag {
  width: 24px;
  height: 16px;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  transition: opacity 140ms ease, filter 140ms ease;
}

.lang-toggle__btn.is-active .lang-toggle__flag {
  opacity: 1;
  filter: none;
}

.lang-toggle__btn.is-inactive .lang-toggle__flag {
  opacity: 0.7;
  filter: grayscale(0.35) brightness(0.85);
}

.ghost-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.77);
  font-size: clamp(11px, 1.2vw, 15px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 6px;
  cursor: pointer;
  font-family: var(--font-gotham);
  font-weight: 400;
}

.ghost-btn--mobile-auth {
  display: none;
  font-weight: 500;
}

.ghost-btn--cta {
  color: #ffffff;
  background: #00617a;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 400;
}

.profile-launch__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 999px;
  background: #0b5360;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

.profile-launch__badge.is-unread {
  background: #c97a82;
}

.profile-launch__badge.is-quiet {
  background: #0b5360;
}

.auth-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 28, 34, 0.46);
  backdrop-filter: blur(4px);
  z-index: 48;
  display: none;
  pointer-events: auto;
}

.auth-backdrop.is-open {
  display: block;
}

.auth-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(980px, calc(100vw - 32px));
  min-height: min(620px, calc(100dvh - 40px));
  max-height: calc(100dvh - 32px);
  background: rgba(243, 243, 243, 0.99);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 18px;
  box-shadow: var(--ui-shadow);
  z-index: 50;
  display: none;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  overflow: hidden;
  pointer-events: auto;
}

.auth-modal.is-open {
  display: grid;
}

.auth-modal__close {
  position: absolute;
  top: 22px;
  right: 16px;
  z-index: 2;
}

.auth-modal__toast {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  max-width: min(320px, calc(100% - 112px));
  padding: 9px 14px;
  border-radius: 999px;
  background: #3dbef5;
  color: #ffffff;
  font: 500 13px/1.2 "Gotham Narrow", var(--font-gotham);
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 10px 30px rgba(18, 42, 52, 0.18);
  pointer-events: none;
}

.auth-modal__promo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.28), transparent 34%),
    radial-gradient(circle at 76% 22%, rgba(255,255,255,0.14), transparent 28%),
    linear-gradient(160deg, #3f7f91 0%, #5f97a6 48%, #2f5f7d 100%);
  color: #ffffff;
  padding: 28px 28px 26px;
  display: grid;
  align-content: start;
  gap: 18px;
}

.auth-modal__graphic {
  position: relative;
  min-height: 250px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background:
    linear-gradient(180deg, rgba(14, 37, 47, 0.04), rgba(14, 37, 47, 0.18)),
    url("./assets/auth/one.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.auth-modal__graphic-orb {
  display: none;
}

.auth-modal__graphic-grid {
  display: none;
}

.auth-modal__promo-copy {
  display: grid;
  gap: 10px;
}

.auth-modal__eyebrow {
  margin-top: 6px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.auth-modal__promo-title {
  margin: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 34px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.auth-modal__promo-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.94);
}

.auth-modal__form-pane {
  padding: 44px 26px 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: auto;
}

.auth-modal__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-right: 68px;
}

.auth-modal.is-reset-mode .auth-modal__tabs {
  display: none;
}

.auth-modal__tab {
  border: 1px solid rgba(72, 138, 155, 0.22);
  background: rgba(255,255,255,0.84);
  color: #335662;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.auth-modal__tab.is-active {
  background: rgba(72, 138, 155, 0.12);
  border-color: rgba(72, 138, 155, 0.34);
  color: #173845;
}

.auth-modal__status {
  min-height: 18px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
  color: #506068;
}

.auth-modal__status.is-error {
  color: #a33d3d;
}

.auth-modal__status.is-success {
  color: #2f7b38;
}

.auth-modal__form {
  display: contents;
}

.auth-modal__field {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  border: 0;
  padding: 0;
  min-width: 0;
}

.auth-modal__field span,
.auth-modal__field legend {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #304049;
}

.auth-modal__field legend {
  margin: 0 0 6px;
  padding: 0;
}

.auth-modal__field input,
.auth-modal__field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(95, 107, 115, 0.25);
  background: rgba(255, 255, 255, 0.95);
  color: #223038;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 12px;
}

.auth-modal__field input[readonly] {
  background: rgba(242, 246, 247, 0.98);
  color: #506068;
}

.auth-modal__pane-title {
  margin: 0 0 10px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  color: #173845;
}

.auth-modal__pane-intro {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #506068;
}

.auth-modal__field--radio {
  margin-top: 15px;
  margin-bottom: 14px;
  justify-items: start;
}

.auth-modal__radio-group {
  display: grid;
  gap: 8px;
  justify-items: start;
  justify-content: start;
  width: 100%;
}

.auth-modal__radio-option {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
  padding: 2px 0;
  cursor: pointer;
  text-align: left;
}

.auth-modal__radio-option input {
  margin: 0;
  accent-color: #5d9d62;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  justify-self: start;
}

.auth-modal__radio-option span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #233038;
  text-align: left;
  margin-left: 0;
  justify-self: start;
}

.auth-modal__checkbox-field {
  margin: 28px 0 0;
}

.auth-modal__checkbox-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.auth-modal__checkbox-option input {
  margin: 0;
  width: 14px;
  height: 14px;
  accent-color: #5d9d62;
  transform: translateY(2px);
}

.auth-modal__checkbox-copy {
  min-width: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: #304049;
}

.auth-modal__inline-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: rgba(0, 97, 122, 0.9);
  cursor: pointer;
}

.auth-modal__inline-link:hover {
  color: rgba(0, 74, 94, 0.98);
}

.auth-modal__inline-link:focus-visible {
  outline: 2px solid rgba(0, 97, 122, 0.28);
  outline-offset: 2px;
  border-radius: 2px;
}

.auth-modal__submit {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #5d9d62;
  color: #fff;
  min-height: 44px;
  padding: 12px 14px;
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#auth-pane-signup .auth-modal__submit {
  margin-top: 15px;
}

#auth-pane-signin .auth-modal__submit,
#auth-pane-forgot .auth-modal__submit,
#auth-pane-reset .auth-modal__submit {
  margin-top: 24px;
}

.auth-modal__submit:hover {
  background: #4f8954;
}

.auth-modal__submit--secondary {
  background: #72a4a7;
}

.auth-modal__submit--secondary:hover {
  background: #5d9194;
}

.auth-modal__text-link {
  border: 0;
  background: transparent;
  color: rgba(0, 97, 122, 0.9);
  display: block;
  width: fit-content;
  padding: 0;
  margin: 26px 0 0 auto;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.auth-modal__text-link:hover {
  text-decoration: underline;
}

.auth-modal__verify,
.auth-modal__signed-in {
  border: 1px solid rgba(188, 76, 92, 0.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.96) 0%, rgba(255, 238, 241, 0.92) 100%);
  padding: 12px;
  opacity: 1;
}

.auth-modal__verify-copy {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.45;
  color: #7b2534;
  font-weight: 600;
}

.auth-modal__verify-actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-modal__mini-btn {
  border-radius: 8px;
  border: 1px solid rgba(188, 76, 92, 0.32);
  background: rgba(255,255,255,0.98);
  color: #8a2f40;
  padding: 8px 12px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.suggestions-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 28, 34, 0.46);
  backdrop-filter: blur(4px);
  z-index: 48;
  display: none;
  pointer-events: auto;
}

.suggestions-backdrop.is-open {
  display: block;
}

.suggestions-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  background: rgba(246, 247, 246, 0.99);
  border: 1px solid rgba(109, 122, 132, 0.2);
  border-radius: 8px;
  box-shadow: var(--ui-shadow);
  z-index: 50;
  display: none;
  padding: 28px 24px 24px;
  overflow: auto;
  pointer-events: auto;
}

.suggestions-modal.is-open {
  display: block;
}

.suggestions-modal__close {
  position: absolute;
  top: 18px;
  right: 14px;
}

.suggestions-modal__title {
  margin: 0 72px 12px 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #173845;
}

.suggestions-modal__intro {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.48;
  color: #42505a;
}

.suggestions-modal__form {
  display: grid;
  gap: 12px;
}

.suggestions-modal__field {
  display: grid;
  gap: 7px;
}

.suggestions-modal__field span {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 600;
  color: #304049;
}

.suggestions-modal__field textarea {
  width: 100%;
  min-height: 96px;
  box-sizing: border-box;
  resize: vertical;
  border: 1px solid rgba(95, 107, 115, 0.25);
  background: #ffffff;
  color: #223038;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.42;
  padding: 11px 12px;
}

.suggestions-modal__counter,
.suggestions-modal__auth-note,
.suggestions-modal__status {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: #627079;
}

.suggestions-modal__counter {
  justify-self: end;
}

.suggestions-modal__auth-note.is-warning,
.suggestions-modal__status.is-error {
  color: #9b3d43;
}

.suggestions-modal__status {
  min-height: 17px;
}

.suggestions-modal__status.is-success {
  color: #2f7b38;
}

.suggestions-modal__submit {
  border: 0;
  border-radius: 8px;
  background: #00617a;
  color: #ffffff;
  min-height: 42px;
  padding: 11px 14px;
  font-family: var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.suggestions-modal__submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

body.suggestions-modal-open {
  overflow: hidden;
}

body.auth-modal-open {
  overflow: hidden;
}

body.profile-pane-open {
  overflow: hidden;
}

.landing-panel {
  position: absolute;
  left: 12px;
  top: 78px;
  width: min(465px, calc(100vw - 24px));
  border-radius: 66px;
  background:
    radial-gradient(circle at 52% 68%, rgba(31, 78, 92, 0.52) 0%, rgba(31, 78, 92, 0.28) 28%, rgba(31, 78, 92, 0) 56%),
    linear-gradient(154deg, #285865 0%, #2f6b79 42%, #488a9b 100%);
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--ui-shadow);
  overflow: hidden;
  display: none;
  flex-direction: column;
  pointer-events: auto;
  z-index: 22;
}

.landing-panel.is-open {
  display: flex;
}

.landing-panel__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
}

.landing-panel__head {
  position: absolute;
  top: 20px;
  right: 16px;
  z-index: 2;
}

.landing-panel__close {
  color: #ffffff !important;
  opacity: 1 !important;
}

@media (min-width: 761px) {
  .landing-panel__close {
    position: relative;
  }

  .landing-panel__close::before {
    content: "";
    position: absolute;
    inset: -10px -14px;
  }
}

.landing-panel__image-wrap {
  position: relative;
  margin-top: 0;
  border-radius: 63px 63px 0 0;
  overflow: hidden;
  aspect-ratio: 1.96 / 1;
  flex: 0 0 auto;
  background:
    url("./assets/landing/tripshaper-cover.jpg") center 26% / cover no-repeat,
    rgba(11, 43, 54, 0.26);
}

.landing-panel__image {
  display: none;
}

.landing-panel__image-label {
  position: absolute;
  left: 18px;
  bottom: 7px;
  font-family: var(--font-gotham);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.96);
  opacity: 0.4;
}

.landing-panel__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px 18px 18px;
  color: rgba(242, 246, 247, 0.89);
  min-height: 0;
}

.landing-panel__title {
  margin: 0 0 18px;
  font-family: var(--font-gotham);
  font-size: 24px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(238, 245, 246, 0.89);
}

.landing-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  font-family: var(--font-gotham);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(239, 245, 246, 0.89);
}

.landing-panel__cta {
  margin-top: 24px;
}

.landing-panel__cta-copy {
  font-family: var(--font-gotham);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.landing-panel__cta-link {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-gotham);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  color: #edf08f;
  text-decoration: none;
}

.landing-panel__cta-link:hover,
.landing-panel__cta-link:focus-visible {
  color: #f7f388;
  text-decoration: underline;
  text-underline-offset: 0.12em;
  outline: none;
}

.landing-panel__places {
  margin-top: 14px;
  display: grid;
  gap: 12px;
  padding-left: 36px;
}

.landing-panel__place-link {
  width: 100%;
  border: 0;
  padding: 2px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-family: var(--font-gotham);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
  text-transform: uppercase;
}

.landing-panel__place-link:hover,
.landing-panel__place-link:focus-visible {
  color: #edf08f;
  outline: none;
}

.landing-panel__consent {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.89);
}

.landing-panel__consent input {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: #91cfe0;
}

.map-page-footer-links {
  position: absolute;
  left: 50%;
  bottom: max(10px, calc(env(safe-area-inset-bottom) + 8px));
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  max-width: calc(100vw - 24px);
  padding: 6px 4px;
  color: #ffffff;
  opacity: 0.5;
}

.map-page-footer-link {
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-gotham);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.map-page-footer-links__separator {
  font-family: var(--font-gotham);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
}

.map-page-footer-link:hover,
.map-page-footer-link:focus-visible {
  color: #ffffff;
  outline: none;
}

.map-page-footer-links:hover,
.map-page-footer-links:focus-within {
  opacity: 0.72;
}

.place-panel {
  position: absolute;
  left: 12px;
  top: 78px;
  bottom: 12px;
  width: min(var(--info-pane-max-width), calc(100vw - 24px));
  border-radius: 14px;
  background: rgba(243, 243, 243, 0.97);
  border: 1px solid rgba(109, 122, 132, 0.18);
  box-shadow: var(--ui-shadow);
  backdrop-filter: blur(8px);
  transform: translateX(-108%);
  transition: transform 220ms ease, height 220ms ease, max-height 220ms ease;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
}

.place-panel.is-hidden-empty-state {
  display: none !important;
}

.profile-pane {
  position: fixed;
  top: 78px;
  left: 12px;
  width: min(var(--info-pane-max-width), calc(100vw - 24px));
  max-height: calc(100dvh - 90px);
  background: rgba(243, 243, 243, 0.985);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 18px;
  box-shadow: var(--ui-shadow);
  z-index: 27;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  resize: vertical;
  transform: translateX(-18px);
  opacity: 0;
  pointer-events: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.profile-pane.is-open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.profile-pane__inner {
  padding: 12px 14px 18px;
  overflow: auto;
}


.profile-pane__head {
  align-items: flex-start;
  position: relative;
  isolation: isolate;
  padding-left: 0;
  padding-right: 0;
}
.profile-pane__head-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  pointer-events: none;
}

.profile-pane__signout-btn {
  border: 0;
  background: transparent;
  color: #5f6b73;
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 140ms ease;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.profile-pane__signout-btn:hover {
  opacity: 1;
}

#profile-pane-close {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 701px) {
  .profile-pane__head {
    align-items: baseline;
  }

  .profile-pane__signout-btn,
  #profile-pane-close {
    line-height: 1.1;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

#profile-pane-eyebrow {
  margin-top: 0;
  pointer-events: none;
  max-width: 100%;
}


.profile-pane__photos {
  display: grid;
  grid-template-columns: repeat(var(--profile-photo-count, 3), minmax(0, 1fr));
  gap: 0;
  height: 120px;
  margin-bottom: 14px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.profile-pane__photos.is-hidden {
  display: none;
}

.profile-pane__photo {
  height: 100%;
  border-radius: 0;
  background: #6d9dca;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.profile-pane__title-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.profile-pane__identity-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-height: 50px;
  min-width: 0;
}

.profile-pane__avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-self: start;
}

.profile-pane__title {
  margin: 0;
  line-height: 1.05;
  min-width: 0;
}

.profile-pane__identity-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: start;
  gap: 8px;
  min-width: max-content;
}

.profile-pane__header-menu {
  align-self: flex-end;
}

.profile-pane__provider-meta {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 500;
  color: #6b7880;
  margin: 4px 0 0;
  text-align: left;
}

.profile-pane__provider-meta-line {
  margin-top: 2px;
}

.profile-pane__provider-meta-line:first-child {
  margin-top: 0;
}

.profile-pane__identity-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 6px;
}

.profile-pane__followers-btn,
.profile-pane__contact-me-btn,
.tripshaper-pill-btn {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 112, 119, 0.22);
  background: #fff;
  color: #294247;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.profile-pane__followers-btn:hover,
.profile-pane__contact-me-btn:hover,
.tripshaper-pill-btn:hover {
  background: rgba(220, 241, 240, 0.96);
}

.profile-pane__view-map-btn {
  border-color: rgba(55, 125, 129, 0.24);
  color: #24585c;
}

.tripshaper-pill-btn--map {
  border-color: rgba(55, 125, 129, 0.24);
  color: #24585c;
}

.profile-subpane {
  position: fixed;
  top: 88px;
  left: calc(12px + min(var(--info-pane-max-width), calc(100vw - 24px)) + 14px);
  width: min(440px, 84vw);
  height: min(620px, calc(100dvh - 120px));
  min-height: 300px;
  max-height: calc(100dvh - 24px);
  background: rgba(243, 243, 243, 0.985);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 14px;
  box-shadow: var(--ui-shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
  z-index: 80;
  display: none;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
}

.profile-subpane.is-open {
  transform: translateX(0);
  display: flex;
}

.profile-subpane__inner {
  padding: 12px 14px 14px;
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.profile-subpane__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(109, 122, 132, 0.16);
}

.profile-subpane__head .panel-close {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}


.profile-subpane.is-dragging .profile-subpane__drag-handle {
  cursor: grabbing;
}

.profile-subpane__drag-handle {
  cursor: grab;
  flex: 1 1 auto;
  min-width: 0;
  pointer-events: auto;
  position: relative;
  z-index: 4;
  touch-action: none;
  user-select: none;
}
.profile-subpane__meta {
  min-width: 0;
}

.profile-subpane__back-btn {
  border: 0;
  background: transparent;
  color: #5f6b73;
  font-family: var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 4px 2px 0;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 140ms ease;
}

.profile-subpane__back-btn:hover {
  opacity: 1;
}

.profile-subpane__title {
  margin-top: 4px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  color: #22313a;
}

.profile-subpane__title-btn {
  display: inline-flex;
  width: auto;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  color: #00617a;
  cursor: pointer;
}

.profile-subpane__title-btn:hover {
  color: #004b5d;
}

.profile-subpane__tabs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  position: relative;
  z-index: 2;
}

.profile-subpane__tab {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid rgba(114, 164, 167, 0.42);
  background: rgba(255, 255, 255, 0.56);
  color: #3a4b52;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.profile-subpane__tab.is-active {
  background: rgba(114, 164, 167, 0.16);
  color: #1f3037;
}

.profile-subpane__list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 16px;
}

.profile-subpane--contact .profile-subpane__list {
  gap: 0;
}

.profile-subpane--contact .profile-contact-card {
  border-top: 0;
  padding-top: 0;
}

.profile-subpane--contact .profile-subpane__back-btn {
  color: #00617a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  padding-top: 2px;
}

.profile-subpane--contact .profile-subpane__back-btn:hover {
  color: #004b5d;
}

.profile-subpane--settings {
  resize: none;
}

.profile-subpane__resize-handle {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 18px;
  height: 18px;
  cursor: nwse-resize;
  z-index: 5;
  pointer-events: auto;
}

.profile-subpane--settings .profile-subpane__resize-handle {
  cursor: ns-resize;
}

.profile-subpane__resize-handle::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-right: 2px solid rgba(95, 107, 115, 0.55);
  border-bottom: 2px solid rgba(95, 107, 115, 0.55);
  border-bottom-right-radius: 3px;
}

.profile-settings-pane__identity,
.profile-bookings-pane__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.profile-settings-pane__identity-copy,
.profile-bookings-pane__identity-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

#profile-settings-avatar.profile-pane__avatar,
#profile-bookings-avatar.profile-pane__avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-self: center;
}

#profile-settings-name.profile-subpane__title,
#profile-bookings-name.profile-subpane__title {
  margin: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 18px;
  line-height: 1.05;
  font-weight: 700;
  color: #22313a;
}

.profile-bookings-pane__body {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-bottom: 16px;
}

.profile-bookings-pane__content {
  display: grid;
  gap: 10px;
}

.profile-settings-pane__section {
  margin-top: 16px;
}

.profile-settings-pane__section:has(#profile-settings-triptalker) {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 2px solid rgba(114, 164, 167, 0.44);
}

.profile-settings-pane__section:has(#profile-settings-question-responses) {
  margin-top: 14px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(114, 164, 167, 0.44);
}

.profile-settings-pane__toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font: 14px/1.45 var(--font-body);
  color: #5d6a72;
}

.profile-settings-pane__toggle input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #9aa5ab;
  border-radius: 4px;
  background: #ffffff;
  position: relative;
  pointer-events: auto;
  z-index: 3;
  flex: 0 0 16px;
}

.profile-settings-pane__toggle input:checked {
  background-color: #ffffff;
  border-color: #8e989e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2 4.5 8.7 10 3.2' fill='none' stroke='%23525d64' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

.profile-settings-pane__toggle span {
  display: block;
  min-width: 0;
}

.profile-settings-pane__toggle-copy {
  font: inherit;
  color: inherit;
}

.profile-settings-pane__link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #055468;
  font: 600 15px/1.2 "Gotham Narrow", var(--font-gotham);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.profile-settings-pane__actions {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 30px;
  justify-items: start;
}

#profile-settings-logout,
#profile-settings-delete {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #055468;
  font: 600 15px/1.2 "Gotham Narrow", var(--font-gotham);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: left;
}

#profile-settings-terms,
#profile-settings-change-password,
#profile-settings-logout,
#profile-settings-delete {
  position: relative;
  z-index: 3;
  pointer-events: auto;
  opacity: 0.4;
  transition: opacity 140ms ease;
}

#profile-settings-logout:hover,
#profile-settings-delete:hover,
#profile-settings-change-password:hover,
#profile-settings-terms:hover {
  opacity: 1;
}

#profile-settings-logout:focus-visible,
#profile-settings-delete:focus-visible,
#profile-settings-terms:focus-visible {
  opacity: 1;
  outline: none;
}

#profile-settings-logout:active,
#profile-settings-delete:active,
#profile-settings-terms:active {
  opacity: 1;
}

.profile-settings-pane__confirm {
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(200, 111, 120, 0.36);
  border-radius: 10px;
  background: rgba(200, 111, 120, 0.06);
}

.profile-settings-pane__confirm-text {
  font: 13px/1.4 var(--font-body);
  color: #314149;
}

.profile-settings-pane__confirm-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.profile-settings-pane__terms-copy {
  margin-top: 16px;
  display: grid;
  gap: 10px;
  font: 14px/1.5 var(--font-body);
  color: #304149;
}

.profile-subpane--terms {
  z-index: 29;
}

.profile-pane--terms {
  top: 88px;
  left: 12px;
  width: min(465px, calc(100vw - 24px));
  max-height: calc(100dvh - 100px);
  z-index: 29;
  resize: none;
  display: none;
  background:
    radial-gradient(circle at 52% 68%, rgba(31, 78, 92, 0.52) 0%, rgba(31, 78, 92, 0.28) 28%, rgba(31, 78, 92, 0) 56%),
    linear-gradient(154deg, #285865 0%, #2f6b79 42%, #488a9b 100%);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 66px;
  overflow: hidden;
}

.profile-pane--terms.is-open {
  display: flex;
}

.profile-pane--terms .panel-grabber {
  display: none;
}

.profile-terms-pane__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 0 30px;
  overflow: auto;
}

.profile-terms-pane__head {
  position: absolute;
  top: 20px;
  right: 16px;
  left: 16px;
  z-index: 2;
  justify-content: flex-end;
  pointer-events: none;
}

.profile-terms-pane__drag-handle,
.profile-terms-pane__close {
  pointer-events: auto;
}

.profile-terms-pane__close {
  color: #ffffff !important;
  opacity: 1 !important;
}

.profile-terms-pane__image-wrap {
  position: relative;
  margin-top: 0;
  border-radius: 63px 63px 0 0;
  overflow: hidden;
  aspect-ratio: 1.96 / 1;
  flex: 0 0 auto;
  background:
    url("./assets/landing/tripshaper-cover.jpg") center 26% / cover no-repeat,
    rgba(11, 43, 54, 0.26);
}

.profile-terms-pane__image-label {
  position: absolute;
  left: 18px;
  bottom: 7px;
  font-family: var(--font-gotham);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #00617a;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.78);
}

.profile-terms-pane__body {
  display: flex;
  flex-direction: column;
  padding: 22px 18px 18px;
  color: rgba(242, 246, 247, 0.89);
}

.profile-terms-pane__tabs {
  margin-top: 0;
  margin-bottom: 6px;
}

.profile-terms-pane__copy {
  margin-top: 24px;
  font: 14px/1.55 var(--font-body);
  color: rgba(239, 245, 246, 0.89);
}

.profile-terms-pane__copy p {
  margin: 0 0 14px;
}

.profile-terms-pane__copy h3,
.profile-terms-pane__copy h4 {
  margin: 0 0 12px;
  font-family: var(--font-gotham);
  line-height: 1.25;
  color: rgba(244, 248, 249, 0.94);
}

.profile-terms-pane__copy h3 {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
}

.profile-terms-pane__copy h3:first-child {
  margin-top: 0;
}

.profile-terms-pane__copy h4 {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 700;
}

.profile-terms-pane__copy ul {
  margin: 0 0 14px 18px;
  padding: 0;
}

.profile-terms-pane__copy li {
  margin: 0 0 6px;
}

.profile-terms-pane__copy hr {
  border: 0;
  border-top: 1px solid rgba(239, 245, 246, 0.2);
  margin: 24px 0;
}

#profile-subpane-empty {
  margin-top: 24px;
}

.profile-subpane__row {
  display: flex;
  gap: 10px;
  align-items: start;
  width: 100%;
  padding: 8px 0;
  border-top: 1px solid rgba(109, 122, 132, 0.12);
  background: transparent;
  cursor: pointer;
}

.profile-subpane__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.profile-subpane__row-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
}

.feed-avatar.profile-subpane__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.profile-subpane__copy {
  min-width: 0;
  width: 100%;
}


.profile-subpane__row:focus-visible {
  outline: 2px solid rgba(114, 164, 167, 0.55);
  outline-offset: 2px;
}
.profile-subpane__name {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: #1d2b35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.profile-subpane__name-link {
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  text-align: left;
  cursor: pointer;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.profile-subpane__name-link:hover {
  color: #055468;
}
.profile-subpane__about {
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
  color: #22313a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-subpane__check {
  margin-top: 10px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #9aa5ab;
  border-radius: 4px;
  background: #ffffff;
  position: relative;
  pointer-events: auto;
  z-index: 3;
}

.profile-subpane__check:checked {
  background-color: #ffffff;
  border-color: #8e989e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.2 4.5 8.7 10 3.2' fill='none' stroke='%23525d64' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}

#profile-pane .panel-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(114, 164, 167, 0.44) !important;
  box-shadow: none !important;
}

.profile-relationships-shell {
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(109, 122, 132, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 10px;
}

.profile-relationships-shell.is-hidden {
  display: none;
}

.profile-relationships-tabs {
  display: flex;
  gap: 8px;
}

.profile-relationships-tab {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(114, 164, 167, 0.42);
  background: rgba(255, 255, 255, 0.56);
  color: #3a4b52;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.profile-relationships-tab.is-active {
  background: rgba(114, 164, 167, 0.16);
  color: #1f3037;
}

.profile-relationships-list {
  display: grid;
  gap: 8px;
}

.profile-relationship-row {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  width: 100%;
  padding: 8px 0;
  border: 0;
  border-top: 1px solid rgba(109, 122, 132, 0.12);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.profile-relationship-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.profile-relationship-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.profile-relationship-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.profile-relationship-name {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 600;
  color: #23343c;
}

.profile-relationship-about {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: #5a6870;
}

.profile-pane__edit-btn {
  border: 0;
  background: transparent;
  color: #ef7b82;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  padding: 4px 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.profile-pane__edit-btn.profile-pane__contact-me-btn {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 112, 119, 0.22);
  background: #fff;
  color: #294247;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.profile-pane__contact-me-btn {
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(86, 112, 119, 0.22);
  background: #fff;
  color: #294247;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex: 0 0 auto;
}

.profile-verify-notice {
  margin-top: 10px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(196, 79, 94, 0.48);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 244, 246, 0.98) 0%, rgba(255, 236, 240, 0.95) 100%);
  box-shadow: 0 10px 24px rgba(150, 63, 81, 0.12);
  display: grid;
  gap: 8px;
  opacity: 1;
}

.profile-verify-notice.is-hidden {
  display: none;
}

.profile-verify-notice__text {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #b33d50;
}

.profile-verify-notice__btn {
  justify-self: start;
  border: 1px solid rgba(196, 79, 94, 0.4);
  background: rgba(255, 255, 255, 0.98);
  color: #c44f5e;
  border-radius: 8px;
  min-height: 36px;
  padding: 7px 12px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 1;
}

.profile-verify-notice__btn:hover {
  background: rgba(255, 240, 242, 0.95);
}

.profile-verify-notice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-verify-notice__btn--tiny {
  font-size: 10px;
  min-height: 28px;
  padding: 4px 8px;
  opacity: 0.75;
}

.profile-pane__about {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 400;
}

.profile-pane__meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(114, 164, 167, 0.44);
}

.profile-pane__contact-block,
.profile-pane__area-block {
  display: grid;
  align-content: start;
}

.profile-pane__contact-block {
  order: 2;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(114, 164, 167, 0.44);
}

.profile-pane__area-block {
  order: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 20px;
}

#profile-pane .profile-pane__meta-section-title,
#profile-pane .profile-pane__latest-section > .section-title,
#profile-pane .profile-pane__seen-section > .section-title {
  grid-column: 1 / -1;
  margin-top: 6px;
  margin-bottom: 4px;
  font-weight: 900;
}

#profile-pane #profile-tagged-posts-section > .section-title {
  grid-column: 1 / -1;
  margin-top: 6px;
  margin-bottom: 4px;
}

.profile-pane__contact-block > .provider-card__divider {
  margin: 4px 0;
}

.profile-pane__contact-block > .provider-room-option-list {
  margin-top: 0;
}

.profile-pane__contact-row {
  min-width: 0;
}

#profile-pane .profile-pane__contact-row {
  font-size: 14px;
}

#profile-pane .profile-pane__contact-row strong {
  font-size: 14px;
}

.profile-pane__contact-marker {
  color: #87b8a0;
  font-size: 11px;
}

.profile-pane__area-row {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  line-height: 1.05;
  font-weight: 500;
  color: #2b8a93;
  margin-left: 0;
  min-width: 0;
}

.profile-pane__area-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.profile-pane__area-link:hover {
  text-decoration: underline;
}

.profile-pane__empty-small {
  font-size: 12px;
  color: #cf7c88;
  grid-column: 1 / -1;
}

.profile-pane__empty-dual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.profile-public-contact-shell {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(109, 122, 132, 0.16);
  border-radius: 10px;
  background: rgba(236, 241, 243, 0.94);
  display: grid;
  gap: 10px;
  box-shadow: 0 12px 26px rgba(37, 57, 67, 0.18);
}

.profile-public-contact-shell.is-hidden {
  display: none;
}

.profile-public-contact-label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  font-weight: 700;
  color: #223038;
  margin-bottom: 4px;
}

.profile-public-contact-input {
  min-height: 56px;
  resize: vertical;
  margin-bottom: 4px;
}

.profile-public-contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 4px;
}

.profile-public-contact-cancel {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid rgba(86, 112, 119, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #56646c;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.profile-public-contact-send {
  min-height: 36px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
}

.profile-public-contact-status {
  min-height: 0;
  font: 12px/1.3 var(--font-body);
  color: #506068;
  display: none;
}

.profile-public-contact-status.is-visible {
  display: block;
}

.profile-public-contact-status.is-error {
  color: #a33d3d;
}

.profile-public-contact-status.is-success {
  color: #2f7b38;
}

.profile-edit-shell {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(109, 122, 132, 0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.72);
}

.profile-subpane--edit {
  top: 88px;
  left: 12px;
  width: min(var(--info-pane-max-width), calc(100vw - 24px));
  height: calc(100dvh - 100px);
  max-height: calc(100dvh - 100px);
  z-index: 82;
}

.profile-subpane--edit .profile-subpane__inner {
  padding-bottom: 18px;
}

.profile-subpane--edit .profile-edit-shell {
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.profile-edit-form {
  display: grid;
  gap: 21px;
}

.profile-edit-field {
  display: grid;
  gap: 7px;
}

.profile-edit-field span {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 500;
  color: #314049;
}

.profile-edit-field__inline-label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 500;
  color: #314049;
}

.profile-edit-field input,
.profile-edit-field textarea,
.profile-edit-field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd6dc;
  border-radius: 8px;
  padding: 9px 10px;
  font: 13px/1.4 var(--font-body);
  color: #213039;
  background: rgba(255,255,255,0.96);
}

.profile-edit-avatar-row {
  display: grid;
  gap: 7px;
}

.profile-edit-avatar-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-edit-avatar-preview {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  background: #d7e0e5 center center / cover no-repeat;
}

.profile-edit-avatar-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(72, 138, 155, 0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  color: #365867;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.profile-provider-fields {
  display: grid;
  gap: 21px;
}

.profile-provider-fields--spaced {
  margin-top: 14px;
}

.profile-edit-map-pin {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(87, 134, 96, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(244, 249, 243, 0.96) 0%, rgba(236, 244, 233, 0.92) 100%);
}

.profile-edit-map-pin--spaced {
  margin-top: 14px;
}

.profile-edit-map-pin-btn {
  width: fit-content;
  min-width: 180px;
}

.profile-edit-map-pin-confirm {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 600;
  color: #2f7b38;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.profile-edit-map-pin-captured {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.profile-edit-map-pin-captured-label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 600;
  color: rgba(48, 75, 56, 0.88);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-edit-map-pin-captured-value {
  font: 15px/1.4 var(--font-body);
  color: #213039;
  word-break: break-word;
}

.profile-edit-map-pin-captured-link {
  width: fit-content;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 600;
  color: #2e6caa;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.profile-edit-map-pin-captured-link:hover,
.profile-edit-map-pin-captured-link:focus-visible {
  color: #214f7d;
}

.profile-edit-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.profile-edit-photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.profile-edit-photo-tile {
  display: grid;
  gap: 7px;
  cursor: pointer;
  position: relative;
}

.profile-edit-photo-tile__label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 500;
  color: #314049;
}

.profile-edit-photo-tile__preview {
  display: block;
  aspect-ratio: 1.35 / 1;
  border: 1px solid #cbd6dc;
  border-radius: 8px;
  background: #d7e0e5 center center / cover no-repeat;
  opacity: 1;
}

.profile-edit-photo-tile__delete {
  position: absolute;
  top: 28px;
  right: 6px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 44, 51, 0.72);
  color: #fff;
  font: 700 16px/1 var(--font-gotham);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 2;
}

.profile-edit-photo-tile.has-photo .profile-edit-photo-tile__delete {
  display: inline-flex;
}

.profile-edit-photo-tile__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(72, 138, 155, 0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  color: #365867;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.profile-edit-contact-stack {
  display: grid;
  gap: 21px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(109, 122, 132, 0.18);
}

.profile-edit-field--contact-first {
  margin-top: 0;
}

.profile-edit-help {
  font: 14px/1.45 var(--font-body);
  color: #5d6a72;
  margin-top: 0;
}

.profile-edit-help--spaced {
  margin-top: 10px;
}

.profile-edit-field--tagged-places {
  margin-top: 0;
}

.profile-edit-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #243443;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

#profile-edit-map-pin-section .profile-edit-section-title,
#profile-provider-extra-fields > .profile-edit-section-title {
  font-size: 14px;
  line-height: 1.15;
}

.profile-edit-areas {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.profile-edit-area-row {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 7px 10px;
  align-items: center;
}

.profile-edit-area-row.is-duplicate .profile-edit-area-input {
  border-color: rgba(207, 124, 136, 0.72);
}

.profile-edit-area-input {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd6dc;
  border-radius: 8px;
  padding: 9px 10px;
  font: 13px/1.4 var(--font-body);
  color: #213039;
  background: rgba(255,255,255,0.96);
}

.profile-edit-area-notify {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.profile-edit-check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: 14px/1.25 var(--font-body);
  color: #44545d;
}

.profile-edit-area-warning {
  grid-column: 1 / -1;
}

#profile-edit-form .review-btn {
  font-size: 12px;
}

#profile-edit-form .posts-composer-status {
  font-size: 14px;
}

#profile-edit-business-location-error:not(:empty) {
  margin-bottom: 8px;
}

.profile-edit-provider-certify {
  margin-top: 24px;
  gap: 6px;
}

.profile-edit-provider-certify span {
  font-size: 15px;
  line-height: 1.4;
}

.profile-edit-provider-certify input {
  margin: 0;
}

.profile-edit-area-warning {
  font: 11px/1.3 var(--font-body);
  color: #cf7c88;
  margin-left: 2px;
}

.profile-edit-bookings-note {
  margin-top: 18px;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(56, 94, 122, 0.16);
  border-radius: 10px;
  background: rgba(238, 244, 247, 0.9);
  font: 15px/1.45 var(--font-body);
  color: #41525d;
}

.profile-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 12px;
}

.profile-edit-cancel,
.profile-edit-save {
  min-height: 38px;
  padding-inline: 14px;
}

.profile-contact-list {
  display: grid;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.profile-contact-card {
  border-top: 1px solid rgba(109, 122, 132, 0.16);
  padding-top: 12px;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.profile-contact-card--private {
  background: rgba(32, 44, 51, 0.06);
  border-bottom: 1px solid rgba(109, 122, 132, 0.16);
  border-radius: 8px;
  padding: 12px 10px;
}

.profile-contact-card.is-deep-linked {
  box-shadow: 0 0 0 2px rgba(46, 139, 143, 0.3);
  background: rgba(46, 139, 143, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.profile-contact-card__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.profile-contact-card__head > .overflow-menu {
  margin-left: auto;
}

.profile-contact-card__head-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.profile-contact-card__head .feed-avatar {
  margin-top: calc((1.2em - 16px) / 2);
  align-self: flex-start;
  flex: 0 0 auto;
}

.profile-contact-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: 8px;
  row-gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}

.profile-contact-card__meta-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-contact-card__recipient-line {
  grid-column: 1 / -1;
  margin: 2px 0 6px;
  min-width: 0;
}

.profile-contact-card__title {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
  color: #202c33;
  min-width: 0;
  overflow-wrap: anywhere;
}

.profile-contact-card__link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
}

.profile-contact-card__link:hover {
  text-decoration: underline;
}

.profile-contact-card__surface-btn {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.profile-contact-card__role,
.profile-contact-card__age {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 500;
  color: rgba(123, 135, 143, 0.6);
}

.profile-contact-card__privacy {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8f6a84;
  white-space: nowrap;
  justify-self: end;
  align-self: start;
  text-align: right;
}

.profile-contact-card__place {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #475962;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  min-width: 0;
  overflow-wrap: anywhere;
}

.profile-contact-card__body {
  margin: 10px 0 0;
  font: 15px/1.4 var(--font-body);
  color: #27363f;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: pre-wrap;
}

.profile-contact-card__body-btn {
  display: block;
}

.profile-contact-card__place-line {
  margin: 0 0 8px;
}

.profile-contact-card__replies {
  margin-top: 10px;
  width: calc(100% - 18px);
  max-width: 100%;
  box-sizing: border-box;
}

.profile-contact-card__reply {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  font: 15px/1.35 var(--font-body);
  color: #2f3e46;
}

.profile-contact-card__reply-content {
  min-width: 0;
  line-height: inherit;
}

.profile-contact-card__reply strong {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
}

.profile-contact-card__reply-author {
  display: inline;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #202c33;
}

.profile-contact-card__reply-body {
  line-height: inherit;
  color: inherit;
}

.profile-contact-card__reply-dot {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #b388a0;
}

.profile-contact-card__input-row {
  margin: 10px 0 0 18px;
  width: calc(100% - 18px);
  max-width: calc(100% - 18px);
  box-sizing: border-box;
}

.profile-contact-card__input {
  min-height: 40px;
}

.profile-contact-card__send {
  align-self: start;
  min-height: 40px;
  height: 40px;
}

@media (min-width: 701px) {
  .profile-contact-card__send {
    font-size: 13px;
  }
}

#profile-pane .section-title {
  color: #202c33;
}

.place-panel.is-open {
  transform: none;
}

.panel-grabber {
  display: none;
}

.place-panel__inner {
  padding: 4px 14px 18px;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  flex: 1 1 auto;
}

.panel-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.review-btn--split {
  margin-top: 12px;
  font-size: 12px;
  min-height: 46px;
}

.review-btn--secondary {
  background: #72a4a7;
}

.review-btn--secondary:hover {
  background: #67979a;
}

.review-btn--provider {
  width: 100%;
  margin-top: 10px;
  background: rgba(0, 97, 122, 0.9) !important;
  min-height: 40px;
  padding: 10px 14px;
  font-size: 12px;
  line-height: 1.15;
}

.review-btn--provider:hover {
  background: #055468 !important;
}

.posts-drawer {
  position: fixed;
  top: 280px;
  left: calc(12px + min(var(--info-pane-max-width), calc(100vw - 24px)) + 14px);
  width: min(var(--feed-drawer-max-width), 84vw);
  height: min(420px, calc(100dvh - 160px));
  min-height: 260px;
  max-height: calc(100dvh - 24px);
  background: rgba(243, 243, 243, 0.985);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 14px;
  box-shadow: var(--ui-shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
  z-index: 28;
  display: none;
  flex-direction: column;
  overflow: hidden;
  resize: vertical;
  pointer-events: auto;
}

.providers-drawer,
.provider-detail-drawer {
  position: fixed;
  top: 252px;
  left: calc(12px + min(var(--info-pane-max-width), calc(100vw - 24px)) + 14px);
  width: min(var(--feed-drawer-max-width), 84vw);
  height: min(620px, calc(100dvh - 120px));
  min-height: 320px;
  max-height: calc(100dvh - 24px);
  background: rgba(243, 243, 243, 0.985);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 14px;
  box-shadow: var(--ui-shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
  z-index: 80;
  display: none;
  flex-direction: column;
  overflow: hidden;
  resize: vertical;
  pointer-events: auto;
}

.providers-drawer.is-open,
.provider-detail-drawer.is-open {
  transform: translateX(0);
  display: flex;
}

.providers-drawer__head,
.provider-detail-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 10px;
  border-bottom: 1px solid rgba(109, 122, 132, 0.16);
  cursor: grab;
  user-select: none;
  flex: 0 0 auto;
}

.providers-drawer.is-dragging .providers-drawer__head {
  cursor: grabbing;
}

.provider-detail-drawer.is-dragging .provider-detail-drawer__head {
  cursor: grabbing;
}

.providers-drawer__meta,
.provider-detail-drawer__meta {
  min-width: 0;
}

.providers-drawer__title,
.provider-detail-drawer__title {
  margin-top: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #22313a;
}

.providers-drawer__title {
  margin-top: 0;
}

#providers-breadcrumb {
  margin-bottom: 18px;
}

@media (min-width: 701px) {
  #posts-breadcrumb,
  #providers-breadcrumb {
    padding-top: 5px;
    margin-bottom: 13px;
  }
}

.providers-drawer__subtitle,
.provider-detail-drawer__subtitle {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
  color: #7a878f;
}

.providers-drawer__body,
.provider-detail-drawer__body {
  flex: 1 1 auto;
  padding: 12px 14px 14px;
  overflow: auto;
  overscroll-behavior: contain;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.providers-list {
  display: grid;
  gap: 12px;
}

.provider-detail-drawer {
  z-index: 82;
}

.provider-detail-content {
  display: grid;
  gap: 12px;
}

.provider-detail-drawer__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  row-gap: 0;
}

.provider-detail-drawer__head .panel-grabber {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 0 auto 6px;
}

.provider-detail-drawer__back {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  align-self: center;
  display: inline-flex;
  width: fit-content;
  max-width: max-content;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #5e727c;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.provider-detail-drawer__back:hover {
  color: #22313a;
}

.provider-detail-drawer__meta {
  display: none;
}

.provider-detail-drawer__close {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
}

.provider-detail-drawer__body {
  padding-top: 8px;
}

.provider-options__heading {
  margin-top: 2px;
  margin-bottom: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: inherit;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.provider-option-card {
  position: relative;
  border: 1px solid rgba(109, 122, 132, 0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  padding: 10px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.provider-option-card:hover {
  border-color: rgba(72, 138, 155, 0.45);
}

.provider-option-card.is-sponsored {
  border: 2px solid rgba(72, 138, 155, 0.58);
  background: rgba(255, 255, 255, 0.84);
}

.provider-option-card__learn-more {
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  color: rgba(90, 101, 110, 0.78);
  letter-spacing: 0.03em;
}

.provider-option-card__price {
  position: absolute;
  top: 22px;
  right: 10px;
  display: grid;
  justify-items: end;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.12;
  color: rgba(90, 101, 110, 0.78);
  letter-spacing: 0.03em;
  text-align: right;
  white-space: nowrap;
}

.provider-option-card.is-sponsored .provider-option-card__learn-more {
  color: #72A4A7;
}

.provider-option-card.is-sponsored .provider-option-card__price {
  color: rgba(88, 118, 128, 0.88);
}

.provider-option-card__sponsored {
  position: absolute;
  top: 8px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(114, 164, 167, 0.14);
  color: #72A4A7;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.provider-option-card__top {
  margin-bottom: 8px;
}

.provider-option-card.is-sponsored .provider-option-card__top {
  margin-top: 22px;
}

.provider-option-card__photos {
  display: grid;
  grid-template-columns: repeat(var(--provider-photo-count, 3), minmax(0, 1fr));
  gap: 0;
  justify-content: start;
  width: min(218px, calc(100% - 74px));
  height: 63px;
  overflow: hidden;
}

.provider-option-card__photos__item {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: #6d9dca;
}

.provider-option-card.is-sponsored .provider-option-card__photos__item {
  width: 100%;
}

.provider-option-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.provider-option-card__head .feed-avatar {
  align-self: flex-start;
  margin-top: 1px;
  transform: none;
}

.provider-option-card__name-wrap {
  min-width: 0;
}

.provider-option-card__name {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
  color: #10171d;
}

.provider-option-card__kind {
  margin-top: 2px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  color: #6b7880;
}

.provider-option-card__about {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.35;
  color: #334148;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.provider-card {
  --provider-card-padding: 12px;
  border: 1px solid rgba(109, 122, 132, 0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  padding: var(--provider-card-padding);
  overflow: hidden;
}

.provider-card__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.provider-card__topbar-side {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.provider-card__topbar-side--right {
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.providers-back-btn {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #2b8a93;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.provider-card__top-price {
  margin-left: auto;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #6b7880;
  text-align: right;
  white-space: nowrap;
}

.provider-card__photos {
  display: grid;
  grid-template-columns: repeat(var(--provider-photo-count, 3), minmax(0, 1fr));
  gap: 0;
  height: 128px;
  margin: calc(-1 * var(--provider-card-padding)) calc(-1 * var(--provider-card-padding)) 14px;
  overflow: hidden;
}

.provider-card__photos__item,
.provider-card__photo {
  height: 100%;
  border-radius: 0;
  background: #6d9dca;
  border: 0;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.provider-card__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding-right: 34px;
}

.provider-card__head .feed-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  align-self: flex-start;
  transform: none;
}

.provider-card__name-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
}

.overflow-menu.provider-card__menu {
  display: inline-flex;
  align-items: center;
  position: absolute;
  top: calc((23px * 1.05 - 22px) / 2);
  right: 0;
  min-height: 22px;
  align-self: auto;
}

.profile-pane__header-menu > .overflow-menu__trigger,
.provider-card__menu > .overflow-menu__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  min-width: 22px;
  padding: 0 6px;
  font-size: 17px;
  color: #5e727c;
  opacity: 0.92;
}

.provider-card__menu > .overflow-menu__trigger {
  font-size: 15px;
}

.provider-card__name {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 23px;
  line-height: 1.05;
  font-weight: 700;
  color: #10171d;
}

.provider-card__kind {
  margin-top: 4px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
  color: #6b7880;
}

.provider-card__address {
  margin-top: 3px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  line-height: 1.15;
  font-weight: 500;
  color: #6b7880;
}

.provider-card__about {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  color: #334148;
}

.provider-card__contact {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(109, 122, 132, 0.14);
}

.provider-card__contact-row {
  display: grid;
  grid-template-columns: 12px 132px 1fr;
  gap: 8px;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
  color: #2f3c44;
}

.provider-card__contact-row strong {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
}

.provider-card__contact-marker {
  color: #87b8a0;
  font-size: 11px;
}

.provider-card__chat-title {
  margin-top: 14px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: #10171d;
}

.provider-card__section-title {
  margin-top: 10px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  color: #10171d;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.provider-card__divider + .provider-card__section-title {
  margin-top: 10px;
}

.provider-card__contact + .provider-card__divider {
  margin-bottom: 0;
}

.provider-card__options {
  display: grid;
  gap: 7px;
  margin-top: 6px;
}

.provider-room-option-list {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.provider-room-option {
  display: grid;
  grid-template-columns: minmax(136px, 32%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  min-height: 126px;
  padding: 0;
  border: 1px solid rgba(55, 125, 129, 0.18);
  border-radius: 10px;
  background: rgba(234, 246, 245, 0.92);
  overflow: hidden;
}

.provider-room-option--compact {
  padding: 0;
  border: 0;
  background: transparent;
}

.provider-room-option--no-photo {
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  padding: 10px 12px;
}

.provider-room-option__photo {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #d7e0e5 center center / cover no-repeat;
  cursor: pointer;
  touch-action: manipulation;
}

.provider-room-option__body {
  display: grid;
  gap: 4px;
  align-content: start;
  min-width: 0;
  padding: 12px 14px;
}

.provider-room-option__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #20484b;
}

.provider-room-option__price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #4e5f66;
}

.provider-room-option__meta {
  display: grid;
  gap: 2px;
  font-size: 13px;
  line-height: 1.35;
  color: #45696b;
}

.provider-room-option__meta-item {
  min-width: 0;
}

.provider-room-option__note {
  font-size: 13px;
  line-height: 1.35;
  color: #45696b;
  overflow-wrap: anywhere;
}

.provider-card__option-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
  color: #2f3c44;
}

.provider-card__option-name {
  min-width: 0;
}

.provider-card__option-price {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  color: #4e5f66;
  white-space: nowrap;
}

.provider-card__divider {
  margin: 12px 0;
  border-top: 1px solid rgba(109, 122, 132, 0.14);
}

.provider-card__map-link-wrap {
  margin: 12px 0 0;
  display: flex;
}

.provider-card__map-btn {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(55, 125, 129, 0.24);
  border-radius: 999px;
  background: rgba(220, 241, 240, 0.96);
  color: #24585c;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
}

.provider-card__map-btn:hover {
  background: rgba(199, 232, 230, 0.98);
  color: #1f4f53;
}

.provider-card__composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.provider-card__composer--auth-cta {
  justify-items: center;
}

.provider-card__composer-input {
  width: 100%;
  box-sizing: border-box;
  min-height: 24px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.provider-card__composer-send {
  justify-self: end;
  align-self: start;
  font-size: 11px;
  font-weight: 500;
}

.provider-card__composer-send--auth-cta {
  justify-self: center;
  margin-top: 24px;
}

.provider-card__composer-status {
  grid-column: 1 / -1;
  margin-top: -2px;
}

.provider-card__booking-status {
  margin-top: 4px;
  margin-bottom: 4px;
}

.provider-card__threads {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.provider-chat-empty {
  font-family: var(--font-body);
  font-size: 13px;
  color: #67757d;
}

.provider-thread__head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.provider-thread__head > .feed-avatar {
  align-self: flex-start !important;
  margin-top: calc((1.2em - 16px) / 2) !important;
}

.provider-thread__meta {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 4px;
}

.provider-thread__meta-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  min-width: 0;
}

.provider-thread__submeta {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(123, 135, 143, 0.75);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}

.provider-thread__author {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
  color: #202c33;
}

.provider-thread__question {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: #27363f;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.provider-thread__replies {
  margin-top: 10px;
}

.provider-thread__reply {
  gap: 6px;
}

.provider-thread__reply-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  color: #2f3e46;
}

.provider-thread__reply-body strong {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
}

.provider-thread__privacy {
  display: inline-block;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7e8794;
  border: 1px solid rgba(126, 135, 148, 0.35);
  border-radius: 999px;
  padding: 1px 5px;
}

.provider-thread__reply > .overflow-menu {
  margin-left: auto;
  flex: 0 0 auto;
}

.provider-thread__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-top: 10px;
}

.provider-thread__input {
  min-height: 38px;
}

.provider-thread__send {
  align-self: start;
}

.profile-bookings-shell {
  margin: 14px 0 4px;
}

.profile-bookings-shell__toggle {
  width: 100%;
  border: 1px solid rgba(55, 125, 129, 0.24);
  background: linear-gradient(180deg, rgba(218, 239, 238, 0.88), rgba(237, 247, 246, 0.96));
  color: #22595d;
  border-radius: 10px;
  min-height: 40px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.profile-bookings-shell__toggle.is-open {
  border-color: rgba(55, 125, 129, 0.34);
  background: linear-gradient(180deg, rgba(192, 225, 223, 0.96), rgba(214, 236, 234, 0.98));
  color: #194b4f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.profile-bookings-shell__toggle + .profile-bookings-shell__toggle {
  margin-top: 10px;
}

.profile-bookings-shell__unit-photo {
  width: min(188px, 100%);
  margin-top: 12px;
}

.profile-bookings-shell__unit-photo-status {
  min-height: 18px;
}

.profile-bookings-shell__unit-photo .profile-edit-photo-tile__label {
  font-size: 13px;
  font-weight: 600;
}

.profile-bookings-shell__unit-photo .profile-edit-photo-tile__preview {
  cursor: pointer;
}

.profile-bookings-shell__unit-photo .profile-edit-photo-tile__button {
  font-size: 12px;
  font-weight: 600;
}

.profile-bookings-shell__list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.profile-bookings-calendar {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.profile-bookings-calendar__head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
}

.profile-bookings-calendar__title {
  text-align: center;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 700;
  color: #244f53;
}

.profile-bookings-calendar__nav {
  border: 1px solid rgba(86, 112, 119, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #294247;
  border-radius: 999px;
  min-height: 28px;
  padding: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.profile-bookings-calendar__nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.profile-bookings-calendar__host {
  touch-action: pan-y;
}

.profile-bookings-calendar__month {
  padding: 12px;
  border: 1px solid rgba(55, 125, 129, 0.16);
  border-radius: 12px;
  background: rgba(245, 249, 249, 0.96);
}

.profile-bookings-calendar__weekdays,
.profile-bookings-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.profile-bookings-calendar__weekdays {
  margin-top: 10px;
}

.profile-bookings-calendar__weekday {
  text-align: center;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #71858b;
}

.profile-bookings-calendar__grid {
  margin-top: 8px;
}

.profile-bookings-calendar__day {
  position: relative;
  min-height: 38px;
  padding: 6px 4px;
  border-radius: 10px;
  border: 1px solid rgba(109, 122, 132, 0.08);
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.profile-bookings-calendar__day--blank {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.profile-bookings-calendar__day-number {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  color: #4b6167;
}

.profile-bookings-calendar__day.is-booked {
  border-color: rgba(55, 125, 129, 0.24);
  background: linear-gradient(180deg, rgba(218, 239, 238, 0.94), rgba(231, 245, 244, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.profile-bookings-calendar__day.is-booked .profile-bookings-calendar__day-number {
  color: #1f575b;
}

.profile-bookings-calendar__day-marker {
  position: absolute;
  left: 50%;
  bottom: 5px;
  transform: translateX(-50%);
  min-width: 18px;
  min-height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(72, 150, 146, 0.96), rgba(61, 126, 123, 0.92));
  color: #ffffff;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.profile-bookings-shell__form {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(55, 125, 129, 0.18);
  border-radius: 10px;
  background: rgba(245, 249, 249, 0.94);
}

.profile-bookings-shell__ics {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(55, 125, 129, 0.18);
  border-radius: 10px;
  background: rgba(245, 249, 249, 0.94);
}

.profile-bookings-shell__ics-intro {
  font-size: 12px;
  line-height: 1.45;
  color: #49676c;
}

.profile-bookings-shell__ics-intro--tight {
  align-self: center;
}

.profile-bookings-shell__heading {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d676c;
}

.profile-bookings-shell__heading--list {
  margin-top: 6px;
}

.profile-bookings-shell__units-intro {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(109, 122, 132, 0.14);
}

.profile-bookings-shell__ics-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.profile-bookings-shell__cta-row .profile-bookings-shell__save-btn {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.profile-bookings-shell__ics-form {
  display: grid;
  gap: 10px;
}

.profile-bookings-shell__inline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.profile-bookings-shell__inline-actions {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.profile-bookings-shell__inline-actions .profile-bookings-shell__save-btn {
  min-width: 172px;
}

.profile-bookings-shell__inline-row--export-feed {
  grid-template-columns: minmax(0, 1fr) minmax(172px, 50%);
}

.profile-bookings-shell__inline-actions--export-feed {
  width: 100%;
}

.profile-bookings-shell__inline-actions--export-feed .profile-bookings-shell__save-btn {
  width: 100%;
  min-width: 0;
}

.profile-bookings-shell__feed-actions {
  display: grid;
  grid-template-columns: minmax(172px, 50%);
  justify-content: flex-end;
}

.profile-bookings-shell__feed-actions .profile-bookings-shell__save-btn,
.profile-bookings-shell__form-actions .profile-bookings-shell__save-btn {
  width: 100%;
  min-width: 0;
}

.profile-bookings-shell__form-actions .profile-bookings-shell__save-btn {
  width: 50%;
  justify-self: end;
}

.profile-bookings-shell__divider {
  height: 1px;
  margin: 2px 0;
  background: rgba(109, 122, 132, 0.18);
}

.profile-bookings-shell__divider--section {
  margin: 8px 0 2px;
}

.profile-bookings-shell__empty-note {
  margin: 8px 0 6px;
  font-size: 12px;
  line-height: 1.45;
  color: #52656d;
}

.profile-bookings-shell__terms-link {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  margin: -2px 0 6px;
  font: 12px/1.45 var(--font-body);
  color: #52656d;
  text-align: left;
  cursor: pointer;
}

.profile-bookings-shell__terms-link:hover {
  color: #314049;
}

.profile-bookings-shell__section {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(55, 125, 129, 0.18);
  border-radius: 10px;
  background: rgba(245, 249, 249, 0.94);
}

.profile-bookings-shell__unit-name-row {
  display: block;
}

.profile-bookings-shell__unit-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(120px, 1fr);
  gap: 8px;
  align-items: start;
}

.profile-bookings-shell__calendar-scope-row {
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

.profile-bookings-shell__calendar-scope-main {
  width: calc(100% + 44px);
  max-width: calc(100% + 44px);
}

.profile-bookings-shell__calendar-scope-subordinate {
  width: calc(100% - 18px);
  margin-left: 18px;
}

.profile-bookings-shell__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #45696b;
}

.profile-bookings-shell__provider-certify {
  margin-top: 18px;
  align-items: flex-start;
}

.profile-bookings-shell__provider-certify input {
  margin: 0;
  transform: translateY(1px);
}

.profile-bookings-shell__unit-price-help {
  margin-top: -4px;
  font-size: 12px;
  line-height: 1.45;
  color: #557176;
}

.profile-bookings-shell__unit-subtitle {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #294b50;
}

.profile-bookings-shell__unit-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-bookings-shell__unit-price-input {
  width: calc(100% - 40px);
  flex: 0 1 calc(100% - 40px);
}

.profile-bookings-shell__unit-price-currency {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: #45696b;
}

.profile-bookings-shell__unit-notes {
  min-height: 42px;
}

.profile-bookings-shell__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-bookings-shell__form-actions {
  display: grid;
  gap: 8px;
}

.profile-bookings-shell__form--embedded {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.profile-bookings-shell__date-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: flex-start;
}

.profile-bookings-shell__date-field {
  display: grid;
  gap: 5px;
  min-width: 0;
  max-width: none;
}

.profile-bookings-shell__date-field .provider-card__booking-input {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.profile-bookings-shell__date-label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #49656a;
}

.profile-bookings-shell__date-hint {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #74858d;
}

.profile-bookings-shell__date-field .provider-card__booking-input[type="date"] {
  width: 100%;
  min-width: 0;
}

.profile-bookings-shell__item {
  border: 1px solid rgba(55, 125, 129, 0.18);
  background: rgba(234, 246, 245, 0.92);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
}

.profile-bookings-shell__item--room-unit {
  padding: 0;
  overflow: hidden;
}

.profile-bookings-shell__item--room-unit .provider-room-option {
  border: 0;
  border-radius: 0;
}

.profile-bookings-shell__item .provider-room-option:not(:last-child) {
  margin-bottom: 8px;
}

.profile-bookings-shell__section .profile-bookings-shell__item {
  cursor: default;
}

.profile-bookings-shell__item--synced {
  border-color: rgba(96, 145, 177, 0.2);
  background: rgba(233, 242, 249, 0.94);
}

.profile-bookings-shell__item--tripshaper {
  border-color: rgba(55, 125, 129, 0.24);
  background: linear-gradient(180deg, rgba(205, 232, 230, 0.96), rgba(231, 245, 244, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.profile-bookings-shell__item--traveler-accepted {
  border-color: rgba(53, 119, 122, 0.24);
  background: linear-gradient(180deg, rgba(205, 232, 230, 0.96), rgba(231, 245, 244, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
}

.profile-bookings-shell__item--provider-link,
.profile-bookings-shell__section .profile-bookings-shell__item--provider-link {
  cursor: pointer;
}

.profile-bookings-shell__item--provider-link:hover {
  border-color: rgba(55, 125, 129, 0.36);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.56), 0 6px 16px rgba(38, 92, 96, 0.08);
}

.profile-bookings-shell__item--traveler-inactive {
  border-color: rgba(136, 145, 152, 0.22);
  background: linear-gradient(180deg, rgba(225, 229, 232, 0.96), rgba(239, 242, 244, 0.98));
}

.profile-bookings-shell__item--traveler-inactive .profile-bookings-shell__item-top,
.profile-bookings-shell__item--traveler-inactive .profile-bookings-shell__item-meta,
.profile-bookings-shell__item--traveler-inactive .profile-bookings-shell__item-detail {
  color: #66747c;
}

.profile-bookings-shell__item--synced .profile-bookings-shell__item-top {
  color: #1f4e62;
}

.profile-bookings-shell__item--synced .profile-bookings-shell__item-meta,
.profile-bookings-shell__item--synced .profile-bookings-shell__item-detail {
  color: #55737f;
}

.profile-bookings-shell__item-top {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 700;
  color: #20484b;
}

.profile-bookings-shell__item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.profile-bookings-shell__item-meta {
  margin-top: 4px;
  font-size: 12px;
  color: #45696b;
}

.profile-bookings-shell__status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(102, 111, 118, 0.12);
  color: #617078;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.profile-bookings-shell__traveler-link {
  display: block;
  margin-top: 5px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 700;
  color: #1f575b;
}

.profile-bookings-shell__item-detail {
  margin-top: 4px;
  font-size: 11px;
  color: #6a7d84;
}

.profile-bookings-shell__item--tripshaper .profile-bookings-shell__item-top,
.profile-bookings-shell__item--traveler-accepted .profile-bookings-shell__item-top {
  font-size: 14px;
}

.profile-bookings-shell__item--tripshaper .profile-bookings-shell__traveler-link,
.profile-bookings-shell__item--traveler-accepted .profile-bookings-shell__traveler-link {
  font-size: 14px;
}

.profile-bookings-shell__item--tripshaper .profile-bookings-shell__item-meta,
.profile-bookings-shell__item--tripshaper .profile-bookings-shell__item-detail,
.profile-bookings-shell__item--traveler-accepted .profile-bookings-shell__item-meta,
.profile-bookings-shell__item--traveler-accepted .profile-bookings-shell__item-detail {
  font-size: 13px;
}

.profile-bookings-shell__item--tripshaper .profile-bookings-shell__status-badge,
.profile-bookings-shell__item--traveler-accepted .profile-bookings-shell__status-badge,
.profile-bookings-shell__item--tripshaper .profile-bookings-shell__text-action,
.profile-bookings-shell__item--traveler-accepted .profile-bookings-shell__text-action {
  font-size: 12px;
}

.profile-bookings-shell__item-warning {
  margin-top: 6px;
  font-size: 12px;
  color: #8d5d44;
}

.profile-bookings-shell__item-actions {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.profile-bookings-shell__item-actions--end {
  justify-content: flex-end;
}

.profile-bookings-shell__text-action {
  border: 0;
  background: transparent;
  padding: 0;
  color: #5e9a61;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.profile-bookings-shell__text-action:hover {
  color: #4f8553;
}

.profile-bookings-shell__readonly-url {
  font-size: 12px;
  color: #31565c;
}

.profile-bookings-shell__booking-status {
  flex: 0 0 auto;
  margin-left: auto;
}

.profile-bookings-shell__tabs,
.provider-card__tabs {
  display: flex;
  gap: 8px;
  margin: 10px 0 10px;
}

.provider-card__tab {
  border: 1px solid rgba(86, 112, 119, 0.18);
  background: #fff;
  color: #294247;
  border-radius: 999px;
  min-height: 34px;
  padding: 0 14px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.provider-card__tab.is-active {
  background: rgba(220, 241, 240, 0.96);
  border-color: rgba(55, 125, 129, 0.24);
  color: #24585c;
}

.provider-card__tab-pane {
  display: none;
}

.provider-card__tab-pane.is-active {
  display: block;
}

.provider-card__booking-form {
  display: grid;
  gap: 10px;
}

.provider-card__booking-intro {
  font-size: 12px;
  line-height: 1.45;
  color: #49676c;
}

.provider-card__availability {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(55, 125, 129, 0.14);
  border-radius: 10px;
  background: rgba(245, 249, 249, 0.88);
}

.provider-card__availability-phase {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #4c6c71;
}

.provider-card__availability-head {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 8px;
}

.provider-card__availability-title {
  text-align: center;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 700;
  color: #244f53;
}

.provider-card__availability-nav {
  border: 1px solid rgba(86, 112, 119, 0.18);
  background: rgba(255, 255, 255, 0.96);
  color: #294247;
  border-radius: 999px;
  min-height: 28px;
  padding: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.provider-card__availability-nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.provider-card__availability-weekdays,
.provider-card__availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.provider-card__availability-weekday {
  text-align: center;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #71858b;
}

.provider-card__availability-day {
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(109, 122, 132, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: #4b6167;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.provider-card__availability-day--blank {
  min-height: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.provider-card__availability-day.is-blocked {
  border-color: rgba(55, 125, 129, 0.24);
  background: linear-gradient(180deg, rgba(218, 239, 238, 0.94), rgba(231, 245, 244, 0.98));
  color: #1f575b;
  opacity: 0.9;
}

.provider-card__availability-day.is-in-range {
  background: rgba(214, 232, 238, 0.72);
  border-color: rgba(95, 146, 166, 0.18);
}

.provider-card__availability-day.is-selected-start,
.provider-card__availability-day.is-selected-end {
  background: linear-gradient(180deg, rgba(72, 150, 146, 0.96), rgba(61, 126, 123, 0.92));
  border-color: rgba(61, 126, 123, 0.4);
  color: #ffffff;
}

.provider-card__availability-day:disabled {
  cursor: default;
}

.provider-card__booking-range-summary {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 600;
  color: #29595d;
}

.provider-card__booking-range {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 24px;
  flex-wrap: wrap;
}

.provider-card__booking-range-endpoint {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(110, 181, 176, 0.28);
  color: #29595d;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.provider-card__booking-range-track {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
  min-width: 0;
}

.provider-card__booking-range-day {
  width: 18px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(110, 181, 176, 0.9), rgba(70, 147, 143, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.provider-card__booking-range-day--single {
  width: 10px;
  height: 10px;
  background: #2f6f72;
  box-shadow: none;
}

.provider-card__booking-range-placeholder {
  flex: 1 1 auto;
  min-width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110, 181, 176, 0.45), rgba(110, 181, 176, 0.05));
}

.provider-card__booking-range-extra {
  margin-left: 2px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  color: #4d676a;
}

.provider-card__booking-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.provider-card__booking-date-field {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.provider-card__booking-date-field .provider-card__booking-input {
  display: block;
  width: 100%;
  max-width: none;
}

.provider-card__booking-date-hint {
  position: absolute;
  left: 14px;
  right: 44px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa6ac;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.provider-card__booking-date-field.is-active .provider-card__booking-date-hint {
  opacity: 0;
}

.provider-card__booking-row .provider-card__booking-input {
  width: 100%;
  max-width: none;
}

.provider-card__booking-input--party {
  width: 100%;
  max-width: none;
}

.provider-card__booking-input,
.provider-card__booking-message {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  border: 1px solid rgba(86, 112, 119, 0.18);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.98);
  color: #21343a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  line-height: 1.35;
}

.provider-card__booking-input {
  min-height: 46px;
  color: rgba(70, 84, 93, 0.72);
  font-weight: 400;
}

.provider-card__booking-date-field .provider-card__booking-input[type="date"],
.profile-bookings-shell__date-field .provider-card__booking-input[type="date"] {
  min-height: 48px;
  padding-right: 44px;
  color: #46545d;
  font-weight: 500;
  cursor: pointer;
  color-scheme: light;
}

.provider-card__booking-date-field:not(.is-active) .provider-card__booking-input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

.provider-card__booking-date-field .provider-card__booking-input[type="date"]::-webkit-calendar-picker-indicator,
.profile-bookings-shell__date-field .provider-card__booking-input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.85;
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 8px;
  margin-right: -8px;
}

.provider-card__booking-input--unit-name {
  width: 100%;
}

.provider-card__booking-input--compact {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.provider-card__booking-input--compact-select {
  width: calc(100% - 35px);
  justify-self: start;
}

.provider-card__booking-input--room-unit,
.provider-card__booking-input--room-unit-select {
  border: 1px solid rgba(109, 122, 132, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #46545d;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 11px;
}

.provider-card__booking-input--room-unit::placeholder {
  color: #839098;
  opacity: 1;
}

.provider-card__booking-input--room-unit-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4.4 6 8.1 10 4.4' fill='none' stroke='%23737f87' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 12px;
  padding-right: 36px;
  cursor: pointer;
  min-height: 46px;
}

.provider-card__booking-input--room-unit-select option {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: #46545d;
}

.provider-card__booking-input--room-unit-select.provider-card__booking-input--placeholder-active {
  color: #839098;
}

.provider-card__booking-input--room-unit-select option {
  color: #46545d;
}

.provider-card__booking-input--room-unit-sleeps-select {
  width: calc(100% - 12px);
  max-width: calc(100% - 12px);
}

.provider-card__booking-input--room-unit-quantity-select {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.provider-card__booking-send {
  justify-self: flex-start;
}

.profile-bookings-shell__save-btn {
  width: auto;
  min-width: 160px;
  padding-left: 29px;
  padding-right: 29px;
  margin-top: 0;
  align-self: start;
}

.profile-bookings-shell__manage-btn {
  width: 100%;
  margin-top: 10px;
}

.profile-bookings-shell__export-btn {
  background: #72a4a7;
}

.profile-bookings-shell__export-btn:hover {
  background: #67979a;
}

.profile-bookings-shell__calendar-textarea {
  min-height: 22px;
}

.profile-bookings-shell__calendar-textarea,
.profile-bookings-shell__calendar-textarea::placeholder {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
}

.profile-bookings-shell__calendar-textarea::placeholder {
  color: #839098;
}

.provider-card__booking-submit {
  justify-self: end;
}

.provider-card__booking-submit.provider-card__composer-send--auth-cta {
  justify-self: center;
}

.provider-card__booking-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 2px 0 8px;
  font: 12px/1.45 var(--font-body);
  color: #52656d;
}

.provider-card__booking-check input {
  margin: 0;
  transform: translateY(1px);
}

.provider-card__booking-waiver-link {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.provider-card__booking-waiver-link:hover {
  color: #314049;
}

.provider-thread--booking,
.profile-contact-card--booking {
  border-radius: 10px;
  padding: 14px;
}

.provider-thread--booking-live,
.profile-contact-card--booking-live {
  background: linear-gradient(180deg, rgba(225, 242, 240, 0.92), rgba(239, 248, 247, 0.96));
  border: 1px solid rgba(55, 125, 129, 0.16);
}

.provider-thread--booking-cancelled,
.provider-thread--booking-inactive,
.profile-contact-card--booking-cancelled {
  background: linear-gradient(180deg, rgba(237, 240, 241, 0.96), rgba(246, 247, 248, 0.98));
  border: 1px solid rgba(98, 111, 118, 0.14);
}

.provider-thread--booking-declined {
  background: linear-gradient(180deg, rgba(249, 236, 240, 0.96), rgba(253, 243, 246, 0.98));
  border: 1px solid rgba(191, 129, 148, 0.18);
}

.profile-contact-card--booking-declined {
  background: linear-gradient(180deg, rgba(249, 236, 240, 0.96), rgba(253, 243, 246, 0.98));
  border: 1px solid rgba(191, 129, 148, 0.18);
}

.profile-contact-card--booking-cancelled {
  border-color: rgba(98, 111, 118, 0.14);
}

.profile-contact-card--booking .profile-contact-card__head,
.provider-thread--booking .provider-thread__head {
  align-items: flex-start;
}

.profile-contact-card--booking .profile-contact-card__head .feed-avatar,
.provider-thread--booking .provider-thread__head > .feed-avatar {
  margin-top: 2px !important;
}

.profile-contact-card--booking .profile-contact-card__place,
.provider-thread__recipient-line {
  color: #202c33;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.profile-contact-card__booking-block,
.provider-thread__booking-block {
  margin: 8px 0 0 24px;
  padding-top: 12px;
  border-top: 1px solid rgba(111, 159, 184, 0.24);
}

.profile-contact-card__booking-heading,
.provider-thread__booking-heading {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
  color: #f0525b;
}

.profile-contact-card__booking-block[data-booking-status="accepted"] .profile-contact-card__booking-heading,
.provider-thread__booking-block[data-booking-status="accepted"] .provider-thread__booking-heading {
  color: #079b2b;
}

.profile-contact-card__booking-block[data-booking-status="cancelled_by_traveller"] .profile-contact-card__booking-heading,
.profile-contact-card__booking-block[data-booking-status="cancelled_by_provider"] .profile-contact-card__booking-heading,
.profile-contact-card__booking-block[data-booking-status="expired"] .profile-contact-card__booking-heading,
.profile-contact-card__booking-block[data-booking-status="completed"] .profile-contact-card__booking-heading,
.provider-thread__booking-block[data-booking-status="cancelled_by_traveller"] .provider-thread__booking-heading,
.provider-thread__booking-block[data-booking-status="cancelled_by_provider"] .provider-thread__booking-heading,
.provider-thread__booking-block[data-booking-status="expired"] .provider-thread__booking-heading,
.provider-thread__booking-block[data-booking-status="completed"] .provider-thread__booking-heading {
  color: #617178;
}

.profile-contact-card__booking-block[data-booking-status="declined"] .profile-contact-card__booking-heading,
.provider-thread__booking-block[data-booking-status="declined"] .provider-thread__booking-heading {
  color: #8b5a67;
}

.profile-contact-card__booking-meta,
.provider-thread__booking-summary {
  display: grid;
  gap: 2px;
  justify-items: start;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.3;
  color: #10171d;
}

.profile-contact-card__booking-status,
.provider-thread__booking-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(55, 125, 129, 0.12);
  color: #24585c;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-contact-card__booking-block > .profile-contact-card__booking-status {
  display: none;
}

.profile-contact-card__booking-status-row .profile-contact-card__booking-status,
.provider-thread__booking-status--action {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(55, 125, 129, 0.18);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.profile-contact-card__booking-status-row .profile-contact-card__booking-action--inline {
  min-height: 32px;
  padding: 0 12px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.profile-contact-card--booking-cancelled .profile-contact-card__booking-status {
  background: rgba(98, 111, 118, 0.12);
  color: #57656c;
}

.provider-thread--booking-cancelled .provider-thread__booking-status {
  background: rgba(98, 111, 118, 0.12);
  color: #57656c;
}

.provider-thread--booking-declined .provider-thread__booking-status {
  background: rgba(191, 129, 148, 0.14);
  color: #8b5a67;
}

.profile-contact-card--booking-declined .profile-contact-card__booking-status {
  background: rgba(191, 129, 148, 0.14);
  color: #8b5a67;
}

.provider-thread__booking-actions,
.profile-contact-card__booking-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.provider-thread__booking-action,
.profile-contact-card__booking-action {
  border: 1px solid rgba(55, 125, 129, 0.24);
  background: rgba(255, 255, 255, 0.96);
  color: #24585c;
  border-radius: 999px;
  min-height: 32px;
  padding: 0 12px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.provider-thread__booking-action--muted,
.profile-contact-card__booking-action--muted {
  color: #4b6062;
  border-color: rgba(86, 112, 119, 0.18);
}

.profile-contact-card__booking-action--inline {
  min-height: 22px;
  padding: 0 8px;
  font-size: 10px;
}

.profile-contact-card__booking-action--inline.profile-contact-card__booking-action--muted:hover {
  background: rgba(86, 112, 119, 0.08);
  border-color: rgba(86, 112, 119, 0.28);
  color: #3f5558;
}

.profile-contact-card--booking .profile-contact-card__body,
.provider-thread--booking .provider-thread__question {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(111, 159, 184, 0.24);
}

.provider-thread--booking .provider-thread__replies,
.profile-contact-card--booking .profile-contact-card__replies {
  margin-top: 8px;
}

.profile-bookings-shell__cancel-edit-btn {
  min-height: 26px;
  min-width: 96px;
  margin-left: 16px;
  padding: 0 18px;
}

.provider-thread__booking-action-status {
  margin-top: 6px;
  font-size: 12px;
  color: #45696b;
}

.posts-drawer.is-open {
  transform: translateX(0);
  display: flex;
}

.posts-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 10px;
  border-bottom: 1px solid rgba(109, 122, 132, 0.16);
  cursor: grab;
  user-select: none;
  flex: 0 0 auto;
}

.posts-drawer.is-dragging .posts-drawer__head {
  cursor: grabbing;
}

.posts-drawer__meta {
  min-width: 0;
}

#posts-breadcrumb {
  margin-bottom: 18px;
}

.posts-drawer__title {
  margin-top: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #22313a;
}

.posts-drawer__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 14px 14px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-sizing: border-box;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
}

.posts-drawer__body.is-empty .posts-feed-list {
  align-content: start;
}

.posts-drawer__cta {
  margin-top: 0;
}

.posts-drawer__cta.is-accented {
  box-shadow: 0 0 0 2px rgba(93, 157, 98, 0.18);
}

.posts-composer-shell {
  border: 1px solid rgba(93, 157, 98, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px 12px 11px;
}

.posts-composer-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 6px;
}

.posts-composer-type__chip {
  min-height: 28px;
  border: 1px solid rgba(86, 112, 119, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #294247;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.posts-composer-type__chip.is-active {
  background: rgba(220, 241, 240, 0.96);
}

.posts-composer-type__chip:hover {
  background: rgba(220, 241, 240, 0.96);
}

.posts-composer-field {
  display: grid;
  gap: 5px;
  margin-top: 10px;
}

.posts-composer-field__label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  color: #516068;
}

.posts-composer-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(109, 122, 132, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #46545d;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  padding: 10px 11px;
}

.posts-composer-textarea::placeholder {
  color: #839098;
}

.posts-composer-textarea {
  min-height: 118px;
  resize: vertical;
}

.provider-card__composer-input:not(.provider-card__booking-message) {
  min-height: 68px;
  height: 68px;
  padding-top: 4px;
  padding-bottom: 4px;
  resize: none;
}

.posts-composer-textarea.profile-bookings-shell__calendar-textarea {
  min-height: 22px;
}

.posts-composer-actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.posts-composer-status {
  min-height: 18px;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: #5d6a72;
}

.posts-composer-status:empty {
  display: none;
}

.posts-composer-status.is-error {
  color: #9d4545;
}

.posts-composer-status.is-success {
  color: #2f7b38;
}

.posts-composer-submit {
  border: 0;
  border-radius: 4px;
  background: #5d9d62;
  color: #fff;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 40px;
  padding: 10px 14px;
  cursor: pointer;
}

.posts-composer-submit:hover {
  background: #528a57;
}

.posts-review-fields {
  margin-top: 10px;
  border-top: 1px solid rgba(109, 122, 132, 0.14);
  padding-top: 10px;
}

.posts-review-fields__title {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  color: #22313a;
  margin-bottom: 8px;
}

.posts-review-grid {
  display: grid;
  gap: 8px;
}

.posts-review-slider {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.posts-review-slider span {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  color: #3b4951;
  text-align: right;
}

.posts-review-slider input[type="range"] {
  width: 100%;
  accent-color: #5d9d62;
  appearance: none;
  height: 8px;
  border-radius: 10px;
  outline: none;
  background: rgba(193,205,212,0.72);
}

.posts-review-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(33, 47, 57, 0.16);
  box-shadow: 0 1px 3px rgba(0,0,0,0.16);
}

.posts-review-slider input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(33, 47, 57, 0.16);
  box-shadow: 0 1px 3px rgba(0,0,0,0.16);
}

.posts-review-slider input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 10px;
  background: transparent;
}

@media (min-width: 701px) {
  .provider-detail-drawer .provider-card__composer-send,
  .provider-detail-drawer .provider-card__booking-submit {
    min-height: 44px;
    height: 44px;
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  #posts-drawer .posts-drawer__cta {
    min-height: 44px;
    font-size: 12px;
  }

  #posts-composer-shell .posts-composer-submit {
    min-height: 44px;
    font-size: 12px;
  }

  #posts-composer-shell .posts-review-grid {
    gap: 16px;
  }
}

.posts-auth-sheet {
  margin-top: 10px;
  border: 1px solid rgba(114, 164, 167, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 11px 12px;
}

.posts-auth-sheet__copy {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: #415059;
}

.posts-auth-sheet__actions {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.posts-auth-sheet__btn {
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-gotham);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid rgba(114, 164, 167, 0.28);
}

.posts-auth-sheet__btn--ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #4d6d70;
}

.posts-auth-sheet__btn--solid {
  border: 0;
  background: #72a4a7;
  color: #fff;
}

.posts-feed-list {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-right: 0;
}

.posts-feed-list .feed-post,
.posts-feed-list .feed-meta {
  padding-right: 0;
}

.posts-feed-list .feed-comments,
.profile-contact-card__replies {
  padding-right: 0;
}

.video-drawer {
  position: fixed;
  top: 96px;
  left: calc(12px + min(var(--info-pane-max-width), calc(100vw - 24px)) + 14px);
  width: min(var(--video-drawer-max-width), 82vw);
  max-height: calc(100dvh - 120px);
  background: rgba(243, 243, 243, 0.985);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 14px;
  box-shadow: var(--ui-shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
  z-index: 30;
  display: none;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
}

.video-drawer.is-open {
  transform: translateX(0);
  display: flex;
}

.video-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(109, 122, 132, 0.16);
  cursor: grab;
  user-select: none;
}

.video-drawer.is-dragging .video-drawer__head {
  cursor: grabbing;
}

.video-drawer__meta {
  min-width: 0;
}

.video-drawer__title {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  color: #22313a;
}

.video-drawer__creator {
  margin-top: 4px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #5d6b75;
}

.video-drawer__close {
  flex: 0 0 auto;
}

.video-drawer__body {
  display: grid;
  gap: 10px;
  padding: 12px 14px 14px;
}

.video-drawer__frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #d7e0e5;
}

.video-drawer__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-drawer__open {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #2642b6;
  text-decoration: none;
}

.video-drawer__open:hover {
  text-decoration: underline;
}

.video-drawer__notice {
  border-radius: 10px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.5;
  color: #495d67;
  background: rgba(110, 152, 166, 0.12);
  border: 1px solid rgba(110, 152, 166, 0.24);
}

.video-drawer__notice:empty {
  display: none;
}

.video-drawer__notice.is-warning {
  color: #664725;
  background: rgba(184, 129, 69, 0.14);
  border-color: rgba(184, 129, 69, 0.28);
}

.photo-drawer {
  position: fixed;
  top: 96px;
  left: calc(12px + min(var(--info-pane-max-width), calc(100vw - 24px)) + 14px);
  width: min(560px, 82vw);
  max-height: calc(100dvh - 120px);
  background: rgba(243, 243, 243, 0.985);
  border: 1px solid rgba(109, 122, 132, 0.18);
  border-radius: 14px;
  box-shadow: var(--ui-shadow);
  transform: translateX(24px);
  transition: transform 180ms ease;
  z-index: 84;
  display: none;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
}

.photo-drawer.is-open {
  transform: translateX(0);
  display: flex;
}

.photo-drawer__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "back close"
    "title title";
  align-items: center;
  row-gap: 6px;
  gap: 12px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(109, 122, 132, 0.16);
  cursor: grab;
  user-select: none;
}

.photo-drawer__back {
  grid-area: back;
  justify-self: start;
  align-self: center;
  white-space: nowrap;
  max-width: max-content;
}

.photo-drawer__back.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.photo-drawer.is-dragging .photo-drawer__head {
  cursor: grabbing;
}

.photo-drawer__meta {
  grid-area: title;
  min-width: 0;
}

.photo-drawer__title {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  color: #22313a;
  text-align: left;
}

.photo-drawer__close {
  grid-area: close;
  justify-self: end;
  flex: 0 0 auto;
}

.photo-drawer__body {
  display: grid;
  gap: 12px;
  padding: 12px 14px 45px;
  overflow: auto;
  min-height: 0;
  box-sizing: border-box;
}

.photo-drawer__row {
  display: grid;
  gap: 8px;
}

.photo-drawer__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #d7e0e5;
}

.photo-drawer__row.is-selected .photo-drawer__image {
  box-shadow: 0 0 0 2px rgba(46, 139, 143, 0.34);
}

.place-panel__head {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  padding: 10px 14px 0;
  flex: 0 0 auto;
}

.place-panel__head-default {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
}

.place-panel__head.profile-pane__head {
  padding-left: 0;
  padding-right: 0;
}

.place-panel__eyebrow {
  color: #001a5c;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.place-panel__eyebrow-btn {
  border: 0;
  background: transparent;
  color: #001a5c;
  font: inherit;
  padding: 0;
  cursor: pointer;
}

.place-panel__eyebrow-btn:hover {
  text-decoration: underline;
}

.place-panel__eyebrow-text {
  color: #001a5c;
}

.place-panel__eyebrow-current {
  color: #7d8fbc;
}

.place-panel__eyebrow-sep {
  color: #001a5c;
}

.panel-close {
  border: 0;
  background: transparent;
  color: #5f6b73;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 4px;
  font-family: var(--font-gotham);
  font-weight: 500;
  opacity: 0.5;
  transition: opacity 140ms ease;
}

.panel-close:hover {
  opacity: 1;
}

.panel-close--accent {
  background: #055468;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  opacity: 1;
}

.panel-close--accent:hover {
  background: #044656;
}

.place-title {
  margin: 8px 0 10px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
}

.place-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.place-title-row .place-title {
  flex: 1 1 auto;
  min-width: 0;
}

.place-title-menu {
  flex: 0 0 auto;
  align-self: center;
  margin-top: 0;
}

.place-add-trip-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  margin: 18px 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #055468;
  color: #fff;
  padding: 8px 18px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.place-add-trip-btn:hover {
  background: #044656;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.place-add-trip-btn:active {
  transform: translateY(1px);
}

.place-trip-status,
.trip-pane__status {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(53, 95, 63, 0.24);
  background: rgba(234, 244, 232, 0.94);
  color: #355f3f;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.4;
}

.place-trip-status.is-error,
.trip-pane__status.is-error {
  border-color: rgba(184, 77, 77, 0.24);
  background: rgba(255, 240, 240, 0.96);
  color: #9c3b3b;
}

.trip-pane__status.is-success {
  border-color: rgba(53, 95, 63, 0.24);
  background: rgba(234, 244, 232, 0.94);
  color: #355f3f;
}

.profile-pane__title-row .profile-pane__title.place-title {
  margin: 0;
  line-height: 1.08;
}

.place-description {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

.place-description strong,
.curated-pane__description strong,
.curated-pane__item-about strong {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-weight: 700;
}

.place-description a,
.curated-pane__description a,
.curated-pane__item-about a,
.trip-itinerary-item__about a,
.trip-detail__about a {
  color: #00748b;
  font-weight: 600;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.place-description--toggleable {
  margin-bottom: 4px;
}

.place-description-toggle {
  border: 0;
  background: transparent;
  display: block;
  padding: 0;
  margin: -26px 0 12px;
  width: 100%;
  text-align: right;
  color: #355f3f;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 140ms ease;
}

.place-description-toggle:hover {
  opacity: 1;
}

.panel-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--ui-line);
}

.trip-pane {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 100%;
  align-content: start;
}

.trip-pane__main {
  display: grid;
  gap: 14px;
  align-content: start;
}

.trip-pane__edit-btn {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: #ef7b82;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 140ms ease, color 140ms ease;
}

.trip-pane__edit-btn:hover {
  color: #d2606f;
}

.place-risk-disclaimer {
  padding: 0;
  margin: 24px 0 0;
  border: 0;
  background: transparent;
  color: #b0b9bf;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
}

.place-risk-disclaimer:hover {
  color: #8e989f;
}

.trip-summary-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.trip-summary-card__media-stack {
  width: 72px;
  display: grid;
  gap: 8px;
}

.trip-summary-card__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(116, 166, 177, 0.9), rgba(17, 93, 112, 0.98));
}

.trip-summary-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-summary-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trip-summary-card__body {
  min-width: 0;
}

.trip-lozenge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 97, 122, 0.94);
  color: #fff;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease, opacity 140ms ease;
}

.trip-lozenge-btn:hover {
  background: #055468;
}

.trip-lozenge-btn:disabled {
  background: rgba(0, 97, 122, 0.42);
  cursor: default;
}

.trip-summary-card__edit-btn {
  width: 100%;
}

.trip-summary-card__title {
  margin: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #203038;
}

.trip-summary-card__meta {
  margin-top: 6px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  line-height: 1.35;
  color: #00617a;
}

.trip-summary-card__about {
  margin: 8px 0 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 400;
  color: #475962;
}

.trip-pane__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}

.trip-pane__link-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: #00617a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 140ms ease, color 140ms ease;
}

.trip-pane__link-btn:hover {
  color: #004b5d;
}

.trip-pane__link-btn:disabled {
  color: rgba(0, 97, 122, 0.38);
  cursor: default;
}

.trip-pane__link-btn:disabled:hover {
  color: rgba(0, 97, 122, 0.38);
}

.trip-pane__link-btn--accent {
  color: #c44f5e;
}

.trip-pane__link-btn--accent:hover {
  color: #aa4150;
}

.trip-pane__link-btn--share {
  margin-left: auto;
}

.place-panel.is-trip-mode .place-panel__eyebrow-btn,
.place-panel.is-trip-mode .place-panel__eyebrow-current {
  color: #ef7b82;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.place-panel.is-trip-mode .place-panel__eyebrow-btn:hover {
  text-decoration: none;
  opacity: 0.85;
}

.trip-itinerary-list {
  border-top: 1px solid rgba(111, 159, 184, 0.24);
}

.trip-itinerary-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(111, 159, 184, 0.24);
  background: transparent;
  padding: 12px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  text-align: left;
  cursor: pointer;
}

.trip-itinerary-item:hover {
  background: rgba(111, 159, 184, 0.08);
}

.trip-itinerary-item__copy {
  min-width: 0;
}

.trip-itinerary-item__title {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  font-weight: 500;
  color: #00748b;
}

.trip-itinerary-item__about {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 400;
  color: #4d5b63;
}

.trip-itinerary-item__about strong {
  font-family: var(--font-body);
  font-weight: 400;
  color: inherit;
}

.trip-itinerary-item__chevron {
  color: #00617a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}

.trip-curated-picker {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.trip-curated-picker__label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  color: #41525b;
}

.trip-curated-picker__control {
  position: relative;
}

.trip-curated-picker__select {
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(111, 159, 184, 0.28);
  padding: 0 44px 0 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #5f6f79;
  background: #fff;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.trip-curated-picker__select option {
  font-size: 14px;
}

.trip-curated-picker__caret {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #5f6f79;
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
}

.trip-form {
  display: grid;
  gap: 12px;
}

.trip-form__field,
.trip-form__thumbnail {
  display: grid;
  gap: 5px;
}

.trip-form__label,
.trip-form__subhead {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #314049;
}

.trip-form__input,
.trip-form__textarea,
.trip-edit-card__textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #cbd6dc;
  background: rgba(255,255,255,0.96);
  padding: 9px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #5f6f79;
  font-weight: 400;
}

.trip-form__textarea,
.trip-edit-card__textarea {
  resize: vertical;
  min-height: 88px;
}

.trip-form__input::placeholder,
.trip-form__textarea::placeholder,
.trip-edit-card__textarea::placeholder {
  color: #98a8b0;
}

.trip-form__thumbnail-control {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.trip-form__thumbnail-preview {
  width: 78px;
  min-width: 78px;
  height: 78px;
  border-radius: 8px;
  overflow: hidden;
  background: #d7e0e5;
  border: 1px solid #cbd6dc;
}

.trip-form__thumbnail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-form__thumbnail-actions,
.trip-form__confirm-actions,
.trip-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.trip-form__thumbnail-actions {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 78px;
}

.trip-form__thumb-btn,
.trip-form__confirm-btn {
  border: 1px solid rgba(72, 138, 155, 0.24);
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  color: #365867;
  min-height: 34px;
  padding: 0 12px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.trip-form__thumb-btn:hover,
.trip-form__confirm-btn:hover {
  background: rgba(111, 159, 184, 0.08);
}

.trip-form__thumb-btn--danger,
.trip-form__delete-btn,
.trip-form__confirm-btn--danger {
  color: #c44f5e;
}

.trip-form__delete-all {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin: 22px 0;
}

.trip-form__delete-btn {
  justify-self: center;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.trip-form__confirm {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(196, 79, 94, 0.18);
  background: rgba(255, 243, 244, 0.95);
  display: grid;
  gap: 10px;
}

.trip-form__confirm-text {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #7f4b54;
}

.trip-form__confirm-actions {
  justify-content: center;
}

.trip-form__actions {
  justify-content: center;
  margin-top: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.trip-edit-list {
  display: grid;
  gap: 12px;
}

.trip-edit-shell {
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.trip-edit-shell__back {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 10px;
  color: #00617a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.trip-edit-shell__back:hover {
  color: #004b5d;
}

.trip-edit-shell__title {
  margin: 0 0 10px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 22px;
  line-height: 1.08;
  font-weight: 700;
  color: #223038;
}

.trip-edit-card {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(111, 159, 184, 0.22);
  background: rgba(232, 244, 246, 0.72);
  display: grid;
  gap: 10px;
}

.trip-edit-card__head,
.trip-edit-card__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.trip-edit-card__title {
  min-width: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  font-weight: 500;
  color: #5f6f79;
}

.trip-edit-card__remove {
  border: 0;
  background: transparent;
  padding: 0;
  color: #5b6b73;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.trip-edit-card__move {
  border: 0;
  background: transparent;
  padding: 0;
  color: #81a4a8;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.trip-edit-card__remove:hover,
.trip-edit-card__move:hover {
  color: #203038;
}

.trip-edit-card__handle {
  color: #56a1af;
  font-size: 26px;
  line-height: 1;
  user-select: none;
}

.trip-form__save.review-btn {
  margin-top: 0;
  width: auto;
  min-width: 130px;
}

.trip-form__cancel.review-btn {
  margin-top: 0;
  width: auto;
  min-width: 110px;
  background: rgba(129, 164, 168, 0.5);
  color: #fff;
}

.trip-form__cancel.review-btn:hover {
  background: #81a4a8;
}

.trip-detail-pane {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(243, 243, 243, 0.97);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}

.trip-detail {
  display: grid;
  gap: 14px;
  min-height: 100%;
  box-sizing: border-box;
  align-content: start;
  background: rgba(243, 243, 243, 0.97);
  padding-bottom: 18px;
}

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

.trip-detail__back,
.trip-detail__top-action,
.trip-detail__title-link {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.trip-detail__back,
.trip-detail__top-action {
  color: #00617a;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trip-detail__top-action:hover,
.trip-detail__back:hover {
  color: #004b5d;
}

.trip-detail__title-link {
  justify-self: start;
  min-width: 0;
  color: #10171d;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 22px;
  line-height: 1.03;
  font-weight: 700;
  text-align: left;
}

.trip-detail__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.trip-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.trip-detail__action-btn {
  min-width: 0;
  min-height: 28px;
  padding: 0 12px;
  font-size: 11px;
}

.trip-detail__action-btn--danger {
  background: rgba(0, 97, 122, 0.94);
}

.trip-detail__about-input {
  min-height: 128px;
  background: rgba(243, 243, 243, 0.97);
  font-size: 15px;
}

.trip-detail__about {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.3;
  color: #33444d;
}

.trip-bookings {
  display: grid;
  gap: 10px;
}

.trip-booking-card {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(120, 185, 154, 0.28);
  background: rgba(240, 250, 244, 0.96);
}

.trip-booking-card__dates {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  font-weight: 700;
  color: #203038;
}

.trip-booking-card__meta {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
  color: #495861;
}

.trip-detail__section {
  margin-top: 0;
  padding-top: 14px;
  background: transparent;
}

.trip-detail__section:first-of-type {
  margin-top: 0;
}

.trip-detail__feed {
  display: grid;
  gap: 12px;
}

.trip-share-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--mobile-nav-offset, 0px) + 24px);
  transform: translateX(-50%);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 97, 122, 0.94);
  color: #fff;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(19, 36, 47, 0.22);
  z-index: 1200;
  max-width: calc(100vw - 32px);
  pointer-events: none;
}

select {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

select option {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.place-panel.is-open:not(.is-profile-suspended):not(.is-mobile-dragging),
.profile-pane.is-open:not(.is-mobile-dragging):not(.is-mobile-peek),
.profile-subpane.is-open:not(.is-mobile-dragging),
.posts-drawer.is-open:not(.is-mobile-dragging),
.providers-drawer.is-open:not(.is-mobile-dragging),
.provider-detail-drawer.is-open:not(.is-mobile-dragging) {
  transform: none;
}

.place-panel__content > .panel-section:first-of-type {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 0;
}

.curated-desktop-banner {
  position: absolute;
  top: 78px;
  left: 12px;
  right: auto;
  width: min(var(--info-pane-max-width), calc(100vw - 24px));
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 97, 122, 0.94);
  border: 1px solid rgba(145, 207, 224, 0.24);
  box-shadow: 0 14px 28px rgba(10, 21, 28, 0.22);
  z-index: 10;
  pointer-events: auto;
}

.app-ui.is-curated-desktop-banner-active .place-panel.is-curated-place-mode {
  top: calc(78px + var(--curated-desktop-banner-height, 76px) + 10px);
}

.curated-desktop-banner__progress {
  min-width: 54px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(145, 207, 224, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}

.curated-desktop-banner__copy {
  min-width: 0;
}

.curated-desktop-banner__name {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.curated-desktop-banner__meta {
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
}

.curated-desktop-banner__exit {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  justify-self: end;
  align-self: start;
}

.curated-pane {
  display: grid;
  gap: 14px;
}

.curated-pane__intro {
  display: grid;
  gap: 6px;
}

.curated-pane__title {
  margin: 0;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 23px;
  line-height: 1.08;
  font-weight: 700;
  color: #23313a;
}

.curated-pane__description {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #4f5f69;
}

.curated-pane__list {
  display: grid;
  gap: 12px;
}

.curated-pane__item {
  width: 100%;
  border: 1px solid rgba(111, 159, 184, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(116px, 30%) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(13, 28, 35, 0.05);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.curated-pane__item:hover {
  border-color: rgba(0, 97, 122, 0.22);
  box-shadow: 0 14px 26px rgba(13, 28, 35, 0.11);
  transform: translateY(-1px);
}

.curated-pane__thumb {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background: linear-gradient(155deg, rgba(116, 166, 177, 0.92), rgba(35, 85, 97, 0.96));
}

.curated-pane__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.curated-pane__thumb-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.88);
}

.curated-pane__item-copy {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 14px 16px;
}

.curated-pane__item-title {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;
  color: #1f2d36;
}

.curated-pane__item-about {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.35;
  color: #34444e;
}

.curated-pane__item-meta {
  margin-top: 8px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 500;
  color: #60717a;
}

.curated-mobile-head {
  display: none;
}

.section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.ratings-list {
  display: grid;
  gap: 7px;
}

.rating-row {
  display: grid;
  grid-template-columns: 64px max-content 18px;
  align-items: center;
  gap: 9px;
}

.rating-label {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  text-align: right;
}

.rating-bar {
  height: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  align-items: stretch;
  width: 162px;
}

.rating-segment {
  display: block;
  position: relative;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.rating-segment__fill {
  display: block;
  height: 100%;
}

.rating-segment.is-off {
  opacity: 1;
}

.rating-value {
  font-size: 15px;
  font-weight: 700;
  color: transparent;
  min-width: 18px;
  text-align: right;
  line-height: 1;
}

.rating-value--star {
  color: #31a8ea;
}

.review-btn {
  margin-top: 12px;
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: #5d9d62;
  color: #fff;
  padding: 10px 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 10px;
  cursor: pointer;
  transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.review-btn:hover {
  background: #528a57;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.review-btn.review-btn--split,
.review-btn.review-btn--provider {
  font-size: 12px;
}

.review-btn.profile-bookings-shell__export-btn {
  background: #72a4a7;
}

.review-btn.profile-bookings-shell__export-btn:hover {
  background: #67979a;
}

.review-btn:active {
  transform: translateY(1px);
}

.photo-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 126px;
  gap: 13px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.photo-tile {
  height: 88px;
  border-radius: 0;
  background: #6f9fb8;
  position: relative;
  flex: 0 0 auto;
  min-width: 120px;
}

.photo-tile__label {
  position: absolute;
  left: 8px;
  bottom: 6px;
  right: 8px;
  color: #fff;
  font-size: 11px;
  line-height: 1.1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.links-title-row {
  display: block;
}

.links-toggle {
  border: 0;
  background: transparent;
  display: block;
  color: #355f3f;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin: 8px 0 0 auto;
  width: fit-content;
  opacity: 0.8;
  transition: opacity 140ms ease;
}

.links-toggle[hidden] {
  display: none;
}

.links-toggle:hover {
  opacity: 1;
}

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.links-card {
  border-radius: 10px;
}

.links-card__link {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 4px;
}

.links-card__link:hover {
  background: rgba(111, 159, 184, 0.09);
}

.links-card--no-thumb {
}

.links-card--no-thumb .links-card__link {
  grid-template-columns: minmax(0, 1fr);
}

.links-card__thumb {
  width: 92px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  background: #d9e2e6;
}

.links-card__body {
  min-width: 0;
}

.links-card__title {
  font-family: var(--font-body);
  color: #1d2b35;
  font-size: 13px;
  line-height: 1.35;
  word-break: break-word;
  font-weight: 400;
}

.links-card__creator {
  margin-top: 4px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #4b5a66;
}

.links-card__meta {
  margin-top: 4px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 11px;
  font-weight: 500;
  color: #6a7681;
}

.links-card__notes {
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: #2b3943;
}

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

.faq-item {
  border: 1px solid rgba(111, 159, 184, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  padding: 10px;
}

.faq-item__q {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 14px;
  font-weight: 700;
  color: #22313a;
  margin-bottom: 4px;
}

.faq-item__a {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: #22313a;
}

.feed-list {
  display: grid;
  gap: 10px;
  min-width: 0;
  max-width: 100%;
}

.feed-post {
  border-top: 1px solid rgba(111, 159, 184, 0.28);
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  padding-right: 10px;
  padding-top: 10px;
}

.feed-post--first {
  border-top: 0;
  padding-top: 0;
}

.feed-breadcrumb {
  color: #7884db;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feed-breadcrumb__btn {
  border: 0;
  background: transparent;
  color: #7c84de;
  font: inherit;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
}

.feed-breadcrumb__btn:hover {
  text-decoration: underline;
}

.feed-breadcrumb__text {
  color: #3242c8;
}

.feed-breadcrumb__sep {
  color: #7c84de;
}

.feed-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  box-sizing: border-box;
  padding-right: 10px;
  font-size: 11px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.feed-meta > .overflow-menu {
  margin-left: auto;
}

.feed-meta__spacer {
  flex: 1 1 auto;
}

.feed-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #8bd42e;
  flex: 0 0 auto;
  align-self: center;
}

#profile-pane #profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex: 0 0 50px;
}

.feed-author {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
}

.is-clickable {
  cursor: pointer;
}

.feed-author.is-clickable:hover,
.provider-thread__author.is-clickable:hover,
.feed-comment__text strong.is-clickable:hover,
.provider-thread__reply-body strong.is-clickable:hover {
  text-decoration: underline;
}

.feed-role,
.feed-age {
  font-size: 14px;
  color: #6b757c;
}

.feed-text {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.feed-post-place {
  margin: 8px 0 8px;
  color: #05637c;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feed-post-place__btn {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.feed-post-place__btn:hover {
  text-decoration: underline;
}

.feed-photos {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 126px;
  gap: 8px;
  margin-bottom: 8px;
  overflow-x: auto;
}

.feed-photo {
  height: 88px;
  border-radius: 0;
  background: #6d9dca;
}

.feed-comments {
  display: grid;
  gap: 6px;
  margin-left: 18px;
  padding-right: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(111, 159, 184, 0.24);
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.feed-comment {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

.feed-comment > .overflow-menu {
  margin-left: auto;
}

.feed-comment .feed-avatar {
  width: 10px;
  height: 10px;
  margin-top: 3px;
  background: #7b4308;
}

.provider-thread__reply .feed-avatar {
  align-self: flex-start !important;
  margin-top: calc((1.45em - 10px) / 2) !important;
}

.feed-comment__left {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
  flex: 1 1 auto;
}

.feed-comment__text {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.feed-comment__text strong {
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
}

.overflow-menu {
  position: relative;
  flex: 0 0 auto;
  align-self: center;
}

.overflow-menu__trigger {
  list-style: none;
  border: 0;
  background: transparent;
  color: #0f2c85;
  cursor: pointer;
  padding: 0 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  line-height: 1;
  font-size: 12px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-weight: 500;
  opacity: 0.3;
  transition: opacity 140ms ease;
}

.overflow-menu__trigger:hover,
.overflow-menu[open] > .overflow-menu__trigger {
  opacity: 1;
}

.overflow-menu__trigger::-webkit-details-marker {
  display: none;
}

.overflow-menu__panel {
  position: absolute;
  top: 16px;
  right: 0;
  min-width: 140px;
  background: #fff;
  border: 1px solid rgba(17, 34, 64, 0.14);
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  padding: 4px;
  z-index: 20;
  display: grid;
  gap: 2px;
}

.overflow-menu__item {
  border: 0;
  background: transparent;
  text-align: left;
  padding: 7px 8px;
  font-family: var(--font-gotham);
  font-size: 12px;
  text-transform: uppercase;
  color: #1d2b35;
  cursor: pointer;
  border-radius: 4px;
}

.overflow-menu__item:hover {
  background: rgba(111, 159, 184, 0.12);
}

.comment-input-row {
  margin-top: 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 8px;
  align-items: start;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.comment-input-row.profile-contact-card__input-row {
  width: calc(100% - 18px);
  max-width: calc(100% - 18px);
}

.comment-input {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  box-sizing: border-box;
  resize: vertical;
  border: 1px solid rgba(109, 122, 132, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #46545d;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.35;
  padding: 8px 10px;
}

.comment-input:disabled {
  background: #eef2f3;
  color: #526168;
}

.comment-input::placeholder {
  color: rgba(52, 64, 72, 0.96);
}

.comment-send {
  border: 0;
  border-radius: 4px;
  background: #b9c0c5;
  color: #fff;
  font-family: var(--font-gotham);
  font-size: 15px;
  font-weight: 500;
  min-width: 52px;
  min-height: 38px;
  padding: 0 12px;
  align-self: start;
  cursor: pointer;
  transition: background-color 140ms ease;
}

.comment-send:hover {
  background: #a7afb5;
}

.comment-send.is-ready {
  background: #6f8f99;
}

.comment-send.is-ready:hover {
  background: #5f7f89;
}

.feed-section-label {
  margin-top: 10px;
  padding-top: 2px;
  font-family: "Gotham Narrow", var(--font-gotham);
  font-size: 12px;
  font-weight: 500;
  color: #05637c;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feed-section-label__btn {
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.feed-section-label__btn:hover {
  text-decoration: underline;
}

.feed-no-place-posts {
  margin: 10px 0 4px;
  text-align: center;
  color: #488a9b;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
}

.empty-copy {
  font-size: 13px;
  color: #5f6c74;
}

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

@media (max-width: 960px) {
  .map-status {
    padding-top: 72px;
  }

  .map-status__card {
    width: min(100%, 420px);
    border-radius: 16px;
    padding: 16px 16px 15px;
  }

  .map-status__title {
    font-size: 18px;
  }

  .map-status__body {
    font-size: 14px;
  }

  .app-header {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 56px;
    padding: 0 12px;
    gap: 8px;
  }

  .title-lockup {
    --header-title-size: clamp(15px, 4.7vw, 26px);
    --header-logo-size: clamp(32px, 8.4vw, 42px);
    --header-title-track: 0.05em;
    min-width: 0;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
  }

  .title-sep,
  .country {
    min-width: 0;
  }

  .auth-actions {
    gap: 4px;
  }

  .ghost-btn {
    font-size: 12px;
    padding: 6px 3px;
    letter-spacing: 0.03em;
  }

  .profile-launch__badge {
    min-width: 16px;
    height: 16px;
    margin-right: 6px;
    font-size: 10px;
  }

  .place-panel {
    --place-panel-mobile-peek: 76px;
    --place-panel-mobile-half-height: 50dvh;
    --place-panel-mobile-full-height: calc(100dvh - 108px);
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: var(--place-panel-mobile-peek);
    max-height: var(--place-panel-mobile-peek);
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% - var(--place-panel-mobile-peek)));
  }

  .landing-panel {
    --landing-panel-mobile-half-height: min(56dvh, var(--landing-panel-mobile-full-height, calc(100dvh - 108px)));
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: var(--landing-panel-mobile-half-height);
    max-height: var(--landing-panel-mobile-full-height);
    border-radius: 28px 28px 0 0;
  }

  .landing-panel__inner {
    padding: 0 0 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .landing-panel__head {
    top: 14px;
    right: 10px;
  }

  .landing-panel__image-wrap {
    border-radius: 26px 26px 0 0;
    aspect-ratio: auto;
    height: clamp(116px, calc((100vw - 16px) / 1.72 - 64px), 164px);
    flex: 0 0 clamp(116px, calc((100vw - 16px) / 1.72 - 64px), 164px);
  }

  .landing-panel__body {
    padding: 18px 14px 14px;
  }

  .landing-panel__title {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .landing-panel__list {
    gap: 10px;
    font-size: 14px;
  }

  .landing-panel__places {
    gap: 14px;
    padding-left: 34px;
  }

  .landing-panel__place-link {
    font-size: 16px;
    padding: 4px 0;
  }

  .map-page-footer-link,
  .map-page-footer-links__separator {
    font-size: 14px;
  }

  .profile-pane--terms {
    left: 8px;
    right: 8px;
    top: calc(100dvh - var(--profile-pane-mobile-full-height, calc(100dvh - 108px)));
    bottom: auto;
    width: auto;
    height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    max-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    border-radius: 20px 20px 0 0;
  }

  .profile-terms-pane__inner {
    padding: 0 0 16px;
  }

  .profile-terms-pane__head {
    top: 6px;
    right: 10px;
    left: 10px;
  }

  .profile-terms-pane__image-wrap {
    border-radius: 26px 26px 0 0;
    aspect-ratio: 1.72 / 1;
  }

  .profile-terms-pane__body {
    padding: 18px 14px 14px;
  }

  .profile-terms-pane__image-label {
    left: 14px;
    font-size: 20px;
  }

  .profile-terms-pane__title {
    font-size: 20px;
  }

  .place-panel.is-open {
    transform: none;
  }

  .place-panel.is-open.is-mobile-peek {
    height: var(--place-panel-mobile-peek);
    max-height: var(--place-panel-mobile-peek);
  }

  .place-panel.is-open:not(.is-mobile-full):not(.is-mobile-peek):not(.is-mobile-dragging) {
    height: min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height));
    max-height: var(--place-panel-mobile-full-height);
  }

  .place-panel.is-hidden-empty-state {
    transform: translateY(calc(100% + 12px));
    pointer-events: none;
  }

  .place-panel.is-open.is-mobile-full {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  .place-panel.is-profile-suspended {
    transform: translateY(calc(100% + 12px));
    pointer-events: none;
  }

  .place-panel.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    transform: translateY(0);
    height: var(--place-panel-mobile-drag-height, min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height)));
    max-height: var(--place-panel-mobile-full-height);
    transition: none;
  }

  .place-panel.is-open.is-mobile-full.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--place-panel-mobile-drag-height, min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height)));
    max-height: var(--place-panel-mobile-full-height);
  }

  .place-panel.is-open.is-mobile-peek.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--place-panel-mobile-drag-height, var(--place-panel-mobile-peek));
    max-height: var(--place-panel-mobile-full-height);
  }

  .profile-pane {
    --profile-pane-mobile-peek: 76px;
    --profile-pane-mobile-half-height: 50dvh;
    --profile-pane-mobile-full-height: calc(100dvh - 108px);
    left: 8px;
    right: 8px;
    top: auto;
    bottom: var(--mobile-nav-offset);
    width: auto;
    height: min(var(--profile-pane-mobile-half-height), var(--profile-pane-mobile-full-height));
    max-height: var(--profile-pane-mobile-full-height);
    border-radius: 20px 20px 0 0;
    transform: translateY(calc(100% - var(--profile-pane-mobile-peek)));
    transition: transform 220ms ease, height 220ms ease, max-height 220ms ease, opacity 180ms ease;
  }

  .profile-pane.is-open {
    transform: none;
  }

  .profile-pane.is-open.is-mobile-peek {
    transform: translateY(0);
    height: var(--profile-pane-mobile-peek);
    max-height: var(--profile-pane-mobile-peek);
    touch-action: none;
  }

  .profile-pane.is-open.is-mobile-peek .profile-pane__inner {
    touch-action: none;
  }

  .profile-pane.is-open.is-mobile-full {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  .profile-pane.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    transform: translateY(0);
    height: var(--profile-pane-mobile-drag-height, min(var(--profile-pane-mobile-half-height), var(--profile-pane-mobile-full-height)));
    max-height: var(--profile-pane-mobile-full-height);
    transition: none;
  }

  .profile-pane.is-open.is-mobile-full.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--profile-pane-mobile-drag-height, min(var(--profile-pane-mobile-half-height), var(--profile-pane-mobile-full-height)));
    max-height: var(--profile-pane-mobile-full-height);
  }

  .profile-pane.is-open.is-mobile-peek.is-mobile-dragging {
    transform: translateY(0);
    height: var(--profile-pane-mobile-drag-height, var(--profile-pane-mobile-peek));
    max-height: var(--profile-pane-mobile-full-height);
  }

  .profile-pane.profile-pane--terms {
    top: var(--profile-pane-mobile-top, 108px);
    bottom: auto;
    height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    max-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
  }

  .place-panel,
  .profile-pane,
  .profile-pane--terms,
  .profile-subpane,
  #profile-settings-pane,
  #profile-bookings-pane,
  #profile-subpane,
  #profile-edit-pane {
    --mobile-info-pane-width: 100vw;
    width: var(--mobile-info-pane-width);
    max-width: var(--mobile-info-pane-width);
    left: calc((100vw - var(--mobile-info-pane-width)) / 2);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  @media (min-width: 701px) {
    .place-panel,
    .profile-pane,
    .profile-pane--terms,
    .profile-subpane,
    #profile-settings-pane,
    #profile-bookings-pane,
    #profile-subpane,
    #profile-edit-pane,
    .video-drawer {
      left: 8px;
    }
  }

  .panel-grabber {
    display: block;
    width: 64px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    margin: 10px auto 2px;
    flex: 0 0 auto;
    touch-action: none;
  }

  .place-panel__inner {
    padding-top: 0;
  }

  .place-panel__head {
    padding-top: 4px;
    padding-bottom: 8px;
    min-height: 34px;
    touch-action: none;
  }

  .profile-pane__inner {
    padding-top: 0;
  }

  .profile-pane,
  .profile-pane__inner,
  .profile-subpane,
  .profile-subpane__inner,
  #profile-settings-pane,
  #profile-settings-pane .profile-subpane__inner,
  #profile-edit-pane,
  #profile-edit-pane .profile-subpane__inner {
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

  .place-panel.is-trip-mode,
  .place-panel.is-trip-mode .place-panel__inner,
  .place-panel.is-trip-mode .trip-pane,
  .place-panel.is-trip-mode .trip-pane__main,
  .place-panel.is-trip-mode .trip-detail-pane,
  .place-panel.is-curated-index-mode,
  .place-panel.is-curated-index-mode .place-panel__inner,
  .place-panel.is-curated-index-mode .curated-pane,
  .place-panel.is-curated-index-mode .curated-pane__list,
  .posts-drawer,
  .posts-drawer__body,
  .posts-feed-list {
    touch-action: pan-y;
    overscroll-behavior: contain;
  }

  .place-panel.is-trip-mode .place-panel__inner,
  .place-panel.is-trip-mode .trip-pane,
  .place-panel.is-trip-mode .trip-pane__main,
  .place-panel.is-curated-index-mode .place-panel__inner,
  .place-panel.is-curated-index-mode .curated-pane,
  .place-panel.is-curated-index-mode .curated-pane__list {
    overflow-x: hidden;
  }

  .profile-pane__head,
  .profile-pane > .panel-grabber,
  .profile-subpane__head,
  .profile-subpane > .panel-grabber,
  #profile-settings-pane .profile-subpane__head,
  #profile-settings-pane > .panel-grabber,
  #profile-edit-pane .profile-subpane__head,
  #profile-edit-pane > .panel-grabber {
    touch-action: none;
  }

  .place-panel.is-posts-overlay .place-panel__inner {
    visibility: hidden;
  }

  .place-panel.is-posts-overlay .posts-drawer {
    visibility: visible;
  }

.place-panel.is-providers-overlay .place-panel__inner {
  visibility: hidden;
}

  .place-panel.is-providers-overlay .providers-drawer {
    visibility: visible;
  }

  .place-panel.is-provider-detail-overlay {
    opacity: 0;
    pointer-events: none;
  }

.place-panel.is-provider-detail-overlay > .panel-grabber,
.place-panel.is-provider-detail-overlay > .place-panel__head,
.place-panel.is-provider-detail-overlay > .place-panel__inner {
  visibility: hidden;
}

.app-ui.is-provider-detail-overlay .providers-drawer {
  visibility: hidden;
}

.app-ui.is-provider-detail-overlay .provider-detail-drawer {
  visibility: visible;
}

.providers-drawer.is-open,
.provider-detail-drawer.is-open {
  transform: translateY(0);
}

.providers-drawer.is-open.is-mobile-full,
.provider-detail-drawer.is-open.is-mobile-full {
  top: var(--mobile-panel-top-inset, 54px);
  bottom: var(--mobile-nav-offset);
  height: auto;
    max-height: none;
  }

  .providers-drawer.is-mobile-dragging,
  .provider-detail-drawer.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    transform: translateY(0);
    height: var(--place-panel-mobile-drag-height, min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height)));
    max-height: var(--place-panel-mobile-full-height);
    transition: none;
  }

  .providers-drawer.is-open.is-mobile-full.is-mobile-dragging,
  .provider-detail-drawer.is-open.is-mobile-full.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--place-panel-mobile-drag-height, min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height)));
    max-height: var(--place-panel-mobile-full-height);
  }

.profile-pane.is-subpane-overlay .profile-pane__inner {
  visibility: hidden;
}

@media (max-width: 700px) {
  #auth-sign-in,
  #auth-sign-up {
    display: none !important;
  }

  .ghost-btn--mobile-auth {
    display: inline-block;
    font-size: 12px;
    padding: 6px 4px;
    letter-spacing: 0.03em;
  }

  .ghost-btn--mobile-auth.is-hidden {
    display: none !important;
  }
}

.place-panel.is-open:not(.is-profile-suspended):not(.is-mobile-dragging),
.profile-pane.is-open:not(.is-mobile-dragging):not(.is-mobile-peek),
.profile-subpane.is-open:not(.is-mobile-dragging),
.posts-drawer.is-open:not(.is-mobile-dragging),
.providers-drawer.is-open:not(.is-mobile-dragging),
.provider-detail-drawer.is-open:not(.is-mobile-dragging) {
  transform: none;
}

@media (max-width: 700px) {
  select,
  select option {
    font-size: 16px;
    line-height: 1.4;
  }
}

.profile-pane.is-edit-subpane-overlay .profile-pane__inner {
  visibility: hidden;
}

.profile-pane.is-edit-subpane-overlay {
  opacity: 0;
  pointer-events: none;
}

.profile-pane.is-subpane-overlay .profile-subpane {
  visibility: visible;
}

  .video-drawer {
    --mobile-video-pane-width: 100vw;
    width: var(--mobile-video-pane-width);
    max-width: var(--mobile-video-pane-width);
    max-height: var(--place-panel-mobile-full-height);
    top: var(--mobile-panel-top-inset, 54px);
    margin-left: 0;
    margin-right: 0;
    left: calc((100vw - var(--mobile-video-pane-width)) / 2);
    right: auto;
    bottom: auto;
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% + 8px));
  }

  .video-drawer.is-open {
    transform: translateY(0);
  }

  .posts-drawer {
    --place-panel-mobile-peek: 76px;
    --place-panel-mobile-half-height: 50dvh;
    --place-panel-mobile-full-height: calc(100dvh - 108px);
    position: absolute;
    inset: auto 0 0 0;
    width: auto;
    left: 0;
    right: 0;
    bottom: var(--mobile-nav-offset);
    top: auto;
    height: var(--place-panel-mobile-peek);
    min-height: 0;
    max-height: var(--place-panel-mobile-peek);
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% - var(--place-panel-mobile-peek)));
    resize: none;
  }

  .providers-drawer,
  .provider-detail-drawer {
    --place-panel-mobile-peek: 76px;
    --place-panel-mobile-half-height: 50dvh;
    --place-panel-mobile-full-height: calc(100dvh - 108px);
    position: absolute;
    inset: auto 0 0 0;
    width: auto;
    left: 0;
    right: 0;
    bottom: var(--mobile-nav-offset);
    top: auto;
    height: var(--place-panel-mobile-peek);
    min-height: 0;
    max-height: var(--place-panel-mobile-peek);
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% - var(--place-panel-mobile-peek)));
    resize: none;
  }

  .photo-drawer {
    --place-panel-mobile-full-height: calc(100dvh - 108px);
    --mobile-feed-pane-width: 100vw;
    position: absolute;
    inset: auto 0 0 0;
    width: var(--mobile-feed-pane-width);
    max-width: var(--mobile-feed-pane-width);
    left: calc((100vw - var(--mobile-feed-pane-width)) / 2);
    right: auto;
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: var(--place-panel-mobile-full-height);
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% + 8px));
    resize: none;
  }

  .posts-drawer,
  .providers-drawer,
  .provider-detail-drawer {
    --mobile-feed-pane-width: 100vw;
    width: var(--mobile-feed-pane-width);
    max-width: var(--mobile-feed-pane-width);
    left: calc((100vw - var(--mobile-feed-pane-width)) / 2);
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .profile-subpane {
    --profile-subpane-mobile-full-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    position: absolute;
    inset: auto 0 0 0;
    width: var(--mobile-info-pane-width);
    left: calc((100vw - var(--mobile-info-pane-width)) / 2);
    right: auto;
    bottom: var(--mobile-nav-offset);
    top: auto;
    height: var(--profile-subpane-mobile-full-height);
    min-height: 0;
    max-height: var(--profile-subpane-mobile-full-height);
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% + 8px));
    resize: none;
  }

  #profile-settings-pane,
  #profile-bookings-pane,
  #profile-subpane,
  #profile-edit-pane {
    border-radius: 20px 20px 0 0;
  }

  #profile-settings-pane {
    --profile-subpane-mobile-full-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    --profile-subpane-mobile-half-height: min(50dvh, var(--profile-subpane-mobile-full-height));
    height: var(--profile-subpane-mobile-full-height);
    max-height: var(--profile-subpane-mobile-full-height);
    transition: transform 220ms ease, height 220ms ease, max-height 220ms ease;
  }

  #profile-subpane {
    --profile-subpane-mobile-full-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    --profile-subpane-mobile-open-height: var(--profile-subpane-mobile-full-height);
  }

  .profile-subpane--edit {
    --profile-subpane-mobile-full-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
  }

  .profile-subpane.is-open {
    transform: none;
  }

  .profile-subpane__inner {
    padding-top: 4px;
  }

  #profile-subpane.is-open {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  #profile-bookings-pane.is-open {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  #profile-settings-pane.is-open:not(.is-mobile-full) {
    height: var(--profile-subpane-mobile-half-height);
    max-height: var(--profile-subpane-mobile-full-height);
  }

  #profile-settings-pane.is-open.is-mobile-full {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  #profile-settings-pane.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--profile-subpane-mobile-drag-height, var(--profile-subpane-mobile-full-height));
    max-height: var(--profile-subpane-mobile-full-height);
    transition: none;
  }

  #profile-settings-pane .profile-subpane__inner {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  #profile-settings-pane .profile-subpane__head,
  #profile-settings-pane .panel-grabber {
    touch-action: none;
  }

  #profile-edit-pane {
    --profile-subpane-mobile-full-height: var(--profile-pane-mobile-full-height, calc(100dvh - 108px));
    --profile-subpane-mobile-half-height: min(50dvh, var(--profile-subpane-mobile-full-height));
    height: var(--profile-subpane-mobile-full-height);
    max-height: var(--profile-subpane-mobile-full-height);
    transition: transform 220ms ease, height 220ms ease, max-height 220ms ease;
  }

  #profile-edit-pane.is-open:not(.is-mobile-full) {
    height: var(--profile-subpane-mobile-half-height);
    max-height: var(--profile-subpane-mobile-full-height);
  }

  #profile-edit-pane.is-open.is-mobile-full {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  #profile-edit-pane.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--profile-subpane-mobile-drag-height, var(--profile-subpane-mobile-full-height));
    max-height: var(--profile-subpane-mobile-full-height);
    transition: none;
  }

  #profile-edit-pane .profile-subpane__inner {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  #profile-edit-pane .profile-subpane__head,
  #profile-edit-pane .panel-grabber {
    touch-action: none;
  }

  .providers-drawer.is-open,
  .provider-detail-drawer.is-open,
  .photo-drawer.is-open {
    transform: translateY(0);
  }

  .posts-drawer.is-open {
    transform: translateY(0);
  }

  .posts-drawer.is-open.is-mobile-peek:not(.is-mobile-dragging),
  .providers-drawer.is-open.is-mobile-peek:not(.is-mobile-dragging),
  .provider-detail-drawer.is-open.is-mobile-peek:not(.is-mobile-dragging) {
    height: var(--place-panel-mobile-peek);
    max-height: var(--place-panel-mobile-peek);
  }

  .posts-drawer.is-open:not(.is-mobile-full):not(.is-mobile-peek):not(.is-mobile-dragging) {
    height: min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height));
    max-height: var(--place-panel-mobile-full-height);
  }

  .providers-drawer.is-open:not(.is-mobile-full):not(.is-mobile-peek):not(.is-mobile-dragging),
  .provider-detail-drawer.is-open:not(.is-mobile-full):not(.is-mobile-peek):not(.is-mobile-dragging) {
    height: min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height));
    max-height: var(--place-panel-mobile-full-height);
  }

  .posts-drawer.is-open.is-mobile-full {
    top: var(--mobile-panel-top-inset, 54px);
    bottom: var(--mobile-nav-offset);
    height: auto;
    max-height: none;
  }

  .posts-drawer.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    transform: translateY(0);
    height: var(--place-panel-mobile-drag-height, min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height)));
    max-height: var(--place-panel-mobile-full-height);
    transition: none;
  }

  .posts-drawer.is-open.is-mobile-full.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--place-panel-mobile-drag-height, min(var(--place-panel-mobile-half-height), var(--place-panel-mobile-full-height)));
    max-height: var(--place-panel-mobile-full-height);
  }

  .posts-drawer.is-open.is-mobile-peek.is-mobile-dragging,
  .providers-drawer.is-open.is-mobile-peek.is-mobile-dragging,
  .provider-detail-drawer.is-open.is-mobile-peek.is-mobile-dragging {
    top: auto;
    bottom: var(--mobile-nav-offset);
    height: var(--place-panel-mobile-drag-height, var(--place-panel-mobile-peek));
    max-height: var(--place-panel-mobile-full-height);
  }

  .panel-action-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 16px;
    margin-bottom: 4px;
  }

  .review-btn--split {
    margin-top: 0;
    min-height: 44px;
    padding: 8px 12px;
    line-height: 1.15;
  }

  .place-title {
    font-size: 23px;
  }

  .place-panel__content > .place-title-row {
    position: relative;
    align-items: flex-start;
    padding-right: 28px;
  }

  .place-panel__content > .place-title-row .place-title {
    margin-right: 0;
  }

  .place-panel__content > .place-title-row .place-title-menu {
    position: absolute;
    top: calc((23px * 1.15 - 16px) / 2);
    right: 0;
    margin: 0;
    align-self: auto;
  }

  .place-panel__eyebrow {
    font-size: 14px;
  }

  .auth-modal {
    inset: 0;
    transform: none;
    width: 100vw;
    height: 100dvh;
    min-height: 0;
    max-height: none;
    padding: calc(env(safe-area-inset-top) + 28px) 17px calc(env(safe-area-inset-bottom) + 20px);
    box-sizing: border-box;
    background: linear-gradient(180deg, #488A9B 0%, #72A4A7 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    grid-template-columns: 1fr;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .auth-modal__promo {
    min-height: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
    color: #ffffff;
  }

  .auth-modal__graphic {
    display: none;
  }

  .auth-modal__promo-title {
    margin-top: 22px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .auth-modal__form-pane {
    padding: 32px 0 0;
    overflow: visible;
    gap: 0;
  }

  .auth-modal__promo,
  .auth-modal__form-pane {
    width: 100%;
    flex: 0 0 auto;
  }

  .auth-modal__form {
    display: block;
  }

  .auth-modal__tabs {
    margin-right: 0;
    gap: 12px;
    margin-bottom: 36px;
  }

  .auth-modal__tab {
    min-height: 38px;
    border: 0;
    border-radius: 7px;
    background: #79A7B3;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.06em;
    opacity: 0.85;
  }

  .auth-modal__tab.is-active {
    background: #0A6980;
    color: #ffffff;
  }

  .auth-modal__eyebrow {
    margin-top: 0;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    font-weight: 500;
    opacity: 0.7;
    letter-spacing: 0.12em;
  }

  .auth-modal__promo-text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.42;
    color: rgba(255, 255, 255, 0.92);
  }

  .auth-modal__promo-title {
    font-weight: 500;
  }

  .auth-modal__field {
    gap: 8px;
    margin-bottom: 15px;
  }

  .auth-modal__field span,
  .auth-modal__field legend {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.03em;
    opacity: 0.8;
  }

  .auth-modal__field input,
  .auth-modal__field select {
    min-height: 39px;
    border: 0;
    border-radius: 8px;
    background: rgba(245, 245, 245, 0.95);
    font-size: 16px;
    padding: 8px 12px;
  }

  .auth-modal__field--radio {
    margin-top: 15px;
    margin-bottom: 13px;
  }

  .auth-modal__radio-group {
    gap: 6px;
  }

  .auth-modal__radio-option {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 11px;
    padding: 1px 0;
  }

  .auth-modal__radio-option input {
    box-sizing: border-box;
    inline-size: 16px;
    block-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    aspect-ratio: 1 / 1;
    appearance: none;
    -webkit-appearance: none;
    border: 1.5px solid rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
  }

  .auth-modal__radio-option span {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
  }

  .auth-modal__radio-option input:checked {
    background: #ffffff;
    box-shadow: inset 0 0 0 3px #29545F;
  }

  .auth-modal__checkbox-field {
    margin-top: 27px;
    margin-bottom: 24px;
  }

  .auth-modal__checkbox-option {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .auth-modal__checkbox-option input {
    width: 16px;
    height: 16px;
    transform: none;
    accent-color: #ffffff;
  }

  .auth-modal__checkbox-copy {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 400;
  }

  .auth-modal__inline-link {
    color: #ffffff;
    font-weight: 400;
  }

  .auth-modal__submit {
    min-height: 39px;
    margin-top: 0;
    margin-bottom: 24px;
    border-radius: 8px;
    background: #0A6980;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    opacity: 0.85;
  }

  .auth-modal__submit--secondary {
    background: #0A6980;
  }

  .auth-modal__text-link {
    margin-top: 32px;
    margin-left: auto;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    opacity: 0.85;
  }

  .auth-modal__status {
    min-height: 0;
    color: #ffffff;
    font-size: 14px;
  }

  .auth-modal__status:not(:empty) {
    margin-bottom: 12px;
    min-height: 20px;
  }

  .auth-modal__status.is-error {
    color: #ffd9d9;
  }

  .auth-modal__close {
    top: calc(env(safe-area-inset-top) + 28px);
    right: 17px;
    color: #ffffff;
    font-size: 13px;
    padding: 0;
    font-weight: 500;
    line-height: 1;
    opacity: 0.7;
  }

  .auth-modal__toast {
    top: calc(env(safe-area-inset-top) + 54px);
    max-width: calc(100% - 34px);
    background: #3dbef5;
  }

  .suggestions-modal {
    inset: max(10px, env(safe-area-inset-top)) 10px calc(env(safe-area-inset-bottom) + 10px) 10px;
    transform: none;
    width: auto;
    max-height: none;
    padding: 26px 18px 18px;
    -webkit-overflow-scrolling: touch;
  }

  .suggestions-modal__title {
    font-size: 28px;
  }

}

@media (max-width: 700px) {
  .overflow-menu__item {
    font-size: 14px;
  }

  .profile-pane__followers-btn,
  .profile-pane__contact-me-btn,
  .tripshaper-pill-btn {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .profile-pane__edit-btn {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .profile-pane__contact-me-btn,
  .profile-pane__edit-btn.profile-pane__contact-me-btn {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  #profile-pane .profile-pane__identity-actions {
    margin-bottom: 8px;
  }

  .profile-pane__title-row {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .profile-pane__identity-copy {
    min-height: 60px;
  }

  .profile-pane__avatar {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  #profile-pane #profile-avatar.profile-pane__avatar {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  #profile-pane .profile-pane__seen-section {
    margin-top: 16px;
  }

  #profile-pane .profile-pane__latest-section {
    margin-top: 16px;
  }

  .profile-pane__head {
    align-items: start;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .profile-pane.has-profile-photo-header .profile-pane__inner {
    --profile-pane-mobile-pad-x: 12px;
    padding-top: 0;
  }

  .profile-pane.has-profile-photo-header .profile-pane__head {
    position: sticky;
    top: 0;
    left: 12px;
    right: 12px;
    z-index: 4;
    min-height: 34px;
    margin: 0 calc(var(--profile-pane-mobile-pad-x, 12px) * -1);
    padding: 4px var(--profile-pane-mobile-pad-x, 12px) 8px;
    background: rgba(243, 243, 243, 0.985);
    pointer-events: none;
    border-bottom: 0;
  }

  .profile-pane.has-profile-photo-header .profile-pane__signout-btn,
  .profile-pane.has-profile-photo-header #profile-pane-close {
    color: #5f6b73;
    opacity: 0.62;
    text-shadow: none;
    pointer-events: auto;
  }

  .profile-pane.has-profile-photo-header #profile-pane-eyebrow {
    display: none;
  }

  .profile-pane.has-profile-photo-header .profile-pane__photos {
    position: relative;
    height: 138px;
    margin: 0 0 18px;
    overflow: hidden;
  }

  .profile-pane.has-profile-photo-header .profile-pane__photos::after {
    content: none;
  }

  .profile-pane__head-left {
    align-items: flex-start;
    gap: 2px;
  }

  .profile-pane__signout-btn {
    align-self: flex-start;
    width: auto;
    padding: 4px 0 2px 0;
    font-size: 13px;
    text-align: left;
    line-height: 1;
  }

  #profile-pane-close {
    align-self: start;
    line-height: 1;
    padding-top: 4px;
    padding-bottom: 2px;
    padding-left: 0;
    padding-right: 0;
  }

  .place-title {
    margin-top: -6px;
  }

  .place-panel__content > .place-title-row .place-title {
    margin-top: 0;
  }

  .place-description {
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .curated-pane__description {
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .curated-pane__title {
    margin-top: 0;
  }

  .curated-pane__item-title,
  .posts-drawer__title,
  .providers-drawer__title {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 700;
    color: #22313a;
  }

  .profile-pane__title.place-title,
  .provider-detail-drawer__title,
  .provider-card__name,
  .trip-summary-card__title,
  .trip-detail__title-link,
  .curated-pane__title {
    font-size: 23px;
  }

  .providers-drawer__title {
    margin-top: 0;
  }

  .curated-pane__item-about {
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .curated-pane__item-meta {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.3;
  }

  .place-description--clamped {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .place-description-toggle {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    justify-content: flex-end;
    margin: -24px 0 -1px;
  }

  .place-panel__content > .panel-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .place-panel__eyebrow {
    font-size: 14px;
  }

  .place-panel__inner {
    padding: 0 12px 14px;
  }

  .profile-pane__inner {
    padding: 0 12px 14px;
  }

  .profile-pane__about {
    margin-top: 0;
  }

  .profile-pane__title-row {
    margin-bottom: 10px;
  }

  .panel-section {
    margin-top: 8px;
    padding-top: 8px;
  }

  .section-title {
    font-size: 14px;
  }

  .panel-section--ratings .section-title {
    margin-bottom: 12px;
  }

  .panel-action-row {
    margin-top: 21px;
  }

  .panel-action-row .review-btn--split {
    margin-top: 0;
  }

  .place-add-trip-btn {
    font-size: 12px;
    font-weight: 500;
  }

  .panel-close,
  .profile-pane__signout-btn,
  .profile-subpane__back-btn,
  .links-toggle {
    font-size: 13px;
  }

  .profile-pane__edit-btn,
  .trip-lozenge-btn {
    font-size: 14px;
  }

  .rating-label {
    font-size: 13px;
  }

  .faq-item__q {
    font-size: 15px;
  }

  .faq-item__a {
    font-size: 15px;
    line-height: 1.45;
  }

  .links-card__title {
    font-size: 14px;
    line-height: 1.4;
  }

  .links-card__creator,
  .links-card__notes,
  .video-drawer__open,
  .video-drawer__notice {
    font-size: 13px;
  }

  .links-card__meta {
    font-size: 12px;
  }

  .place-risk-disclaimer {
    font-size: 13px;
  }

  .profile-pane__provider-meta {
    font-size: 14px;
    line-height: 1.3;
  }

  .review-btn--split {
    font-size: 13px;
    letter-spacing: 0.03em;
    min-height: 44px;
  }

  .review-btn--provider {
    background: rgba(0, 97, 122, 0.9) !important;
    min-height: 44px;
    padding: 8px 12px;
    font-size: 13px;
    letter-spacing: 0.03em;
  }

  .review-btn--provider:hover {
    background: #055468 !important;
  }

  .posts-drawer__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 10px 12px 8px;
    touch-action: none;
  }

  .posts-drawer__head .panel-grabber {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0 auto 6px;
  }

  .posts-drawer__meta {
    grid-column: 1;
    touch-action: none;
  }

  .posts-drawer__close {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.1;
  }

  .providers-drawer__head,
  .provider-detail-drawer__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 10px 12px 8px;
    touch-action: none;
  }

  .provider-detail-drawer__head {
    row-gap: 6px;
    column-gap: 12px;
  }

  .providers-drawer__head .panel-grabber,
  .provider-detail-drawer__head .panel-grabber {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0 auto 6px;
  }

  .providers-drawer__meta,
  .provider-detail-drawer__meta {
    grid-column: 1;
    align-self: start;
    touch-action: none;
  }

  .providers-drawer__close,
  .provider-detail-drawer__close {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
    padding: 0 4px;
    line-height: 1.1;
  }

  .providers-drawer__subtitle,
  .provider-detail-drawer__subtitle {
    font-size: 14px;
    line-height: 1.4;
  }

  .providers-drawer__body,
  .provider-detail-drawer__body {
    padding: 10px 12px 12px;
    background: rgba(243, 243, 243, 0.985);
  }

  .provider-detail-drawer__back {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 1.1;
    font-size: 13px;
  }

  .provider-detail-drawer__meta {
    display: none;
  }

  .provider-detail-drawer__body {
    padding-top: 6px;
  }

  .photo-drawer__head {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "back close"
      "title title";
    padding-top: 12px;
  }

  .photo-drawer__back {
    grid-area: back;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1.1;
  }

  .photo-drawer__close {
    grid-area: close;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .photo-drawer__meta {
    grid-area: title;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .photo-drawer__body {
    padding-left: 0;
    padding-right: 0;
  }

  .photo-drawer__image {
    border-radius: 0;
  }

  .profile-edit-two-col {
    grid-template-columns: 1fr;
  }

  .profile-edit-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
  }

  #profile-edit-avatar-preview.profile-edit-avatar-preview {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
  }

  .profile-edit-photo-tile {
    gap: 4px;
  }

  .profile-edit-photo-tile__label {
    font-size: 12px;
  }

  .profile-edit-photo-tile__preview {
    aspect-ratio: 1 / 1;
  }

  .profile-edit-photo-tile__button {
    min-height: 26px;
    padding: 0 4px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .profile-bookings-shell__unit-photo .profile-edit-photo-tile__label {
    font-size: 13px;
  }

  .profile-bookings-shell__unit-photo .profile-edit-photo-tile__button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .profile-pane__meta-grid {
    gap: 0;
    border-top: 1px solid rgba(114, 164, 167, 0.44);
  }

  .profile-pane__contact-row {
    min-width: 0;
  }

  .provider-card__contact-row {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 8px;
  }

  .provider-card__contact-marker {
    display: none;
  }

  .provider-card__contact-row strong {
    white-space: nowrap;
  }

  .provider-card__photos {
    height: 128px;
  }

  .provider-option-card__learn-more,
  .provider-option-card__price,
  .provider-option-card__sponsored {
    font-size: 11px;
  }

  .provider-options__heading {
    font-size: 14px;
  }

  .provider-option-card__learn-more {
    top: 8px;
    right: 10px;
    min-height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(0, 97, 122, 0.9);
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .provider-option-card__price {
    top: 38px;
    right: 12px;
  }

  .provider-option-card__photos {
    width: min(262px, calc(100% - 88px));
    height: 76px;
  }

  .provider-option-card.is-sponsored .provider-option-card__learn-more {
    color: rgba(0, 97, 122, 0.9);
  }

  .provider-option-card__photos__item {
    width: 100%;
  }

  .provider-option-card.is-sponsored .provider-option-card__photos__item {
    width: 100%;
  }

  .provider-option-card__name {
    font-size: 20px;
  }

  .provider-option-card__kind {
    font-size: 14px;
  }

  .provider-option-card__about {
    font-size: 15px;
    line-height: 1.45;
    -webkit-line-clamp: 4;
  }

  .provider-card__top-price {
    font-size: 13px;
  }

  .provider-card__name {
    font-size: 23px;
  }

  .provider-card__kind,
  .provider-card__address {
    font-size: 14px;
  }

  .provider-card__about {
    font-size: 15px;
    line-height: 1.45;
  }

  .provider-card__contact-row {
    font-size: 13px;
  }

  .provider-card__contact-row strong {
    font-size: 14px;
  }

  .provider-card__chat-title,
  .provider-card__section-title {
    font-size: 17px;
  }

  .provider-room-option {
    grid-template-columns: minmax(118px, 36%) minmax(0, 1fr);
    gap: 0;
    min-height: 132px;
  }

  .provider-room-option--no-photo {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .provider-room-option__photo {
    width: 100%;
  }

  .provider-room-option__title {
    font-size: 16px;
  }

  .provider-room-option__price,
  .provider-room-option__meta {
    font-size: 15px;
  }

  .provider-room-option__note {
    font-size: 15px;
  }

  .provider-card__option-row,
  .provider-card__option-price {
    font-size: 14px;
  }

  .provider-thread__author,
  .provider-thread__question,
  .provider-thread__reply-body {
    font-size: 16px;
    line-height: 1.45;
  }

  .provider-thread__author,
  .provider-thread__submeta {
    font-size: 16px;
    line-height: 1.1;
  }

  .provider-thread__reply-body strong {
    font-size: 16px;
  }

  .provider-thread__privacy {
    font-size: 10px;
    line-height: 1.2;
  }

  .provider-card__booking-range-endpoint,
  .provider-card__booking-range-extra {
    font-size: 13px;
  }

  .provider-card__booking-check,
  .provider-card__booking-waiver-link,
  .provider-card__booking-status {
    font-size: 14px;
  }

  .provider-card__composer-send {
    font-size: 14px;
  }

  .provider-thread__booking-actions .provider-thread__booking-action,
  .provider-thread__booking-actions .provider-thread__booking-status--action,
  .profile-contact-card__booking-status-row .profile-contact-card__booking-status,
  .profile-contact-card__booking-status-row .profile-contact-card__booking-action--inline {
    min-height: 32px;
    padding: 0 12px;
    font-size: 14px;
  }

  .provider-thread--booking .provider-thread__booking-summary,
  .provider-thread--booking .provider-thread__booking-status {
    font-size: 14px;
  }

  .provider-thread--booking .provider-thread__booking-summary {
    margin-top: 8px;
  }

  .posts-drawer__title {
    margin-top: 0;
  }

  .providers-drawer__title {
    margin-top: 0;
  }

  .posts-drawer__body {
    grid-template-rows: auto auto 1fr;
    gap: 10px;
    padding: 10px 12px 12px;
    background: rgba(243, 243, 243, 0.985);
    overflow-x: hidden;
  }

  .posts-drawer__cta {
    min-height: 40px;
    margin-top: -7px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .posts-composer-shell {
    padding: 16px 10px 10px;
    border-radius: 8px;
  }

  .posts-composer-type__chip {
    min-height: 28px;
    padding: 0 10px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .posts-composer-type {
    margin-top: 6px;
    margin-bottom: 18px;
  }

  .posts-composer-field {
    margin-top: 16px;
  }

  .posts-composer-textarea {
    min-height: 88px;
    height: 88px;
    padding: 8px 10px;
    line-height: 1.3;
  }

  .posts-composer-actions {
    margin-top: 8px;
  }

  .posts-composer-submit {
    min-width: 110px;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .posts-composer-field__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .posts-review-slider span {
    font-size: 12px;
    font-weight: 500;
  }

  .posts-review-fields__title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .app-header {
    height: 52px;
    padding: 0 8px;
    gap: 6px;
    background: #015368;
  }

  .auth-modal__tabs {
    width: 100%;
    margin-right: 0;
    gap: clamp(8px, 2.4vw, 12px);
  }

  .title-lockup {
    --header-title-size: 20px;
    --header-logo-size: 38px;
    --header-title-track: 0.04em;
  }

  .auth-actions {
    gap: 4px;
  }

  .top-search-input {
    min-height: 38px;
    font-size: 16px;
    padding: 7px 10px;
  }

  .top-search-option {
    font-size: 16px;
    padding: 8px 10px;
  }

  .lang-toggle {
    height: 34px;
  }

  .lang-toggle__flag {
    width: 20px;
    height: 14px;
  }

  .ghost-btn {
    font-size: 13px;
    padding: 5px 2px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .app-header {
    grid-template-columns: minmax(0, 1fr) auto;
    height: 50px;
    padding: 0 6px;
    gap: 4px;
    align-items: center;
    background: #015368;
  }

  .title-lockup {
    display: flex;
    align-items: center;
    gap: 5px;
    --header-title-size: 30px;
    --header-logo-size: 38px;
    --header-title-track: 0.08em;
  }

  .title-sep {
    display: none;
  }

  .brand,
  .country {
    font-size: var(--header-title-size);
    line-height: 1;
    white-space: nowrap;
  }

  .title-lockup .country {
    font-size: 0;
  }

  .country::before {
    content: none;
  }

  .country::after {
    content: "IN";
    font-size: var(--header-title-size);
  }

  .auth-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
  }

  .top-search-input {
    min-height: 38px;
    font-size: 16px;
    padding: 6px 9px;
  }

  .posts-composer-textarea,
  .comment-input,
  .auth-modal__field input,
  .auth-modal__field select,
  .profile-edit-field input,
  .profile-edit-field textarea,
  .profile-edit-area-input,
  .provider-card__booking-input,
  .provider-thread__input,
  .profile-contact-card__input,
  .profile-public-contact-input {
    font-size: 16px;
  }

  .top-search-option {
    font-size: 15px;
    padding: 8px 9px;
  }

  .lang-toggle {
    height: 32px;
  }

  .lang-toggle__flag {
    width: 18px;
    height: 12px;
  }

  .ghost-btn {
    font-size: 11px;
    padding: 2px 1px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  #auth-profile {
    order: 2;
    padding-left: 11px;
    padding-right: 11px;
  }

  #lang-toggle {
    order: 1;
  }

  .landing-panel {
    max-height: var(--landing-panel-mobile-full-height, calc(100dvh - 108px));
  }

  .profile-pane {
    max-height: var(--profile-pane-mobile-full-height, min(80dvh, 720px));
  }

  .review-btn--split {
    font-size: 13px;
    min-height: 44px;
    padding: 7px 10px;
  }

  .posts-drawer {
    left: calc((100vw - var(--mobile-feed-pane-width, 100vw)) / 2);
    right: auto;
    bottom: var(--mobile-nav-offset);
    top: auto;
    min-height: 0;
    height: var(--place-panel-mobile-peek);
    max-height: var(--place-panel-mobile-peek);
    border-radius: 14px;
  }

  .providers-drawer,
  .provider-detail-drawer {
    left: calc((100vw - var(--mobile-feed-pane-width, 100vw)) / 2);
    right: auto;
    bottom: var(--mobile-nav-offset);
    top: auto;
    min-height: 0;
    height: var(--place-panel-mobile-peek);
    max-height: var(--place-panel-mobile-peek);
    border-radius: 14px;
  }

  .providers-drawer__body {
    padding: 10px 10px 10px;
  }

  .profile-pane__inner {
    padding: 0 10px 12px;
  }

  .profile-pane.has-profile-photo-header .profile-pane__inner {
    --profile-pane-mobile-pad-x: 10px;
  }

  .profile-pane.has-profile-photo-header .profile-pane__head {
    margin-left: calc(var(--profile-pane-mobile-pad-x, 10px) * -1);
    margin-right: calc(var(--profile-pane-mobile-pad-x, 10px) * -1);
  }

  .profile-pane__meta-grid {
    gap: 0;
    border-top: 1px solid rgba(114, 164, 167, 0.44);
  }

  .profile-subpane--edit .profile-edit-shell {
    margin-top: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .profile-pane__contact-row {
    min-width: 0;
  }

  .profile-pane__area-row,
  .profile-pane__area-link {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.45;
  }

  .profile-edit-area-row {
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
  }

  .profile-edit-section-title {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #22313a;
    letter-spacing: 0;
    text-transform: none;
  }

  #profile-edit-map-pin-section .profile-edit-section-title,
  #profile-provider-extra-fields > .profile-edit-section-title,
  #profile-settings-areas-shell > .profile-edit-section-title {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #22313a;
    letter-spacing: 0;
    text-transform: none;
  }

  .profile-edit-help {
    font-size: 16px;
    line-height: 1.45;
    color: #43545f;
  }

  .profile-edit-area-notify {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-left: 0;
    gap: 0;
  }

  .profile-edit-check {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .profile-edit-check input {
    margin: 0;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
  }

  .profile-edit-two-col {
    grid-template-columns: 1fr;
    gap: 21px;
  }

  .profile-settings-pane__toggle {
    font-size: 16px;
    line-height: 1.45;
    color: #43545f;
  }

  .profile-settings-pane__link {
    font-size: 15px;
    line-height: 1.2;
  }

  .profile-edit-photos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-subpane--bookings .profile-subpane__tab,
  .profile-subpane--bookings .profile-bookings-shell__toggle,
  .profile-subpane--bookings .profile-bookings-calendar__title,
  .profile-subpane--bookings .profile-bookings-shell__item-top,
  .profile-subpane--bookings .profile-bookings-shell__traveler-link {
    font-size: 16px;
    line-height: 1.1;
  }

  .profile-subpane--bookings .profile-bookings-shell__heading,
  .profile-subpane--bookings .profile-bookings-shell__unit-subtitle,
  .profile-subpane--bookings .profile-bookings-shell__status-badge,
  .profile-subpane--bookings .profile-bookings-calendar__nav,
  .profile-subpane--bookings .profile-bookings-calendar__day-number,
  .profile-subpane--bookings .profile-bookings-shell__date-label {
    font-size: 14px;
  }

  .profile-subpane--bookings .profile-bookings-shell__ics-intro,
  .profile-subpane--bookings .profile-bookings-shell__empty-note,
  .profile-subpane--bookings .profile-bookings-shell__unit-price-help,
  .profile-subpane--bookings .profile-bookings-shell__item-meta,
  .profile-subpane--bookings .profile-bookings-shell__item-detail,
  .profile-subpane--bookings .profile-bookings-shell__item-warning,
  .profile-subpane--bookings .profile-bookings-shell__readonly-url,
  .profile-subpane--bookings .profile-bookings-shell__checkbox,
  .profile-subpane--bookings .profile-bookings-shell__calendar-textarea,
  .profile-subpane--bookings .profile-bookings-shell__calendar-textarea::placeholder {
    font-size: 15px;
    line-height: 1.45;
  }

  .profile-subpane--bookings .profile-bookings-shell__ics-intro,
  .profile-subpane--bookings .profile-bookings-shell__unit-price-help {
    color: #35555b;
  }

  .profile-subpane--bookings .profile-subpane__tab {
    font-size: 13px;
    line-height: 1.15;
    padding: 0 11px;
    letter-spacing: 0.03em;
  }

  .profile-subpane--bookings .provider-card__booking-input--room-unit-sleeps-select,
  .profile-subpane--bookings .provider-card__booking-input--room-unit-quantity-select {
    max-width: 100%;
    margin-left: 0;
  }

  .profile-subpane--bookings .provider-card__booking-input--room-unit-sleeps-select {
    width: calc(100% - 12px);
  }

  .profile-subpane--bookings .provider-card__booking-input--room-unit-quantity-select {
    width: 100%;
  }

  .profile-subpane--bookings .profile-bookings-shell__unit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 1fr);
    gap: 8px;
  }

  .profile-subpane--bookings .profile-bookings-shell__calendar-scope-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-subpane--bookings .profile-bookings-shell__calendar-scope-main {
    width: calc(100% + 44px);
    max-width: calc(100% + 44px);
  }

  .profile-subpane--bookings .profile-bookings-shell__calendar-scope-subordinate {
    width: calc(100% - 18px);
    margin-left: 18px;
  }

  .profile-subpane--bookings .provider-card__booking-input--room-unit-select {
    min-height: 50px;
    font-size: 15px;
    line-height: 1.25;
  }

  .profile-subpane--bookings .provider-card__booking-input--room-unit-select option {
    font-size: 16px;
  }

  .profile-subpane--bookings .profile-bookings-shell__cancel-edit-btn {
    min-height: 26px;
    min-width: 112px;
    margin-left: 16px;
    padding: 0 20px;
  }

  .profile-subpane--bookings .profile-bookings-calendar__weekday {
    font-size: 11px;
  }

  .profile-subpane--bookings .profile-bookings-calendar__day-marker {
    font-size: 10px;
  }

  .profile-subpane--bookings .review-btn {
    font-size: 12px;
    letter-spacing: 0.03em;
  }

  .provider-card {
    --provider-card-padding: 10px;
  }

  .provider-card__photos {
    grid-template-columns: repeat(var(--provider-photo-count, 3), minmax(0, 1fr));
    gap: 0;
    height: 128px;
  }

  .provider-card__contact-row {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 6px;
    font-size: 14px;
  }

  .provider-card__contact-row > :last-child {
    margin-left: 0;
  }

  .provider-card__contact-row strong {
    font-size: 15px;
  }

  .providers-back-btn {
    font-size: 13px;
  }

  .profile-contact-card__title,
  .profile-contact-card__role,
  .profile-contact-card__age,
  .profile-contact-card__place {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 16px;
    line-height: 1.1;
  }

  .profile-contact-card__place {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: #627276;
  }

  .profile-contact-card__body,
  .profile-contact-card__reply {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .profile-contact-card__reply strong,
  .profile-contact-card__reply-author {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 16px;
    line-height: 1.1;
  }

  .landing-panel__title {
    font-size: 20px;
  }

  .landing-panel__body {
    padding: 16px 12px 12px;
  }

  .profile-terms-pane__body {
    padding: 16px 12px 12px;
  }

  .landing-panel__cta {
    margin-top: 18px;
    font-size: 15px;
  }

  .landing-panel__place-link {
    font-size: 15px;
  }

  .posts-drawer__body {
    padding: 10px 10px 10px;
    overflow-x: hidden;
  }

  .feed-post-place {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #627276;
  }

  .feed-post-place__btn {
    font-size: 14px;
    color: #627276;
  }

  .feed-section-label,
  .feed-section-label__btn {
    font-size: 14px;
    color: #627276;
  }

  .feed-meta {
    font-size: 16px;
    align-items: center;
  }

  .feed-author,
  .feed-role,
  .feed-age {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 16px;
    line-height: 1.1;
  }

  .feed-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .feed-comment {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .feed-comment__text strong {
    font-size: 16px;
  }

  .feed-post-place__btn,
  .feed-section-label,
  .feed-section-label__btn {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #627276;
  }

  .provider-card__booking-row,
  .profile-bookings-shell__date-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .provider-card__booking-input,
  .provider-card__booking-message {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .provider-card__booking-date-field .provider-card__booking-input[type="date"],
  .profile-bookings-shell__date-field .provider-card__booking-input[type="date"] {
    min-height: 52px;
  }

  .provider-card__booking-date-hint {
    font-size: 15px;
  }

  .posts-feed-list,
  .feed-post,
  .feed-comments,
  .feed-comment,
  .comment-input-row {
    min-width: 0;
  }

  .feed-text,
  .feed-comment__text,
  .comment-input {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .comment-input {
    min-height: 40px;
    height: 40px;
    border-radius: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1.2;
    resize: none;
  }

  .posts-composer-type {
    gap: 6px;
  }

  .posts-composer-type__chip {
    font-size: 12px;
    padding: 0 10px;
  }

  .posts-review-slider {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }

  .posts-review-slider span {
    font-size: 12px;
    font-weight: 500;
  }

  .auth-modal {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    max-height: none;
    border-radius: 0;
    flex-direction: column;
  }

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

  .auth-modal__promo {
    min-height: 0;
    gap: 0;
    padding: 0;
    overflow: visible;
  }

  .auth-modal__graphic {
    display: none;
  }

  .auth-modal__promo-copy {
    padding: 0;
    gap: 8px;
  }

  .auth-modal__promo-title {
    font-size: 31px;
  }

  .auth-modal__promo-text {
    font-size: 16px;
  }

  .auth-modal__form-pane {
    padding: 32px 0 0;
  }

  .auth-modal.is-signin-mode .auth-modal__form-pane {
    padding-bottom: 0;
  }

  .auth-modal__promo,
  .auth-modal__form-pane {
    width: 100%;
    flex: 0 0 auto;
    box-sizing: border-box;
  }

  .auth-modal__form {
    display: block;
    width: 100%;
  }

  .auth-modal__tabs {
    width: 100%;
    margin-right: 0;
    gap: 12px;
  }

  .auth-modal__status {
    min-height: 0;
  }

  #auth-pane-signup {
    padding-bottom: 12px;
  }

  #auth-pane-signup,
  #auth-pane-signin {
    width: 100%;
    min-width: 0;
  }

  .auth-modal__submit {
    box-sizing: border-box;
  }

  .auth-modal__verify,
  .auth-modal__signed-in {
    padding: 13px 12px;
    border-width: 1.5px;
  }

  .auth-modal__verify-copy {
    font-size: 14px;
  }

  .auth-modal__verify-actions {
    gap: 10px;
  }

  .auth-modal__mini-btn {
    width: 100%;
    min-height: 40px;
    justify-content: center;
  }

  .profile-verify-notice {
    padding: 13px 14px;
    border-width: 1.5px;
    gap: 10px;
  }

  .profile-verify-notice__text {
    font-size: 15px;
  }

  .profile-verify-notice__actions {
    width: 100%;
  }

  .profile-verify-notice__btn {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .auth-modal__close {
    top: calc(env(safe-area-inset-top) + 28px);
    right: 17px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.7;
    line-height: 1;
  }
}

body.is-dragging-pane {
  user-select: none;
  -webkit-user-select: none;
}

.auth-actions,
#auth-profile,
#auth-sign-in,
#auth-sign-up,
#auth-sign-in-up {
  display: none !important;
}

@media (max-width: 960px) {
  :root {
    --desktop-toolbar-width: 342px;
  }

  .app-header {
    height: 50px;
    padding: 0 12px;
    gap: 8px;
  }

  .app-header__right {
    width: min(var(--desktop-toolbar-width), calc(100vw - 24px));
  }

  .app-toolbar {
    top: 62px;
    right: 12px;
    width: min(var(--desktop-toolbar-width), calc(100vw - 24px));
    gap: 8px;
  }

  .title-lockup {
    --header-title-size: 25px;
    --header-logo-size: 40px;
    --header-title-track: 0.14em;
    min-width: 0;
    overflow: hidden;
  }

  .app-nav__btn {
    width: 50px;
    height: 38px;
  }

  .app-nav__hover-label {
    display: none;
  }

  .app-nav__icon {
    max-width: 22px;
    max-height: 22px;
  }

  .nav-overlay-pane {
    top: 112px;
    right: 12px;
    width: min(360px, calc(100vw - 24px));
  }

  .curated-desktop-banner {
    top: 78px;
    left: 12px;
    right: auto;
    width: min(var(--info-pane-max-width), calc(100vw - 24px));
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-nav-height: 60px;
    --mobile-nav-offset: calc(var(--mobile-nav-height) + env(safe-area-inset-bottom, 0px));
  }

  .app-header {
    display: block;
    height: 46px;
    padding: 0 8px;
  }

  .title-lockup {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    --header-title-size: 38px;
    --header-logo-size: 42px;
    --header-title-track: 0.08em;
    max-width: calc(100% - 210px);
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .title-lockup .country {
    max-width: none;
    overflow: visible;
    font-size: 0;
  }

  .title-lockup .country::after {
    content: "IN";
    position: relative;
    top: 2px;
    font-size: var(--header-title-size);
  }

  .app-header__right {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 190px;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 18;
  }

  .app-toolbar {
    top: 58px;
    right: 8px;
    gap: 8px;
  }

  .app-nav--desktop {
    display: none;
  }

  .app-nav--mobile {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 24;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 0 env(safe-area-inset-bottom, 0px);
    background: rgba(72, 138, 155, 0.98);
    box-shadow: 0 -10px 24px rgba(8, 23, 29, 0.18);
    pointer-events: auto;
  }

  .app-nav--mobile .app-nav__btn {
    flex: 1 1 20%;
    width: auto;
    height: var(--mobile-nav-height);
    background: rgba(72, 138, 155, 0.98);
  }

  .app-nav--mobile .app-nav__btn.is-active {
    background: rgba(0, 97, 122, 0.95);
  }

  .top-search-shell {
    width: 100%;
    z-index: 24;
  }

  .top-search-options {
    z-index: 40;
  }

  .top-search-input {
    height: 40px;
    min-height: 40px;
    font-size: 16px;
    line-height: 40px;
    padding: 0 10px;
  }

  .top-search-input::placeholder {
    font-size: 15px;
  }

  .top-search-option {
    font-size: 14px;
    padding: 8px 10px;
  }

  .lang-toggle {
    height: 40px;
  }

  .lang-toggle__btn {
    width: 48px;
  }

  .lang-toggle__flag {
    width: 23px;
    height: 16px;
  }

  .nav-overlay-pane {
    top: 112px;
    left: 8px;
    right: 8px;
    width: auto;
    bottom: calc(var(--mobile-nav-offset) + 10px);
    overflow-y: auto;
  }

  .map-page-footer-links {
    bottom: calc(var(--mobile-nav-offset) + 10px);
  }

  .landing-panel,
  .place-panel,
  .posts-drawer,
  .providers-drawer,
  .provider-detail-drawer,
  .photo-drawer,
  .video-drawer,
  .profile-pane,
  .profile-subpane {
    bottom: var(--mobile-nav-offset);
    z-index: 10;
  }

  .place-panel.is-posts-overlay {
    bottom: var(--mobile-nav-offset);
  }

  .landing-panel {
    max-height: min(76dvh, 700px);
  }

  .place-panel,
  .posts-drawer,
  .providers-drawer,
  .provider-detail-drawer {
    --place-panel-mobile-full-height: var(--mobile-panel-full-height, calc(100dvh - 112px - var(--mobile-nav-offset)));
  }

  .profile-pane {
    --profile-pane-mobile-full-height: var(--mobile-panel-full-height, calc(100dvh - 112px - var(--mobile-nav-offset)));
  }

  .profile-subpane,
  #profile-settings-pane,
  .profile-subpane--edit {
    --profile-subpane-mobile-full-height: calc(100dvh - 148px - var(--mobile-nav-offset));
  }

  #profile-subpane {
    --profile-subpane-mobile-full-height: var(--profile-pane-mobile-full-height, calc(100dvh - 112px - var(--mobile-nav-offset)));
  }

  .curated-desktop-banner {
    display: none !important;
  }

  .app-ui.is-curated-mobile-header-active .app-header,
  .app-ui.is-curated-mobile-header-active .app-toolbar {
    opacity: 0;
    pointer-events: none;
  }

  .place-panel.is-curated-place-mode .place-panel__head {
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .app-ui.is-curated-mobile-header-active .curated-mobile-head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 42;
    width: auto;
    border-radius: 0;
    pointer-events: auto;
  }

  .place-panel.is-curated-place-mode .place-panel__head-default {
    flex: 1 1 auto;
    min-width: 0;
  }

  .place-panel.is-curated-place-mode .panel-close {
    flex: 0 0 auto;
  }

  .place-panel.is-curated-place-mode .panel-close--accent {
    background: #055468;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px;
    opacity: 1;
  }

  .place-panel.is-curated-place-mode .panel-close--accent:hover {
    background: #044656;
    color: #fff;
  }

  .curated-mobile-head {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 12px 16px;
    background: rgba(0, 97, 122, 0.95);
    box-shadow: 0 12px 24px rgba(8, 23, 29, 0.16);
  }

  .curated-mobile-head__progress {
    min-width: 52px;
    padding: 7px 8px;
    border-radius: 10px;
    background: rgba(145, 207, 224, 0.17);
    color: rgba(255, 255, 255, 0.98);
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .curated-mobile-head__copy {
    min-width: 0;
    padding-top: 2px;
  }

  .curated-mobile-head__name {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 17px;
    line-height: 1.08;
    font-weight: 700;
    color: #fff;
  }

  .curated-mobile-head__meta {
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.78);
  }

  .curated-mobile-head__actions {
    display: grid;
    justify-items: end;
    gap: 0;
  }

  .curated-mobile-head__next {
    display: none;
  }

  .curated-mobile-head__exit {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
    pointer-events: auto;
    touch-action: manipulation;
  }

  .curated-pane__title {
    font-size: 23px;
  }

  #profile-settings-pane .profile-subpane__head .profile-subpane__title,
  #profile-edit-pane .profile-subpane__head .profile-subpane__title,
  #profile-bookings-pane .profile-subpane__head .profile-subpane__title {
    font-family: "Gotham Narrow", var(--font-gotham);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    color: #22313a;
    letter-spacing: 0;
  }

  .curated-pane__item {
    grid-template-columns: minmax(110px, 34%) minmax(0, 1fr);
    gap: 0;
  }

  .curated-pane__item-title {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .app-header {
    height: 46px;
    padding: 0 6px;
  }

  .title-lockup {
    left: 6px;
    --header-title-size: 38px;
    --header-logo-size: 42px;
    --header-title-track: 0.08em;
    max-width: calc(100% - 186px);
  }

  .title-sep {
    display: none;
  }

  .brand,
  .country {
    font-size: var(--header-title-size);
    line-height: 1;
    white-space: nowrap;
  }

  .title-lockup .country {
    font-size: 0;
  }

  .country::before {
    content: none;
  }

  .country::after {
    content: "IN";
    position: relative;
    top: 2px;
    font-size: var(--header-title-size);
  }

  .app-toolbar {
    top: 56px;
    right: 6px;
    gap: 6px;
  }

  .app-header__right {
    left: 109px;
    right: 6px;
    width: auto;
  }

  .top-search-input {
    height: 35px;
    min-height: 35px;
    font-size: 16px;
    line-height: 35px;
    padding: 0 9px;
  }

  .top-search-input::placeholder {
    font-size: 15px;
  }

  .top-search-option {
    font-size: 15px;
    padding: 8px 9px;
  }

  .top-search-option-region {
    font-size: 13px;
  }

  .lang-toggle {
    height: 38px;
  }

  .lang-toggle__btn {
    width: 46px;
  }

  .lang-toggle__flag {
    width: 21px;
    height: 15px;
  }

  .curated-mobile-head {
    gap: 8px;
    padding: calc(20px + env(safe-area-inset-top, 0px)) 10px 15px;
  }

  .curated-mobile-head__progress {
    min-width: 48px;
    font-size: 12px;
  }

  .curated-mobile-head__name {
    font-size: 16px;
  }

  .curated-mobile-head__meta {
    font-size: 13px;
  }

  .curated-mobile-head__next {
    padding: 7px 12px;
    font-size: 11px;
  }

  .curated-pane__item {
    grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
    gap: 0;
  }

  .curated-pane__item-title {
    font-size: 17px;
  }
}

@media (min-width: 700px) and (max-width: 1180px) and (any-pointer: coarse) {
  .place-panel__content > .panel-section--ratings:first-of-type {
    margin-top: 16px;
    padding-top: 14px;
  }
}

@media (max-width: 700px) {
  .trip-summary-card {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
  }

  .trip-summary-card__media-stack {
    width: 70px;
  }

  .trip-form__thumbnail-control {
    gap: 16px;
  }

  .trip-form__thumbnail-preview {
    width: 78px;
    min-width: 78px;
    height: 78px;
  }

  .trip-detail__title-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
  }

  .trip-detail__actions {
    justify-content: flex-end;
  }

  .trip-summary-card__meta,
  .trip-summary-card__about,
  .trip-form__textarea {
    font-size: 15px;
    line-height: 1.45;
    color: #22313a;
  }

  .trip-itinerary-item__about,
  .trip-detail__about,
  .trip-detail__about-input {
    font-size: 16px;
    line-height: 1.45;
    color: #22313a;
  }

  .trip-summary-card__meta {
    margin-top: 8px;
  }

  .trip-detail__title-link {
    font-size: 23px;
    line-height: 1.05;
    color: #10171d;
  }

  .trip-curated-picker__label,
  .trip-pane__link-btn {
    font-size: 14px;
  }

  .trip-itinerary-item__title {
    font-size: 16px;
  }

  .trip-detail__title-row {
    align-items: center;
  }

  .trip-detail__action-btn {
    align-self: center;
    font-weight: 500;
  }

  .trip-detail__about {
    margin-top: -2px;
  }

  .trip-detail__top {
    align-items: baseline;
  }

  .trip-share-toast {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: calc(var(--mobile-nav-offset, 0px) + 72px);
    transform: translateX(-50%);
    z-index: 1200;
    max-width: calc(100vw - 32px);
  }

  .place-panel,
  .posts-drawer,
  .providers-drawer,
  .video-drawer,
  .photo-drawer,
  .profile-pane,
  .profile-subpane,
  #profile-settings-pane,
  #profile-subpane,
  #profile-edit-pane {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .feed-avatar,
  .overflow-menu {
    align-self: center;
  }

  .provider-thread__reply .feed-avatar {
    align-self: flex-start !important;
    margin-top: calc((1.45em - 10px) / 2) !important;
  }

  .provider-thread__head > .feed-avatar {
    align-self: flex-start !important;
    margin-top: calc((1.2em - 16px) / 2) !important;
  }

  .trip-form__save.review-btn,
  .trip-form__cancel.review-btn,
  .profile-bookings-shell__toggle {
    min-height: 40px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
}
