.bs-core-screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.has-barber-style-action-dock {
  padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
}

.single-gd_place.has-barber-style-action-dock .wp-site-blocks {
  padding-bottom: 44px;
}

.bs-listing-dock {
  position: fixed;
  z-index: 60000;
  isolation: isolate;
  transform: translateZ(0);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px max(14px, env(safe-area-inset-right, 0px))
    calc(10px + env(safe-area-inset-bottom, 0px))
    max(14px, env(safe-area-inset-left, 0px));
  color: #17201d;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid #dce3e0;
  box-shadow: 0 -10px 30px rgba(22, 37, 32, 0.12);
}

@supports (backdrop-filter: blur(12px)) {
  .bs-listing-dock {
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(12px);
  }
}

.bs-listing-dock__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.bs-listing-dock__actions {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  min-width: 0;
  padding: 1px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.bs-listing-dock__owner {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  padding-left: 12px;
  border-left: 1px solid #dce3e0;
}

.bs-listing-dock__owner-label {
  max-width: 96px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  color: #47534f;
}

.bs-listing-action,
.bs-listing-action:visited {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 46px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: #17201d;
  background: #f4f7f6;
  border: 1px solid #d7dfdc;
  border-radius: 10px;
  box-shadow: none;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.bs-listing-action:hover {
  color: #0b4d39;
  background: #edf7f3;
  border-color: #9bcab9;
  transform: translateY(-1px);
}

.bs-listing-action:focus-visible,
.bs-claim-button:focus-visible,
.bs-claim-form input:focus-visible,
.bs-claim-form select:focus-visible,
.bs-claim-form textarea:focus-visible {
  outline: 3px solid #ffbd2e;
  outline-offset: 2px;
}

.bs-listing-action--primary,
.bs-listing-action--primary:visited {
  color: #fff;
  background: #0b6b4d;
  border-color: #0b6b4d;
}

.bs-listing-action--primary:hover {
  color: #fff;
  background: #07543c;
  border-color: #07543c;
}

.bs-listing-action--claim,
.bs-listing-action--claim:visited {
  color: #1c291f;
  background: #f8cf58;
  border-color: #e7b832;
}

.bs-listing-action--claim:hover {
  color: #17201d;
  background: #f5c33b;
  border-color: #dca919;
}

.bs-listing-action__icon {
  flex: 0 0 auto;
}

.bs-claim-card {
  width: min(calc(100% - 32px), 760px);
  margin: clamp(28px, 6vw, 72px) auto;
  padding: clamp(22px, 5vw, 44px);
  color: #17201d;
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(22, 37, 32, 0.1);
}

.bs-claim-card h2 {
  margin-top: 0;
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.12;
}

.bs-claim-listing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 24px 0;
  padding: 15px 17px;
  background: #f3f7f5;
  border-radius: 10px;
}

.bs-claim-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.bs-claim-field,
.bs-claim-check,
.bs-claim-form > p {
  margin: 0;
}

.bs-claim-field label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
}

.bs-claim-form input[type='text'],
.bs-claim-form input[type='email'],
.bs-claim-form input[type='tel'],
.bs-claim-form input[type='url'],
.bs-claim-form select,
.bs-claim-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  font: inherit;
  color: #17201d;
  background: #fff;
  border: 1px solid #aebbb6;
  border-radius: 8px;
}

.bs-claim-form textarea {
  min-height: 130px;
  resize: vertical;
}

.bs-claim-help,
.bs-claim-privacy {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.45;
  color: #58635f;
}

.bs-claim-check label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bs-claim-check input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.bs-claim-button,
.bs-claim-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  font: inherit;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  background: #0b6b4d;
  border: 1px solid #0b6b4d;
  border-radius: 9px;
}

.bs-claim-button:hover {
  color: #fff;
  background: #07543c;
  border-color: #07543c;
}

.bs-claim-notice {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid;
  border-radius: 10px;
}

.bs-claim-notice--success {
  color: #155438;
  background: #edf8f2;
  border-color: #9bcab1;
}

.bs-claim-notice--error {
  color: #7d211b;
  background: #fff2f1;
  border-color: #e6aaa5;
}

.bs-claim-notice h2 {
  font-size: 26px;
}

