.contact-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.contact-media-card .figure {
  margin: 0;
}

.contact-media-card .figure-image {
  display: block;
  width: 100%;
}

.contact-media-card .figure-image img {
  display: block;
  width: 100% !important;
  height: auto;
  aspect-ratio: 1/1;
  max-height: none;
  object-fit: cover;
}

.contact-map-frame {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--rounded);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-media-card,
.contact-media-card .figure,
.contact-media-card .contact-map-frame {
  width: 100%;
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-media-card .figure-caption {
  font-style: normal;
}

.button-wrapper:has(+ .button-wrapper):has(+ .button-wrapper) .button,
.button-wrapper:has(+ .button-wrapper) + .button-wrapper .button,
.button-wrapper:has(+ .button-wrapper) + .button-wrapper + .button-wrapper .button {
  background: #000000;
  color: #ffffff;
}

.button-wrapper:has(+ .button-wrapper):has(+ .button-wrapper) .button:hover,
.button-wrapper:has(+ .button-wrapper) + .button-wrapper .button:hover,
.button-wrapper:has(+ .button-wrapper) + .button-wrapper + .button-wrapper .button:hover {
  background: #1f2937;
  color: #ffffff;
}

@media (max-width: 800px) {
  .contact-media {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=contact-page.css.map */