.her-directory-search {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 1440px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
}

/* Mobile action bar (hidden on desktop) */
.her-directory-search__mobile-bar {
  display: none;
}

/* Modal header (hidden on desktop) */
.her-directory-search__modal-header {
  display: none;
}

.her-directory-search__filters {
  display: grid;
  gap: 1rem;
}

.her-directory-search__search-row {
  display: grid;
}

.her-directory-search__filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: end;
}

.her-directory-search__field--search {
  width: min(100%, 650px);
  align-self: center;
  justify-self: center;
  min-width: 0;
}

.her-directory-search__field {
  display: grid;
  gap: 0.35rem;
}

.her-directory-search__field-label {
  color: #180c0b;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: 14px;
  line-height: 1.2;
}

.her-directory-search__field input,
.her-directory-search__field select {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #180c0b;
  border-radius: 4px;
  background: #fffcf5;
}

.her-directory-search__field input {
    border-radius: 40px;
}

.her-directory-search__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.her-directory-search__action {
  min-width: 180px;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1px solid #1f2933;
  background: #fff;
  color: #1f2933;
  cursor: pointer;
}

.her-directory-search__action--primary {
  background: #5E0624;
  font-family: "SeasonSans-Bold" !important;
  text-transform: uppercase;
  color: #F1ECDF;
}

.her-directory-search__action--secondary {
     background: transparent;
  font-family: "SeasonSans-Bold" !important;
  text-transform: uppercase;
  color: #1f2933;
}

.her-directory-search__layout {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  --her-directory-results-width: 100%;
  --her-directory-map-width: 0%;
  min-width: 0;
}

.her-directory-search__results {
  min-width: 0;
}

.her-directory-search__results-shell {
  position: relative;
  min-width: 0;
  flex: 0 0 var(--her-directory-results-width);
  width: var(--her-directory-results-width);
  transition: flex-basis 0.7s cubic-bezier(0.22, 1, 0.36, 1), width 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.her-directory-search[data-view="map"] .her-directory-search__layout {
  --her-directory-results-width: clamp(280px, 30vw, 380px);
  --her-directory-map-width: calc(100% - clamp(280px, 30vw, 380px) - 1.5rem);
}

.her-directory-search__status {
  margin-bottom: 1rem;
}

.her-directory-search__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: calc(4 * 300px + 3 * 1.25rem);
  gap: 1.25rem;
}

.her-directory-search[data-view="map"] .her-directory-search__cards {
  grid-template-columns: 1fr;
  max-height: 300dvh;
  overflow-y: auto;
  padding-right: 0.5rem;
  padding-bottom: 1rem;
  align-content: start;
}

.her-directory-card {
  border: 0;
  overflow: hidden;
  min-width: 0;
}

.her-directory-search[data-view="map"] .her-directory-card {
  border: 1px solid #e5ded2;
  background: #fffcf5;
}

.her-directory-card__link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

.her-directory-search[data-view="map"] .her-directory-card__link {
  display: grid;
  gap: 0.9rem;
}

.her-directory-card__media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.her-directory-search[data-view="map"] .her-directory-card__media img {
  height: clamp(180px, 22vw, 240px);
}

.her-directory-card__content {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.9rem;
}

.her-directory-search[data-view="map"] .her-directory-card__content {
  padding: 0 1rem 1rem;
}

.her-directory-card__meta {
  font-size: 0.82rem;
  color: #52606d;
}

.her-directory-card__title {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 25px) !important;
  line-height: clamp(25px, 2.2vw, 35px);
  font-family: "SeasonSans-Bold" !important;
  text-decoration-style : none !important;
}





.her-directory-card__summary {
  margin: 0;
}

.her-directory-card__icons {
  margin-top: 0.35rem;
}

.her-directory-search__map {
  min-height: 640px;
  height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
  width: 100%;
  border: 1px solid #e5e7eb;
}

.her-directory-search__map-panel {
  position: sticky;
  top: 80px;
  flex: 0 0 var(--her-directory-map-width);
  width: var(--her-directory-map-width);
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(32px);
  transition: flex-basis 0.7s cubic-bezier(0.22, 1, 0.36, 1), width 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), max-height 0.7s ease;
  pointer-events: none;
}

.her-directory-search[data-view="map"] .her-directory-search__map-panel {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.her-directory-search__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: rgb(233, 104, 75);
  color: #fff;
  cursor: pointer;
  padding: 35px 10px;
  font-size: 14px;
  font-family: "SeasonSans-Bold", sans-serif;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 0;
  height: 170px;
}

.her-directory-search__toggle[hidden] {
  display: none !important;
}

.her-directory-search__toggle--overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.her-directory-search__toggle-side-wrapper {
  position: sticky;
  top: 80px;
  height: 0;
  overflow: visible;
  z-index: 2;
}

