.contact__section:not(:last-child) {
  margin-bottom: var(--spacing-xl);
}

.contact__section--first {
  display: grid;
  grid-gap: var(--spacing-lg);
}

.contact__pane {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  padding: var(--spacing-lg);
}

.contact__item:not(:last-child) {
  margin-bottom: var(--spacing-lg);
}

.contact__label {
  font: var(--typography-label-medium);
  font-weight: bold;
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  color: var(--color-text-dimmed);
}

.contact__value ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact__map {
  padding: 0;
  overflow: hidden;
}

.contact__map-facade {
  height: 100%;
  min-height: 400px;
  position: relative;
  background: transparent var(--contact-map-static-url, none) no-repeat center;
  background-size: cover;
  cursor: pointer;
}

.contact__map iframe {
  height: 100%;
  min-height: 400px;
}

.contact__map-tip {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: var(--color-black-o-25);
}

.contact__map-tip::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background: var(--color-white) url('../../../icons/111111/gesture-double-tap.svg') no-repeat center;
  background-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--color-white-o-50), 0 0 0 16px var(--color-white-o-25);
}

.contact__map-wrapper,
.contact__map-wrapper > ymaps {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .contact__section--first {
    grid-template-columns: repeat(2, 1fr);
  }
}