.bs-claim-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 700px) {
  body.has-barber-style-action-dock {
    padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }

  .single-gd_place.has-barber-style-action-dock .wp-site-blocks {
    padding-bottom: 32px;
  }

  .bs-listing-dock {
    padding-top: 8px;
  }

  .bs-listing-dock__inner {
    gap: 8px;
  }

  .bs-listing-dock__owner {
    gap: 0;
    padding-left: 8px;
  }

  .bs-listing-dock__owner-label {
    display: none;
  }

  .bs-listing-action {
    min-height: 44px;
    padding: 8px 11px;
    font-size: 13px;
    border-radius: 9px;
  }

  .bs-listing-action__icon {
    width: 18px;
    height: 18px;
  }

  .bs-claim-listing {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media print {
  .bs-listing-dock {
    display: none !important;
  }

  body.has-barber-style-action-dock {
    padding-bottom: 0;
  }
}

/* Shared public-site layer. All selectors are first-party scoped. */
.bs-page-main {
  box-sizing: border-box;
  width: min(calc(100% - 32px), 980px);
  margin-right: auto;
  margin-left: auto;
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(56px, 8vw, 88px);
}

.bs-page-main .bs-public-page {
  padding-top: 0;
  padding-bottom: 0;
}

.bs-site-brand:focus-visible,
.bs-site-nav a:focus-visible,
.bs-site-menu summary:focus-visible,
.bs-site-menu__links a:focus-visible,
.bs-home-search input:focus-visible,
.bs-home-search button:focus-visible,
.bs-location-links a:focus-visible,
.bs-text-link:focus-visible,
.bs-button:focus-visible,
.bs-site-footer a:focus-visible,
.bs-public-page a:focus-visible,
.bs-login-card a:focus-visible,
.bs-login-card input:focus-visible {
  outline: 3px solid #d49b16;
  outline-offset: 3px;
}

.bs-site-brand,
.bs-site-brand:visited {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: auto;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: #17201d;
}

.bs-site-brand__barber {
  color: #0b6b4d;
}

.bs-site-brand__style {
  color: #8a6200;
}

.navbar .bs-site-brand,
.navbar .bs-site-brand:visited {
  padding: 9px 12px;
  color: #fff;
  background: #103b2f;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(4, 25, 18, 0.2);
}

.navbar .bs-site-brand__barber {
  color: #fff;
}

.navbar .bs-site-brand__style {
  color: #f8d66f;
}

.navbar-dark .bs-site-brand,
.navbar-dark .bs-site-brand:visited {
  color: #fff;
}

.navbar-dark .bs-site-brand__barber {
  color: #fff;
}

.navbar-dark .bs-site-brand__style {
  color: #f8d66f;
}

.navbar-dark .bs-site-nav a:not(.bs-site-nav__cta),
.navbar-dark .bs-site-nav a:not(.bs-site-nav__cta):visited {
  color: #17342a;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.navbar-dark .bs-site-nav a:not(.bs-site-nav__cta):hover {
  color: #064a35;
  background: #fff;
}

.bs-site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.bs-site-nav a,
.bs-site-nav a:visited {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: #24312d;
  border-radius: 9px;
}

.bs-site-nav a:hover {
  color: #07543c;
  background: #edf7f3;
}

.bs-site-nav .bs-site-nav__cta,
.bs-site-nav .bs-site-nav__cta:visited {
  margin-left: 5px;
  padding: 11px 16px;
  color: #fff;
  background: #0b6b4d;
}

.bs-site-nav .bs-site-nav__cta:hover {
  color: #fff;
  background: #07543c;
}

.bs-site-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.bs-site-menu summary {
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  list-style: none;
  cursor: pointer;
  color: #17201d;
  background: #fff;
  border: 1px solid #cfd9d5;
  border-radius: 9px;
}

.bs-site-menu summary::-webkit-details-marker {
  display: none;
}

.bs-site-menu[open] summary {
  color: #07543c;
  border-color: #8ebdac;
}

.bs-site-menu__links {
  position: absolute;
  z-index: 1100;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  width: min(280px, calc(100vw - 28px));
  padding: 9px;
  background: #fff;
  border: 1px solid #d7dfdc;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(22, 37, 32, 0.16);
}

.bs-site-menu__links a,
.bs-site-menu__links a:visited {
  padding: 12px;
  font-weight: 700;
  text-decoration: none;
  color: #24312d;
  border-radius: 8px;
}

.bs-site-menu__links a:hover {
  color: #07543c;
  background: #edf7f3;
}

.bs-site-menu__links .bs-site-nav__cta {
  margin-top: 5px;
  color: #fff;
  text-align: center;
  background: #0b6b4d;
}

.bs-home {
  color: #17201d;
  background: #fff;
}

body.home,
body.home .wp-site-blocks {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.home > p:empty,
.home .wp-site-blocks > p:empty,
.home .wp-site-blocks > .wp-block-template-part:first-child + p,
.home .wp-site-blocks > main.bs-home + p {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.home > main.bs-home,
.home .wp-site-blocks > main.bs-home,
.home .wp-site-blocks > header + main.bs-home {
  margin-top: 0 !important;
}

.bs-home-shell {
  box-sizing: border-box;
  width: min(100% - 32px, 1180px);
  margin-right: auto;
  margin-left: auto;
}

.bs-home-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(2, 13, 25, 0.82), rgba(2, 29, 35, 0.58)),
    url('https://barber.style/wp-content/uploads/2025/06/Australia.webp')
      center 42% / cover no-repeat;
}

.bs-home-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: '';
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

/* Keep GeoDirectory's route controls attached to the bottom of listing maps. */
.single-gd_place .geodir-post-map-wrap {
  height: auto !important;
  overflow: visible !important;
}

.single-gd_place .geodir_map_container.gd_map_canvas_post {
  min-height: 0 !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(22, 37, 32, 0.08);
}

.single-gd_place .geodir_map_container.gd_map_canvas_post .main_map_wrapper,
.single-gd_place .geodir_map_container.gd_map_canvas_post .geodir-map-canvas {
  height: 325px !important;
}

.single-gd_place .geodir-map-directions-wrap {
  position: relative;
  z-index: 2;
  margin-top: 0 !important;
  padding: 14px;
  background: #fff;
  border-top: 1px solid #dce3e0;
}

.single-gd_place .geodir-map-directions-wrap .mb-3 {
  margin-bottom: 0 !important;
}

/* Listing media should never reserve an empty second column. */
.single-gd_place .aui-gallery {
  --bs-gutter-x: 14px;
  overflow: hidden;
  margin-bottom: clamp(24px, 4vw, 42px) !important;
  padding: 7px;
  background: #f1f5f3;
  border: 1px solid #dce3e0;
  border-radius: 18px;
}

.single-gd_place .aui-gallery > [class*='col-']:only-child {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

.single-gd_place .aui-gallery > [class*='col-']:only-child figure,
.single-gd_place .aui-gallery > [class*='col-']:only-child .ratio {
  min-height: clamp(320px, 47vw, 620px);
  border-radius: 13px !important;
}

.single-gd_place .aui-gallery img {
  object-fit: cover;
}

/* Amazon Associates rail. It is moved immediately before the site footer. */
.bs-affiliate-carousel {
  box-sizing: border-box;
  width: min(calc(100% - 32px), 1180px);
  margin: clamp(54px, 7vw, 88px) auto;
  padding: clamp(24px, 4vw, 38px);
  color: #17201d;
  background: linear-gradient(135deg, #eef7f3 0%, #fff8e5 100%);
  border: 1px solid #d8e4df;
  border-radius: 22px;
}

.bs-affiliate-carousel__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.bs-affiliate-carousel__head h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(25px, 3.2vw, 38px);
  line-height: 1.12;
}

.bs-affiliate-carousel__disclosure {
  max-width: 360px;
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: #53615c;
}

.bs-affiliate-carousel__disclosure a {
  display: block;
  margin-top: 3px;
  font-weight: 700;
  color: #07543c;
}

.bs-affiliate-carousel__rail {
  display: grid;
  grid-auto-columns: minmax(220px, 1fr);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-color: #8ebdac transparent;
}

.bs-affiliate-card,
.bs-affiliate-card:visited {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  min-height: 262px;
  padding: 18px;
  text-decoration: none;
  color: #17201d;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7e1dd;
  border-radius: 14px;
  scroll-snap-align: start;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.bs-affiliate-card:hover {
  color: #07543c;
  border-color: #8ebdac;
  box-shadow: 0 12px 28px rgba(22, 37, 32, 0.1);
  transform: translateY(-2px);
}

.bs-affiliate-card__art {
  display: grid;
  width: 100%;
  height: 96px;
  place-items: center;
  color: #f8d66f;
  background:
    radial-gradient(circle at 74% 18%, rgba(248, 214, 111, 0.2), transparent 32%),
    linear-gradient(145deg, #164d3e, #0b2f26);
  border-radius: 13px;
}

.bs-affiliate-card__art svg {
  width: 78px;
  height: 62px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bs-affiliate-card strong {
  font-size: 17px;
}

.bs-affiliate-card > span:not(.bs-affiliate-card__art) {
  font-size: 13px;
  line-height: 1.5;
  color: #5b6763;
}

.bs-affiliate-card em {
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
  color: #07543c;
}

/* Private, front-end owner workflow. */
body.bs-owner-portal-page {
  background: #f6faf8;
}

body.bs-owner-portal-page
  .wp-site-blocks
  > .wp-block-template-part:has(h1.mb-3.fw-bold.h2) {
  display: none;
}

body.bs-owner-portal-page h1.mb-3.fw-bold.h2 {
  display: none;
}

body.bs-owner-portal-page .bs-page-main {
  width: 100%;
  max-width: none;
  padding: 0;
}

body.bs-owner-portal-page .bs-page-main .entry-content {
  width: 100%;
}

body.bs-owner-portal-page .bs-page-main .entry-content > p:empty {
  display: none;
}

.bs-owner-portal {
  box-sizing: border-box;
  width: min(calc(100% - 32px), 1120px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) 0 clamp(70px, 9vw, 110px);
  color: #17201d;
}

.bs-owner-portal__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.bs-owner-portal__header h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.bs-owner-portal__header > p:last-child {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.6;
  color: #52605b;
}

.bs-owner-gate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bs-owner-panel,
.bs-owner-editor,
.bs-owner-listing-card {
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 18px;
  box-shadow: 0 16px 44px rgba(22, 37, 32, 0.08);
}

.bs-owner-panel {
  padding: clamp(22px, 4vw, 36px);
}

.bs-owner-panel h2,
.bs-owner-editor h2 {
  margin-top: 0;
}

.bs-owner-panel #loginform {
  display: grid;
  gap: 16px;
}

.bs-owner-panel #loginform p {
  margin: 0;
}

.bs-owner-panel #loginform .login-remember label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.bs-owner-panel #loginform #wp-submit {
  min-height: 48px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: #0b6b4d;
  border: 0;
  border-radius: 9px;
}

.bs-owner-panel #loginform #wp-submit:hover {
  background: #07543c;
}

.bs-owner-form {
  display: grid;
  gap: 16px;
}

.bs-owner-form--listing {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bs-owner-form p,
.bs-owner-toolbar p,
.bs-owner-listing-card p {
  margin: 0;
}

.bs-owner-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 750;
}

.bs-owner-form input:not([type='file']),
.bs-owner-form select,
.bs-owner-form textarea,
.bs-owner-panel .login-username input,
.bs-owner-panel .login-password input {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  font: inherit;
  color: #17201d;
  background: #fff;
  border: 1px solid #aebbb6;
  border-radius: 9px;
}

.bs-owner-form textarea {
  resize: vertical;
}

.bs-owner-form small {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
  color: #61706a;
}

.bs-owner-form__wide {
  grid-column: 1 / -1;
}

.bs-owner-trap {
  position: absolute !important;
  left: -10000px !important;
}

.bs-owner-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding: 12px 16px;
  background: #eef7f3;
  border-radius: 10px;
}

.bs-owner-listings {
  margin: 36px 0;
}

.bs-owner-listings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bs-owner-listing-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.bs-owner-listing-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
}