.her-directory-search__toggle--side {
  position: absolute;
  top: 0;
  right: -40px;
}

.her-directory-search__toggle-arrow {
  display: inline-block;
  line-height: 0;
}

.her-directory-search__toggle-arrow-icon {
  display: block;
  width: 12px;
  height: 21px;
  transform: rotate(180deg);
}

.her-directory-search__toggle-arrow-icon--hide {
  transform: rotate(0deg);
}

.her-directory-search__toggle-label {
  display: inline-block;
}

/* Map InfoWindow chrome reset */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18) !important;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
  padding: 0 !important;
}

@media (max-width: 600px) {
  .gm-style .gm-style-iw-d {
    max-height: 320px !important;
    overflow: hidden !important;
  }
}

.gm-ui-hover-effect > span, .gm-style .gm-style-iw-tc::after {
  background-color: #f5f0e5 !important;
}

.gm-style .gm-style-iw-chr {
  margin-bottom:  -50px !important;
}

/* Popup card */
.her-directory-map__popup {
  display: flex;
  flex-direction: column;
  width: 260px;
  
  text-decoration: none !important;
  color: inherit;
  overflow: hidden;
}

.her-directory-map__popup-image {
  width: 100%;
  line-height: 0;
}

.her-directory-map__popup-image img {
  display: block;
  width: 100%;
  height: 236px;
  object-fit: cover;
  object-position: center;
  max-width: none;
  margin: 0;
}

.her-directory-map__popup-body {
  flex: 1;
  
  padding: 1rem 1.25rem 1.25rem;
  background: #f5f0e5;
}

.her-directory-map__popup-age {
  font-size: 13px;
  color: #52606d;
}

.her-directory-map__popup-title {
  display: block;
  font-size: 14px;
  font-family: "SeasonSans-Bold", sans-serif;
  color: #180c0b;
  line-height: 1.3;
}

.her-directory-map__popup-subtitle {
  margin: 0;
  font-size: 14px;
  color: #180c0b;
  line-height: 1.4;
}


.her-directory-related {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.her-directory-related__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.her-directory-related__title {
  margin: 0;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: clamp(1.75rem, 2vw, 2.25rem);
  color: #180c0b;
}

.her-directory-related__controls {
  display: flex;
  gap: 0.75rem;
}

.her-directory-related__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #180c0b;
  border-radius: 999px;
  background: #fffcf5;
  color: #180c0b;
  cursor: pointer;
}

.her-directory-related__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.her-directory-related__viewport {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}

.her-directory-related__viewport::-webkit-scrollbar {
  display: none;
}

.her-directory-related__slide {
  flex: 0 0 calc(25% - 0.9375rem);
  min-width: 260px;
  scroll-snap-align: start;
}

.her-news-search {
  display: grid;
  gap: 0;
  width: min(100%, 1440px);
  margin-inline: auto;
  box-sizing: border-box;
}

.her-news-search.is-loading {
  opacity: 0.72;
}

.her-news-search__filters-section,
.her-news-search__results-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
}

