.contact-layout {
  align-items: flex-start;
}

.contact-form {
  max-width: 620px;
}

.contact-aside {
  position: sticky;
  top: 96px;
}

.contact-form-footer {
  flex-wrap: wrap;
}

@media (max-width: 899px) {
  .contact-aside {
    position: static;
  }
}

.contact-layout--secondary {
  align-items: stretch;
}

.map-card {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .map-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    align-items: stretch;
  }
}

.map-card__info {
  justify-content: space-between;
}

.map-card__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.95);
  background-color: rgba(15, 23, 42, 0.96);
}

.map-card__embed iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
}

@media (min-width: 768px) {
  .map-card__embed iframe {
    min-height: 320px;
  }
}