.bs-owner-listing-card__tip {
  padding: 11px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #315348;
  background: #edf7f3;
  border-radius: 9px;
}

.bs-owner-status {
  display: inline-flex;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #805900;
  background: #fff2c9;
  border-radius: 99px;
}

.bs-owner-status--publish {
  color: #07543c;
  background: #dff4e9;
}

.bs-owner-editor {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(24px, 5vw, 56px);
  margin-top: 38px;
  padding: clamp(24px, 4vw, 42px);
  scroll-margin-top: 100px;
}

.bs-owner-editor:focus {
  outline: none;
}

.bs-owner-current-images__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 750;
}

.bs-owner-current-images__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bs-owner-current-images figure {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin: 0;
  background: #eef3f1;
  border: 1px solid #d5dfdb;
  border-radius: 11px;
}

.bs-owner-current-images img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-owner-current-images figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: rgba(16, 59, 47, 0.9);
  border-radius: 99px;
}

@media (max-width: 780px) {
  .single-gd_place .aui-gallery {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 4px;
    border-radius: 13px;
  }

  .single-gd_place .aui-gallery > [class*='col-']:only-child figure,
  .single-gd_place .aui-gallery > [class*='col-']:only-child .ratio {
    min-height: clamp(240px, 72vw, 420px);
  }

  .bs-affiliate-carousel__head,
  .bs-owner-editor {
    display: block;
  }

  .bs-affiliate-carousel__disclosure {
    margin-top: 14px;
  }

  .bs-owner-gate,
  .bs-owner-listings__grid,
  .bs-owner-form--listing {
    grid-template-columns: 1fr;
  }

  .bs-owner-form__wide {
    grid-column: auto;
  }

  .bs-owner-editor__intro {
    margin-bottom: 24px;
  }

  .bs-owner-current-images__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  /* Put high-intent contact details before profile tabs, maps and reviews. */
  .single-gd_place
    .wp-block-blockstrap-blockstrap-widget-container.col-12.col-lg-4:has(
      > .sticky-top
    ) {
    order: -2;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .single-gd_place
    .wp-block-blockstrap-blockstrap-widget-container.col-12.col-lg-4
    > .sticky-top {
    position: static !important;
    margin-bottom: 20px;
  }
}

.bs-home-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(72px, 11vw, 132px);
  padding-bottom: clamp(58px, 9vw, 104px);
  text-align: center;
}

.bs-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1b7659;
}

.bs-home-hero .bs-eyebrow,
.bs-owner-cta .bs-eyebrow {
  color: #f8d66f;
}

.bs-home-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(44px, 8vw, 82px);
  font-weight: 820;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #fff;
}

.bs-home-hero__lede {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(18px, 2.4vw, 23px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}

.bs-home-search {
  max-width: 920px;
  margin: 34px auto 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(2, 21, 15, 0.26);
}

.bs-home-search .geodir-search-form-wrapper,
.bs-home-search .geodir-search-container,
.bs-home-search .geodir-search-form-wrapper.mb-3 {
  margin-bottom: 0 !important;
}

.bs-home-search .geodir-search-form-wrapper {
  border-radius: 15px !important;
}

.bs-home-search input[type='text'],
.bs-home-search input[type='search'] {
  min-height: 50px;
  font-size: 16px;
}

.bs-home-search .geodir_submit_search {
  min-height: 50px;
  color: #17201d !important;
  background: #f8cf58 !important;
  border-color: #f8cf58 !important;
}

.bs-search-fallback {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border-radius: 15px;
}

.bs-search-fallback label {
  display: grid;
  gap: 4px;
  text-align: left;
  color: #24312d;
}

.bs-search-fallback label span {
  padding-left: 4px;
  font-size: 12px;
  font-weight: 750;
}

.bs-search-fallback input {
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 9px 12px;
  font: inherit;
  border: 1px solid #cfd9d5;
  border-radius: 9px;
}

.bs-search-fallback button {
  align-self: end;
  min-height: 50px;
  padding: 10px 20px;
  font: inherit;
  font-weight: 800;
  color: #17201d;
  cursor: pointer;
  background: #f8cf58;
  border: 1px solid #e4b938;
  border-radius: 9px;
}

.bs-home-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 30px;
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.bs-home-proof li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.bs-home-proof strong {
  font-size: 18px;
  color: #fff;
}

.bs-home-section {
  padding-top: clamp(58px, 8vw, 94px);
  padding-bottom: clamp(58px, 8vw, 94px);
}

.bs-home-section--tint {
  background: #f2f7f5;
}

.bs-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.bs-section-heading h2,
.bs-owner-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.bs-text-link,
.bs-text-link:visited {
  flex: 0 0 auto;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: #0b6b4d;
}

.bs-location-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bs-location-links a,
.bs-location-links a:visited {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
  padding: 13px 17px;
  font-size: 17px;
  font-weight: 750;
  text-decoration: none;
  color: #20312b;
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 13px;
  box-shadow: 0 8px 24px rgba(22, 37, 32, 0.06);
}

.bs-location-links a:hover {
  color: #07543c;
  border-color: #9bcab9;
  box-shadow: 0 12px 30px rgba(22, 37, 32, 0.1);
  transform: translateY(-2px);
}

.bs-location-links a span {
  color: #0b6b4d;
}

.bs-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.bs-step-grid li {
  padding: clamp(22px, 3.5vw, 34px);
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 16px;
}

.bs-step-grid__number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  font-weight: 850;
  place-items: center;
  color: #fff;
  background: #0b6b4d;
  border-radius: 50%;
}