.her-news-search__filters-section {
  background: var(--her-news-filters-background, #f1ecdf) !important;
}

.her-news-search__results-section {
  display: grid;
  gap: 1.5rem;
  background: var(--her-news-results-background, #fffcf5) !important;
}

.her-news-search__status {
  color: #180c0b;
  font-family: "SeasonSans-Bold", sans-serif;
}

.her-news-search__results {
  display: grid;
  gap: 1.5rem;
}

.her-news-search__empty {
  padding: 2.5rem 1.5rem;
  border: 1px solid #e5ded2;
  background: #fffcf5;
  color: #180c0b;
  text-align: center;
}

.her-news-card {
  border: 0;
  min-width: 0;
  background: transparent;
}

.her-news-card__link {
  display: grid;
  gap: 0;
  color: inherit;
  text-decoration: none !important;
}

.her-news-card__link:hover,
.her-news-card__link:focus,
.her-news-card__link:active,
.her-news-card__link .her-news-card__title,
.her-news-card__link:hover .her-news-card__title,
.her-news-card__link:focus .her-news-card__title {
  text-decoration: none !important;
}

.her-news-card--featured .her-news-card__link--featured {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  min-height: clamp(340px, 42vw, 520px);
  background: #e9684b;
}

.her-news-card__media-wrap,
.her-news-card__media {
  height: 100%;
}

.her-news-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.her-news-card__media--featured img {
  height: 100%;
  min-height: clamp(340px, 42vw, 520px);
}

.her-news-card__content {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding-top: 0.9rem;
}

.her-news-card__content--featured {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: #180c0b;
}

.her-news-card__eyebrow {
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: clamp(25px, 2.2vw, 35px);
  font-family: "SeasonSans-Bold", sans-serif;
  text-transform: uppercase;
}

.her-news-card__meta {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: clamp(22px, 2.2vw, 28px);
  color: #180c0b;
}

.her-news-card__title {
  margin: 0;
  color: #180c0b;
  font-size: clamp(18px, 1.6vw, 25px) !important;
  line-height: clamp(25px, 2.2vw, 35px);
  font-family: "SeasonSans-Bold" !important;
}

.her-news-card__title--featured {
  font-size: clamp(42px, 5vw, 60px) !important;
  line-height: 1.05;
  font-family: "AwesomeSerif", serif !important;
  margin-bottom: 250px;
}

.her-news-card__excerpt {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: clamp(22px, 2.2vw, 28px);
  color: #180c0b;
}

.her-news-card__excerpt--featured {
  max-width: 48ch;
}

.her-news-card__button,
.her-news-card__read-more {
  display: inline-flex;
  width: fit-content;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: 16px;
  width: 230px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.her-news-card__button {
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: #5E0624;
  color: #F1ECDF;
}

.her-news-card__read-more {
  padding: 0;
  color: #180C0B;
  font-family: "SeasonSans-Regular", sans-serif;
  background: transparent;
  border-radius: 0;
  min-height: 0;
  text-decoration: underline !important;
}

.her-news-search__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.her-news-search__load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 3vw, 2.25rem);
}

.her-news-search__load-more {
  min-width: min(100%, 264px);
  min-height: 44px;
  padding: 0.75rem 2rem;
  border: 0;
  border-radius: 999px;
  background: #75072f;
  color: #f1ecdf;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .her-news-search__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .her-directory-search[data-view="map"] .her-directory-search__layout {
    --her-directory-results-width: clamp(260px, 36vw, 340px);
    --her-directory-map-width: calc(100% - clamp(260px, 36vw, 340px) - 1.5rem);
  }

  .her-directory-related__slide {
    flex-basis: calc(33.333% - 0.8334rem);
  }
}

@media (max-width: 920px) {
  .her-directory-search__layout {
    display: grid;
    gap: 1rem;
    --her-directory-results-width: 100%;
    --her-directory-map-width: 100%;
  }

  .her-directory-search[data-view="map"] .her-directory-search__layout {
    --her-directory-results-width: 100%;
    --her-directory-map-width: 100%;
  }

  .her-directory-search__cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .her-directory-search__map {
    min-height: 480px;
    height: auto;
    max-height: none;
  }

  .her-news-card--featured .her-news-card__link--featured {
    grid-template-columns: 1fr;
  }

  .her-news-card__media--featured img {
    min-height: 280px;
  }

  .her-news-search__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .her-directory-search__map-panel {
    position: relative;
    top: auto;
    flex: 1 1 auto;
    width: auto;
    transform: translateY(-16px);
  }


.her-directory-map__popup-subtitle {
  display: none;
}

  .her-directory-search[data-view="map"] .her-directory-search__map-panel {
    transform: translateY(0);
  }

  .her-directory-search[data-view="map"] .her-directory-card__link {
    gap: 0.75rem;
  }

  .her-directory-search[data-view="map"] .her-directory-card__media img {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .her-directory-search {
    padding-inline: 1rem;
  }

  .her-news-search {
    gap: 0;
  }

  .her-news-search__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .her-news-card__media img {
    height: 240px;
  }

  .her-news-card__title--featured {
    font-size: clamp(28px, 8vw, 38px) !important;
  }

  /* Show mobile action bar — sticky so it stays visible while scrolling */
  .her-directory-search__mobile-bar {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    margin-inline: -1rem;
    position: sticky;
    top: var(--wp-admin--admin-bar--height, 0px);
    transition: top 0.2s ease;
    z-index: 200;
    background: transparent;
  }

  body.is-scrolled .her-directory-search__mobile-bar {
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 90px);
  }

  .her-directory-search__mobile-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.6rem 1rem;
    border: 1.5px solid #180c0b;
    border-radius: 999px;
    background: #fffcf5;
    font-family: "SeasonSans-Bold", sans-serif;
    font-size: 14px;
    color: #180c0b;
    cursor: pointer;
    white-space: nowrap;
  }

  /* Filters outer: modal overlay on mobile */
  .her-directory-search__filters-outer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .her-directory-search__filters-outer[hidden] {
    display: none;
  }

  /* Modal header */
  .her-directory-search__modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 0.75rem;
    background:#fffcf5;
  }

  .her-directory-search__modal-title {
    margin: 0;
    font-family: "SeasonSans-Bold", sans-serif;
    font-size: 1.75rem;
    color: #180c0b;
    line-height: 1.2;
  }

  .her-directory-search__modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: #180c0b;
    cursor: pointer;
    flex-shrink: 0;
  }

  /* Filter form inside modal */
  .her-directory-search__filters-outer .her-directory-search__filters {
    background: #fffcf5;
    padding: 0.75rem 1.25rem 2rem;
    max-height: 80dvh;
    overflow-y: auto;
  }

  .her-directory-search__filter-row {
    grid-template-columns: 1fr;
  }

  .her-directory-search__field--search {
    width: 100%;
  }

  .her-directory-search__layout {
    --her-directory-results-width: 100%;
    --her-directory-map-width: 100%;
  }

  .her-directory-search[data-view="map"] .her-directory-search__layout {
    --her-directory-results-width: 100%;
    --her-directory-map-width: 100%;
  }

  .her-directory-search__cards {
    grid-template-columns: 1fr;
  }

  .her-directory-related__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .her-directory-related__slide {
    flex-basis: min(60vw, 200px) !important;
  }

  .her-directory-search__map {
    min-height: 420px;
  }

  .her-directory-search__map-panel {
    max-height: 0;
    transform: translateY(-16px);
  }

  .her-directory-search[data-view="map"] .her-directory-search__map-panel {
    max-height: 640px;
    transform: translateY(0);
  }

  .her-directory-search[data-view="map"] .her-directory-search__results-shell {
    display: none;
  }

  .her-directory-search__toggle--overlay {
    top: 0;
    left: 0;
  }

  /* Hide side "Show Map" toggle on mobile — replaced by mobile bar button */
  .her-directory-search__toggle-side-wrapper,
  .her-directory-search__toggle--side {
    display: none;
  }
}

