.hibo-gmap-shell {
  display: block !important;
  flex: 0 0 100% !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 0 36px !important;
  clear: both;
}

.hibo-gmap-shell--boxed {
  width: calc(100% - 30px) !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.hibo-gmap,
.hibo-gmap * {
  box-sizing: border-box;
}

.hibo-gmap {
  width: 100%;
  padding: clamp(26px, 4vw, 54px);
  color: var(--hibo-gmap-text);
  background: var(--hibo-gmap-bg);
}

.hibo-gmap__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.4fr);
  width: 100%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  background: var(--hibo-gmap-panel);
}

.hibo-gmap__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 58px);
}

.hibo-gmap__eyebrow {
  margin: 0 0 8px;
  color: var(--hibo-gmap-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hibo-gmap__title {
  margin: 0;
  color: var(--hibo-gmap-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.hibo-gmap__description {
  margin: 18px 0 0;
  color: var(--hibo-gmap-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hibo-gmap__details {
  display: grid;
  gap: 19px;
  margin-top: 30px;
}

.hibo-gmap__detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hibo-gmap__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--hibo-gmap-accent);
  font-size: 21px;
  place-items: center;
}

.hibo-gmap__detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--hibo-gmap-text);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hibo-gmap__detail p {
  margin: 0;
  color: var(--hibo-gmap-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hibo-gmap__detail a {
  color: inherit;
  text-decoration: none;
}

.hibo-gmap__detail a:hover {
  color: var(--hibo-gmap-accent);
}

.hibo-gmap__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 9px;
  min-height: 46px;
  margin-top: 30px;
  padding: 12px 26px;
  border: 1px solid var(--hibo-gmap-accent);
  color: #ffffff;
  background: var(--hibo-gmap-accent);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.hibo-gmap__directions:hover {
  color: #ffffff;
  filter: brightness(0.92);
}

.hibo-gmap__map {
  min-width: 0;
  min-height: var(--hibo-gmap-height);
  background: #e8e8e8;
}

.hibo-gmap__map iframe {
  display: block;
  width: 100%;
  height: var(--hibo-gmap-height);
  min-height: 280px;
  border: 0;
}

@media (max-width: 900px) {
  .hibo-gmap__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hibo-gmap__info {
    order: 2;
  }

  .hibo-gmap__map {
    order: 1;
  }
}

@media (max-width: 575px) {
  .hibo-gmap {
    padding: 12px;
  }

  .hibo-gmap__info {
    padding: 30px 20px;
  }

  .hibo-gmap__map,
  .hibo-gmap__map iframe {
    min-height: 320px;
    height: 320px;
  }

  .hibo-gmap__directions {
    width: 100%;
  }
}