.bs-step-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 800;
}

.bs-step-grid p {
  margin: 0;
  line-height: 1.65;
  color: #52605b;
}

.bs-owner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(28px, 6vw, 60px);
  color: #fff;
  background: #102d24;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(13, 40, 31, 0.15);
}

.bs-owner-cta > div:first-child {
  max-width: 710px;
}

.bs-owner-cta h2 {
  color: #fff;
}

.bs-owner-cta p:not(.bs-eyebrow) {
  margin: 17px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.bs-owner-cta__actions {
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 210px;
}

.bs-button,
.bs-button:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #0b6b4d;
  border: 1px solid #0b6b4d;
  border-radius: 9px;
}

.bs-button:hover {
  color: #fff;
  background: #07543c;
  border-color: #07543c;
}

.bs-button--light,
.bs-button--light:visited {
  color: #153127;
  background: #fff;
  border-color: #fff;
}

.bs-button--light:hover {
  color: #0b4d39;
  background: #edf7f3;
  border-color: #edf7f3;
}

.bs-button--outline-light,
.bs-button--outline-light:visited {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.bs-button--outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.bs-site-footer {
  padding: clamp(46px, 7vw, 76px) max(20px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.75);
  background: #101c18;
}

.bs-site-footer__inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

.bs-site-brand--footer,
.bs-site-brand--footer:visited {
  color: #fff;
}

.bs-site-brand--footer .bs-site-brand__barber {
  color: #f8d66f;
}

.bs-site-brand--footer .bs-site-brand__style {
  color: #fff;
}

.bs-site-footer__brand p {
  max-width: 360px;
  margin: 18px 0 0;
  line-height: 1.65;
}

.bs-site-footer nav {
  display: grid;
  align-content: start;
  gap: 9px;
}

.bs-site-footer nav h2 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.bs-site-footer nav a,
.bs-site-footer nav a:visited {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}

.bs-site-footer nav a:hover {
  color: #f8d66f;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bs-site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bs-site-footer__legal p {
  margin: 0;
}

.bs-site-footer__legal nav {
  display: flex;
  gap: 18px;
}

.bs-public-page {
  box-sizing: border-box;
  width: min(100% - 32px, 900px);
  margin: clamp(36px, 7vw, 84px) auto;
  color: #17201d;
}

.bs-public-page > * + * {
  margin-top: 22px;
}

.bs-public-page .bs-display-heading {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.bs-public-page h2 {
  margin-top: 48px;
  font-size: clamp(27px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.bs-public-page h3 {
  font-size: 21px;
  font-weight: 780;
}

.bs-public-page p,
.bs-public-page li {
  font-size: 17px;
  line-height: 1.72;
}

.bs-public-page__hero {
  margin-bottom: 52px;
  padding: clamp(26px, 6vw, 58px);
  background: #edf6f2;
  border: 1px solid #d3e5de;
  border-radius: 20px;
}

.bs-public-page .wp-block-columns {
  gap: 18px;
}

.bs-public-page .wp-block-column {
  padding: 22px;
  background: #f5f8f7;
  border: 1px solid #dce3e0;
  border-radius: 13px;
}

.bs-callout {
  margin-top: 48px !important;
  padding: clamp(24px, 5vw, 42px);
  background: #102d24;
  border-radius: 17px;
}

.bs-callout,
.bs-callout h2,
.bs-callout h3,
.bs-callout a {
  color: #fff;
}

.bs-callout p,
.bs-callout li {
  color: rgba(255, 255, 255, 0.78);
}

.bs-article-hero {
  margin: 0 0 clamp(34px, 6vw, 68px);
  padding: clamp(52px, 8vw, 96px) 16px clamp(42px, 7vw, 76px);
  color: #17201d;
  background:
    radial-gradient(circle at 85% 20%, rgba(11, 107, 77, 0.1), transparent 32%),
    #edf6f2;
  border-bottom: 1px solid #d3e5de;
}

.bs-article-shell,
.bs-article-main {
  box-sizing: border-box;
  width: min(100%, 880px);
  margin-inline: auto;
}

.bs-article-breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 30px;
  color: #53635d;
  font-size: 14px;
}

.bs-article-breadcrumbs a,
.bs-article-meta a {
  color: #0b6b4d;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bs-article-hero h1 {
  max-width: 820px;
  margin: 10px 0 22px;
  color: #102d24;
  font-size: clamp(35px, 6vw, 60px);
  font-weight: 850;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.bs-article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #53635d;
  font-size: 14px;
}

.bs-article-main {
  padding: 0 16px clamp(72px, 10vw, 120px);
}

.bs-article-content {
  color: #26332f;
}

.bs-article-content > p,
.bs-article-content > ul,
.bs-article-content > ol {
  max-width: 760px;
  margin-inline: auto;
}

.bs-article-content p,
.bs-article-content li {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.78;
}

.bs-article-content h2 {
  max-width: 760px;
  margin: clamp(46px, 7vw, 72px) auto 20px;
  color: #102d24;
  font-size: clamp(27px, 4vw, 36px);
  font-weight: 820;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.bs-article-content h3 {
  max-width: 760px;
  margin: 34px auto 14px;
  color: #173c30;
  font-size: clamp(21px, 3vw, 25px);
  font-weight: 780;
  line-height: 1.3;
}

.bs-article-content a {
  color: #075c42;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bs-guide-summary {
  max-width: 800px;
  margin: 0 auto 42px !important;
  padding: clamp(24px, 5vw, 38px);
  background: #f1f8f5;
  border: 1px solid #cfe3db;
  border-left: 5px solid #0b6b4d;
  border-radius: 14px;
}

.bs-guide-summary p:last-child {
  margin-bottom: 0;
  color: #173c30;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.58;
}

.bs-article-content .wp-block-table {
  max-width: 880px;
  margin: 28px auto 38px;
  overflow-x: auto;
  border: 1px solid #d8e1dd;
  border-radius: 11px;
}

.bs-article-content .wp-block-table table {
  min-width: 620px;
  margin: 0;
  border-collapse: collapse;
}

.bs-article-content .wp-block-table th {
  color: #173c30;
  font-weight: 800;
  text-align: left;
  background: #edf6f2;
}

.bs-article-content .wp-block-table th,
.bs-article-content .wp-block-table td {
  padding: 15px 16px;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid #d8e1dd;
}

.bs-article-content .wp-block-table tr:last-child td {
  border-bottom: 0;
}

.bs-article-content > table {
  display: table;
  width: min(100%, 880px);
  margin: 28px auto 38px;
  overflow: hidden;
  border: 1px solid #d8e1dd;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 11px;
}

.bs-article-content > table th,
.bs-article-content > table td {
  padding: 15px 16px;
  vertical-align: top;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #d8e1dd;
}

.bs-article-content > table th {
  color: #173c30;
  font-weight: 800;
  background: #edf6f2;
}

.bs-article-content > table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 700px) {
  .bs-article-content > table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}

.bs-article-content .bs-callout {
  max-width: 800px;
  margin: 42px auto !important;
}

.bs-article-content .bs-callout h3 {
  margin-top: 0;
}

.bs-guide-sources {
  margin-top: 52px !important;
  padding-top: 24px;
  color: #62706b;
  border-top: 1px solid #d8e1dd;
}

.bs-article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: clamp(58px, 9vw, 92px);
  padding: clamp(26px, 5vw, 44px);
  color: #fff;
  background: #102d24;
  border-radius: 18px;
}

.bs-article-cta h2 {
  margin: 6px 0 10px;
  color: #fff;
  font-size: clamp(26px, 4vw, 36px);
}

.bs-article-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.bs-article-cta .bs-eyebrow {
  color: #8cd5bb;
}

.bs-related-guides {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid #d8e1dd;
  border-bottom: 1px solid #d8e1dd;
}

.bs-related-guides__label {
  margin: 0 0 12px;
  color: #53635d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bs-related-guides ul {
  display: flex;
  gap: 12px 22px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bs-related-guides a {
  color: #075c42;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bs-login-card {
  width: min(100% - 32px, 600px);
  margin: clamp(28px, 6vw, 72px) auto;
  padding: clamp(22px, 5vw, 40px);
  color: #17201d;
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(22, 37, 32, 0.1);
}

.bs-login-card form {
  display: grid;
  gap: 14px;
}

.bs-login-card label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.bs-login-card input[type='text'],
.bs-login-card input[type='password'] {
  box-sizing: border-box;
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  font: inherit;
  border: 1px solid #aebbb6;
  border-radius: 8px;
}

.bs-login-card input[type='submit'] {
  min-height: 48px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: #0b6b4d;
  border: 1px solid #0b6b4d;
  border-radius: 9px;
}

@media (max-width: 900px) {
  .bs-site-nav--desktop {
    display: none;
  }

  .bs-site-menu {
    display: block;
  }

  .bs-location-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs-site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .bs-article-meta > span[aria-hidden='true'] {
    display: none;
  }

  .bs-article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .bs-article-cta {
    grid-template-columns: 1fr;
  }

  .bs-article-cta .bs-button {
    width: 100%;
  }

  .bs-home-hero__inner {
    padding-top: 62px;
  }

  .bs-home-search {
    padding: 5px;
    border-radius: 17px;
  }

  .bs-search-fallback {
    grid-template-columns: 1fr;
  }

  .bs-home-proof {
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }

  .bs-section-heading,
  .bs-owner-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .bs-location-links,
  .bs-step-grid {
    grid-template-columns: 1fr;
  }

  .bs-owner-cta__actions {
    width: 100%;
  }

  .bs-site-footer__inner {
    grid-template-columns: 1fr;
  }

  .bs-site-footer__brand {
    grid-column: auto;
  }

  .bs-site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bs-listing-action,
  .bs-location-links a {
    transition: none;
  }

  .bs-listing-action:hover,
  .bs-location-links a:hover {
    transform: none;
  }
}

/* 0.4.1 additions. These extend the known-good 0.3.2 presentation layer. */
.bs-home-preview-page .wp-site-blocks > .wp-block-template-part {
  display: none;
}

.bs-home-preview-page .bs-page-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.bs-home-preview-page .bs-page-main > .entry-content {
  max-width: none;
}

.bs-section-intro {
  max-width: 700px;
  margin: 15px 0 0;
  color: #52605b;
  font-size: 17px;
  line-height: 1.65;
}

.bs-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bs-guide-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce3e0;
  border-radius: 17px;
  box-shadow: 0 12px 34px rgba(22, 37, 32, 0.07);
}

.bs-guide-card__image {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #dce8e3;
}

.bs-guide-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-guide-grid--index .bs-guide-card:nth-child(4n + 2) .bs-guide-card__image {
  padding: 14px;
  background: #e7efe9;
}

.bs-guide-grid--index
  .bs-guide-card:nth-child(4n + 2)
  .bs-guide-card__image
  img {
  border-radius: 10px;
}

.bs-guide-grid--index
  .bs-guide-card:nth-child(4n + 3)
  .bs-guide-card__image
  img {
  filter: grayscale(0.92) contrast(1.08);
}

.bs-guide-grid--index .bs-guide-card:nth-child(4n) .bs-guide-card__image {
  padding: 10px 14px 0;
  background: #173c30;
}

.bs-guide-grid--index
  .bs-guide-card:nth-child(4n)
  .bs-guide-card__image
  img {
  border-radius: 42% 42% 8px 8px;
}

.bs-guide-card__body {
  padding: 22px;
}

.bs-guide-card h2,
.bs-guide-card h3 {
  margin: 0 0 11px;
  color: #102d24;
  font-size: 22px;
  font-weight: 820;
  line-height: 1.24;
}

.bs-guide-card h2 a,
.bs-guide-card h3 a {
  color: inherit;
  text-decoration: none;
}

.bs-guide-card p {
  margin: 0 0 18px;
  color: #52605b;
  font-size: 15px;
  line-height: 1.62;
}

.bs-guide-grid--index {
  margin-top: 34px;
}

.bs-home-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.bs-home-trust h2 {
  margin: 0;
  color: #102d24;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 820;
  line-height: 1.08;
}

.bs-home-trust > div > p:last-child {
  margin: 18px 0 0;
  color: #52605b;
  font-size: 17px;
  line-height: 1.7;
}

.bs-home-trust ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bs-home-trust li {
  display: grid;
  gap: 3px;
  padding: 17px 19px;
  background: #f4f8f6;
  border: 1px solid #dce3e0;
  border-radius: 12px;
}

.bs-home-trust span {
  color: #596762;
  font-size: 14px;
}

.bs-home-faq {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

.bs-home-faq details {
  padding: 0 20px;
  background: #fff;
  border: 1px solid #d8e1dd;
  border-radius: 12px;
}

.bs-home-faq summary {
  padding: 18px 0;
  color: #173c30;
  font-size: 17px;
  font-weight: 790;
  cursor: pointer;
}

.bs-home-faq p {
  margin: -3px 0 20px;
  color: #52605b;
  font-size: 16px;
  line-height: 1.65;
}

.bs-guide-image {
  max-width: 880px;
  margin: 0 auto 42px;
}

.bs-guide-image__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 16px;
}

.bs-guide-image figcaption {
  margin-top: 10px;
  color: #67746f;
  font-size: 13px;
  line-height: 1.5;
}

.geodir-loop-container .geodir-post.bs-map-active-result {
  border-color: #54a98a !important;
  box-shadow: 0 0 0 3px rgba(11, 107, 77, 0.12);
}

@media (max-width: 900px) {
  .bs-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bs-guide-grid,
  .bs-home-trust {
    grid-template-columns: 1fr;
  }
}

/* Stable header: the fixed navigation must never split across the hero edge. */
.navbar.fixed-top.bg-transparent-until-scroll {
  background: #103b2f !important;
  box-shadow: 0 8px 28px rgba(4, 25, 18, 0.2) !important;
}

.navbar.fixed-top .wp-block-blockstrap-blockstrap-widget-navbar {
  min-height: 72px;
  gap: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.navbar.fixed-top .wp-block-blockstrap-blockstrap-widget-navbar > p {
  display: contents;
  margin: 0;
}

.navbar.fixed-top .bs-site-brand,
.navbar.fixed-top .bs-site-brand:visited {
  margin-right: 22px;
  padding: 9px 12px;
  color: #fff;
  letter-spacing: -0.025em;
}

.navbar.fixed-top .bs-site-brand__barber {
  margin-right: 0.04em;
  color: #fff;
}

.navbar.fixed-top .bs-site-brand__style {
  color: #f8d66f;
}

.navbar.fixed-top .bs-site-brand br {
  display: none;
}

.navbar.fixed-top .bs-site-nav a:not(.bs-site-nav__cta),
.navbar.fixed-top .bs-site-nav a:not(.bs-site-nav__cta):visited {
  color: #17342a;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 2px 8px rgba(4, 25, 18, 0.1);
}

.navbar.fixed-top .bs-site-nav a:not(.bs-site-nav__cta):hover {
  color: #064a35;
  background: #fff;
  border-color: #fff;
}

.navbar.fixed-top .bs-site-nav .bs-site-nav__cta {
  color: #17342a;
  background: #f8d66f;
  border: 1px solid #f8d66f;
}

.navbar.fixed-top .bs-site-nav .bs-site-nav__cta:hover {
  color: #102d24;
  background: #ffe59a;
  border-color: #ffe59a;
}

.home .bs-home-hero__inner {
  padding-top: clamp(104px, 10vw, 132px);
}

/* WordPress button blocks use the same controls as first-party CTAs. */
.bs-public-page .wp-block-button__link,
.bs-public-page .wp-block-button__link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  background: #0b6b4d;
  border: 1px solid #0b6b4d;
  border-radius: 9px;
}

.bs-public-page .wp-block-button__link:hover {
  color: #fff;
  text-decoration: none;
  background: #07543c;
  border-color: #07543c;
}

.bs-public-page .wp-block-button.is-style-outline .wp-block-button__link {
  color: #07543c;
  background: #fff;
  border-color: #0b6b4d;
}

.bs-public-page
  .wp-block-button.is-style-outline
  .wp-block-button__link:hover {
  color: #fff;
  background: #0b6b4d;
}

.bs-callout .wp-block-button.is-style-outline .wp-block-button__link {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.bs-callout .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #102d24;
  background: #fff;
  border-color: #fff;
}

/* Permission-aware homepage discovery map and companion results. */
.bs-home-section--nearby {
  background: #eef5f2;
}

.bs-nearby {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.75fr);
  min-height: 560px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e2de;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(16, 45, 36, 0.09);
}

.bs-nearby__map {
  min-height: 560px;
  background: #dbe8e3;
}

.bs-nearby__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border-left: 1px solid #d7e2de;
}