/* Desktop: filters outer is always visible as a normal block */
@media (min-width: 768px) {
  .her-directory-search__filters-outer {
    display: block !important;
  }
}

.her-directory-search__bounds-reset {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-size: 0.82rem;
  cursor: pointer;
}

.her-directory-search__bounds-reset[hidden] {
  display: none !important;
}

.her-tour-map,
.her-tour-stops {
  width: min(100%, 1440px);
  margin-inline: auto;
  box-sizing: border-box;
}

.her-tour-map {
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.her-tour-map__canvas {
  min-height: 520px;
  width: 100%;
  border: 1px solid #e5ded2;
  background: #f5f0e5;
}

.her-tour-map__canvas--unavailable {
  display: grid;
  place-items: center;
  padding: 2rem;
  color: #180c0b;
  text-align: center;
}

.her-tour-map__popup {
  display: grid;
  gap: 0.75rem;
  width: 260px;
  padding: 1rem 1.1rem 1.1rem;
  background: #f5f0e5;
}

.her-tour-map__popup-title {
  display: block;
  margin: 0;
  color: #180c0b;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: 14px;
  line-height: 1.35;
}

.her-tour-map__popup-excerpt {
  margin: 0;
  color: #180c0b;
  font-size: 14px;
  line-height: 1.5;
}

.her-tour-map__popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: #5e0624;
  color: #f1ecdf !important;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: 13px;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
}

.her-tour-stops {
  display: grid;
  gap: 0;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.her-tour-stops__item {
  border-top: 1px solid #180c0b;
}

.her-tour-stops__item:last-child {
  border-bottom: 1px solid #180c0b;
}

.her-tour-stops__heading {
  margin: 0;
}

.her-tour-stops__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.35rem 0;
  border: 0;
  background: transparent;
  color: #180c0b;
  text-align: left;
  cursor: pointer;
}

.her-tour-stops__label {
  display: block;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: clamp(18px, 1.6vw, 25px) ;
  line-height: clamp(25px, 2.2vw, 35px);
}

.her-tour-stops__icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.her-tour-stops__icon-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.her-tour-stops__icon-line--vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.her-tour-stops__item.is-open .her-tour-stops__icon-line--vertical {
  opacity: 0;
}

.her-tour-stops__panel {
  padding-bottom: 1.75rem;
}

.her-tour-stops__panel-inner {
  width: min(100%, 820px);
}

.her-tour-stops__content {
  color: #180c0b;
  font-size: 16px;
  line-height: 1.7;
}

.her-tour-stops__content > :first-child {
  margin-top: 0;
}

.her-tour-stops__content > :last-child {
  margin-bottom: 0;
}

.her-tour-stops__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: #5e0624;
  color: #f1ecdf !important;
  font-family: "SeasonSans-Bold", sans-serif;
  font-size: 13px;
  width: 230px;
  line-height: 1;
  text-decoration: none !important;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .her-tour-map {
    padding-inline: 1rem;
  }

  .her-tour-map__canvas {
    min-height: 360px;
  }

  .her-tour-stops {
    padding-inline: 1rem;
  }

  .her-tour-stops__trigger {
    padding: 1.1rem 0;
    align-items: flex-start;
  }


  .her-tour-stops__panel {
    padding-bottom: 1.25rem;
  }
}