.bs-nearby__actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.bs-nearby__actions h3 {
  margin: 0 0 6px;
  color: #102d24;
  font-size: 23px;
}

.bs-nearby__actions p {
  margin: 0;
  color: #60706a;
  font-size: 13px;
  line-height: 1.5;
}

.bs-nearby__actions .bs-button {
  flex: 0 0 auto;
  padding: 11px 14px;
  border: 0;
  cursor: pointer;
}

.bs-nearby__actions .bs-button:disabled {
  cursor: default;
  opacity: 0.78;
}

.bs-nearby__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: nearby;
}

.bs-nearby__list li {
  counter-increment: nearby;
}

.bs-nearby__list a,
.bs-nearby__list a:visited {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 62px;
  padding: 12px 12px 12px 48px;
  color: #17201d;
  text-decoration: none;
  background: #f7f9f8;
  border: 1px solid #e1e7e4;
  border-radius: 11px;
  transition: border-color 150ms ease, transform 150ms ease;
}

.bs-nearby__list a::before {
  position: absolute;
  top: 14px;
  left: 13px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  content: counter(nearby);
  background: #0b6b4d;
  border-radius: 50%;
}

.bs-nearby__list a:hover {
  color: #07543c;
  border-color: #8db8a8;
  transform: translateX(2px);
}

.bs-nearby__list strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bs-nearby__list span {
  color: #64716c;
  font-size: 12px;
}

.bs-nearby__privacy {
  margin: auto 0 0;
  padding-top: 16px;
  color: #6a7772;
  font-size: 11px;
  line-height: 1.5;
}

/* Genuine listing reviews and the restored "be a legend" prompt. */
.bs-home-section--reviews {
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
  background: #102d24;
}

.bs-review-legends {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(18px, 3vw, 34px);
}

.bs-review-legends__image {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 22px;
}

.bs-review-legends__image::after {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(180deg, transparent 28%, rgba(5, 25, 19, 0.94) 100%);
}

.bs-review-legends__image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.bs-review-legends__message {
  position: absolute;
  z-index: 1;
  right: clamp(20px, 4vw, 42px);
  bottom: clamp(22px, 4vw, 42px);
  left: clamp(20px, 4vw, 42px);
  color: #fff;
}

.bs-review-legends__message .bs-eyebrow {
  color: #f8d66f;
}

.bs-review-legends__message h2 {
  max-width: 13ch;
  margin: 5px 0 12px;
  color: #fff;
  font-size: clamp(31px, 4vw, 51px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.bs-review-legends__message > p:not(.bs-eyebrow) {
  max-width: 58ch;
  margin: 0 0 19px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.bs-review-legends__quotes {
  display: grid;
  gap: 13px;
}

.bs-review-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  margin: 0;
  padding: clamp(20px, 3vw, 30px);
  color: #17201d;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.bs-review-quote:nth-child(2) {
  background: #f8f1da;
}

.bs-review-quote__label {
  align-self: flex-start;
  margin-bottom: 9px;
  padding: 5px 8px;
  color: #07543c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #e9f4ef;
  border-radius: 999px;
}

.bs-review-quote > p {
  margin: 0 0 14px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
}

.bs-review-quote footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  color: #68746f;
  font-size: 12px;
}

.bs-review-quote footer strong {
  color: #102d24;
  font-size: 13px;
}

.bs-review-quote footer a,
.bs-review-quote footer a:visited {
  color: #07543c;
  font-weight: 700;
}

/* Full-directory clustered map. GeoDirectory's map remains the fallback. */
.bs-directory-map {
  width: 100%;
  height: 90vh;
  min-height: 520px;
  background: #dce8e3;
}

.geodirectory-map-hidden {
  display: none !important;
  visibility: hidden !important;
}

.geodir-map-canvas[data-bs-map-enhanced='true'] {
  display: none !important;
  visibility: hidden !important;
}

.geodir-wgt-map:has(.bs-directory-map) .geodir-map-canvas[data-map-type='archive'] {
  display: none !important;
  visibility: hidden !important;
}

.bs-directory-map__popup {
  min-width: 190px;
  max-width: 270px;
  padding: 3px;
  color: #17201d;
  font-family: Poppins, sans-serif;
}

.bs-directory-map__popup h3 {
  margin: 0 0 5px;
  color: #102d24;
  font-size: 16px;
  line-height: 1.3;
}

.bs-directory-map__popup p {
  margin: 0 0 8px;
  color: #596762;
  font-size: 13px;
}

.bs-directory-map__rating {
  margin-bottom: 10px;
  color: #8a6200;
  font-size: 13px;
  font-weight: 750;
}

.bs-directory-map__popup a,
.bs-directory-map__popup a:visited {
  display: inline-flex;
  padding: 8px 11px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: #0b6b4d;
  border-radius: 7px;
}

.pac-container {
  z-index: 12000 !important;
  font-family: Poppins, sans-serif;
}

@media (max-width: 900px) {
  .bs-nearby,
  .bs-review-legends {
    grid-template-columns: minmax(0, 1fr);
  }

  .bs-nearby__map {
    min-height: 470px;
  }

  .bs-nearby__panel {
    border-top: 1px solid #d7e2de;
    border-left: 0;
  }

  .bs-review-legends__image,
  .bs-review-legends__image img {
    min-height: 520px;
  }

  .navbar.fixed-top .wp-block-blockstrap-blockstrap-widget-navbar {
    min-height: 64px;
    flex-wrap: nowrap;
  }

  .navbar.fixed-top .bs-site-brand {
    min-width: max-content;
    margin-right: 18px;
    white-space: nowrap;
  }

  body:not(.home) .wp-site-blocks > header.wp-block-template-part + * {
    margin-top: 72px !important;
  }

  .home .bs-home-hero__inner {
    padding-top: 82px;
  }

  .bs-directory-map {
    height: 68vh;
    min-height: 440px;
  }
}

/* Guest listing intake uses the protected Fluent Form instead of open accounts. */
.bs-add-shop-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #52605b;
  font-size: 16px;
  line-height: 1.65;
}

.bs-guest-images {
  padding: 16px;
  background: #f4f8f6;
  border: 1px solid #cbdad4;
  border-radius: 10px;
}

.bs-guest-images__help,
.bs-guest-images__status {
  margin: 5px 0 10px;
  color: #52605b;
  font-size: 13px;
  line-height: 1.45;
}

.bs-guest-images__status--error {
  color: #9b2c24;
}

.bs-guest-images__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.bs-guest-images__previews img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 1px solid #cbdad4;
  border-radius: 8px;
}

@media (max-width: 700px) {
  .bs-home,
  .bs-home *,
  .bs-public-page,
  .bs-public-page *,
  .bs-article-hero,
  .bs-article-hero *,
  .bs-article-main,
  .bs-article-main *,
  .bs-site-footer,
  .bs-site-footer * {
    word-spacing: normal !important;
  }

  .navbar.fixed-top .wp-block-blockstrap-blockstrap-widget-navbar {
    min-height: 60px;
    gap: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navbar.fixed-top .bs-site-brand,
  .navbar.fixed-top .bs-site-brand:visited {
    margin-right: 14px;
    padding-top: 7px;
    padding-bottom: 7px;
    font-size: 20px;
  }

  .navbar.fixed-top .bs-site-menu {
    flex: 0 0 auto;
  }

  .bs-home-shell,
  .bs-page-main,
  .bs-public-page,
  .bs-article-shell,
  .bs-article-main {
    width: min(100% - 24px, 100%);
  }

  .bs-home-hero__inner {
    padding-top: 66px;
    padding-bottom: 46px;
    text-align: left;
  }

  .bs-home-hero h1 {
    max-width: 14ch;
    margin-left: 0;
    font-size: clamp(31px, 8.6vw, 39px);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .bs-home-hero__lede,
  .bs-section-intro,
  .bs-home-trust > div > p:last-child,
  .bs-public-page p,
  .bs-public-page li {
    font-size: 16px;
    line-height: 1.58;
    word-spacing: normal;
  }

  .bs-home-search {
    margin-top: 24px;
  }

  .bs-home-proof {
    align-items: flex-start;
    margin-top: 20px;
  }

  .bs-home-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .bs-nearby {
    min-height: 0;
    border-radius: 15px;
  }

  .bs-nearby__panel {
    order: -1;
    padding: 16px;
  }

  .bs-nearby__actions {
    display: grid;
    gap: 12px;
  }

  .bs-nearby__actions .bs-button {
    width: 100%;
  }

  .bs-nearby__map {
    min-height: 380px;
  }

  .bs-nearby__privacy {
    margin-top: 14px;
  }

  .bs-home-section--reviews {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .bs-review-legends__image,
  .bs-review-legends__image img {
    min-height: 500px;
  }

  .bs-review-legends__message h2 {
    font-size: clamp(30px, 9vw, 39px);
  }

  .bs-review-quote {
    padding: 18px;
  }

  .bs-section-heading h2,
  .bs-owner-cta h2,
  .bs-home-trust h2,
  .bs-public-page .bs-display-heading {
    font-size: clamp(25px, 7.2vw, 33px);
    line-height: 1.12;
    letter-spacing: -0.025em;
  }

  .bs-guide-card__body,
  .bs-step-grid li,
  .bs-home-trust li,
  .bs-public-page__hero,
  .bs-public-page .wp-block-column {
    padding: 14px;
  }

  .bs-guide-grid--index .bs-guide-card:nth-child(4n + 2) .bs-guide-card__image {
    padding: 9px;
  }

  .bs-owner-cta {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .bs-site-footer {
    padding: 32px 16px;
  }

  .bs-article-hero {
    margin-bottom: 28px;
    padding: 34px 12px 28px;
  }

  .bs-article-hero h1 {
    font-size: clamp(29px, 8vw, 38px);
    line-height: 1.1;
  }

  .bs-article-main {
    padding-right: 12px;
    padding-bottom: 54px;
    padding-left: 12px;
  }

  .bs-article-content h2 {
    margin-top: 34px;
    font-size: clamp(23px, 6.7vw, 29px);
  }

  .bs-article-content h3,
  .bs-step-grid h3,
  .bs-guide-card h2,
  .bs-guide-card h3 {
    font-size: 20px;
  }

  .bs-guide-summary,
  .bs-callout,
  .bs-article-cta {
    padding: 18px;
  }

  .bs-directory-map {
    height: 54vh;
    min-height: 340px;
  }
}

/* 0.5.12: composed one-photo listing hero. */
.single-gd_place .aui-gallery > [class*='col-']:only-child figure,
.single-gd_place .aui-gallery > [class*='col-']:only-child .ratio {
  min-height: clamp(280px, 36vw, 460px);
}

.single-gd_place #images.bs-single-photo-layout {
  width: min(calc(100% - 32px), 1180px);
  margin-right: auto !important;
  margin-bottom: clamp(30px, 4vw, 52px) !important;
  margin-left: auto !important;
  padding: 0 !important;
}

.bs-single-photo-layout__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.58fr) minmax(310px, 0.72fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  margin: 0 !important;
}

.bs-single-photo-layout__media,
.bs-single-photo-layout__contact {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.bs-single-photo-layout__media .aui-gallery {
  height: 100%;
  min-height: 430px;
  margin: 0 !important;
  padding: 7px;
  background: #edf3f0;
  border-radius: 20px;
}

.bs-single-photo-layout__media .aui-gallery > [class*='col-']:only-child,
.bs-single-photo-layout__media .aui-gallery figure,
.bs-single-photo-layout__media .aui-gallery .ratio {
  height: 100% !important;
  min-height: 416px !important;
  max-height: 510px !important;
}

.bs-single-photo-layout__media .aui-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-single-photo-layout__contact {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 30px) !important;
  background:
    radial-gradient(circle at 100% 0, rgba(248, 214, 111, 0.24), transparent 34%),
    #f1f7f4;
  border: 1px solid #d6e2dd;
  border-radius: 20px;
}

.bs-single-photo-layout__contact .sticky-top {
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9e3df !important;
  border-radius: 13px;
  box-shadow: none !important;
}

.bs-single-photo-layout__contact .bs-contact-address {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 17px 18px !important;
  color: #20312b;
  line-height: 1.35;
}

.bs-single-photo-layout__contact
  .bs-contact-address
  .geodir_post_meta_icon {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 1px 0 0 !important;
  place-items: center;
  color: #0b6b4d;
  background: #e4f2ec;
  border-radius: 9px;
}

.bs-contact-address
  .geodir_post_meta_icon
  .geodir_post_meta_title {
  display: none !important;
}

.bs-contact-address__body,
.bs-contact-address__street,
.bs-contact-address__locality,
.bs-contact-address__country {
  display: block;
}

.bs-contact-address__body {
  min-width: 0;
}

.bs-contact-address__label {
  display: block;
  margin-bottom: 4px;
  color: #68766f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bs-contact-address__street {
  color: #102d24;
  font-size: 15px;
  font-weight: 760;
}

.bs-contact-address__locality,
.bs-contact-address__country {
  margin-top: 2px;
  color: #5f6f68;
  font-size: 13px;
  font-weight: 600;
}

.bs-single-photo-layout__intro {
  margin-bottom: 18px;
}

.bs-single-photo-layout__intro span {
  display: block;
  margin-bottom: 5px;
  color: #0b6b4d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bs-single-photo-layout__intro h2 {
  margin: 0 0 7px;
  color: #102d24;
  font-size: clamp(25px, 2.8vw, 34px);
  line-height: 1.08;
}

.bs-single-photo-layout__intro p {
  margin: 0;
  color: #61706a;
  font-size: 13px;
  line-height: 1.55;
}

.bs-listing-main-after-hero > [class*='col-lg-8'] {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* 0.5.12: city discovery cards. */
.bs-location-links {
  gap: 16px;
}

.bs-location-links a,
.bs-location-links a:visited {
  position: relative;
  justify-content: flex-start;
  min-height: 118px;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(237, 246, 242, 0.96));
  border-color: #d3e1db;
  border-radius: 17px;
  box-shadow: 0 12px 32px rgba(16, 45, 36, 0.08);
}

.bs-location-links li:nth-child(3n + 2) a {
  background: linear-gradient(135deg, #fffaf0, #f4f8f5);
}

.bs-location-links li:nth-child(3n) a {
  background: linear-gradient(135deg, #edf7f3, #f9fbfa);
}

.bs-location-links a::after {
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 104px;
  height: 104px;
  content: '';
  border: 18px solid rgba(11, 107, 77, 0.06);
  border-radius: 50%;
}

.bs-location-links a .bs-location-links__number {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #f8d66f;
  font-size: 11px;
  font-weight: 850;
  background: #103b2f;
  border-radius: 11px;
}

.bs-location-links a .bs-location-links__name {
  z-index: 1;
  display: grid;
  gap: 3px;
  color: #20312b;
}

.bs-location-links__name strong {
  font-size: 19px;
  line-height: 1.15;
}

.bs-location-links__name small {
  overflow: hidden;
  color: #6a7772;
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bs-location-links a .bs-location-links__arrow {
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  margin-left: auto;
  place-items: center;
  color: #0b6b4d;
  background: rgba(11, 107, 77, 0.09);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .bs-single-photo-layout__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  }
}

@media (max-width: 760px) {
  .bs-single-photo-layout__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bs-single-photo-layout__contact {
    order: -1;
  }

  .bs-single-photo-layout__media .aui-gallery,
  .bs-single-photo-layout__media .aui-gallery > [class*='col-']:only-child,
  .bs-single-photo-layout__media .aui-gallery figure,
  .bs-single-photo-layout__media .aui-gallery .ratio {
    min-height: clamp(250px, 67vw, 360px) !important;
    max-height: 360px !important;
  }

  .bs-location-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .bs-location-links a,
  .bs-location-links a:visited {
    min-height: 104px;
    padding: 13px;
  }

  .bs-location-links a .bs-location-links__number {
    width: 31px;
    height: 31px;
  }

  .bs-location-links__name strong {
    font-size: 16px;
  }

  .bs-location-links a .bs-location-links__arrow {
    display: none;
  }
}

@media (max-width: 460px) {
  .bs-location-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .bs-location-links a,
  .bs-location-links a:visited {
    min-height: 88px;
  }
}
