.impressum__menu {
  flex-wrap: wrap;
  row-gap: 0.4rem;
}

.footer-modal-trigger {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.footer-modal-trigger:hover,
.footer-modal-trigger:focus-visible {
  text-decoration: underline;
}

body.footer-modal-open {
  overflow: hidden;
}

.footer-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(15, 23, 42, 0.6);
}

.footer-modal-overlay.is-open {
  display: flex;
}

.footer-modal {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: 2.75rem 1.25rem 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: footer-modal-in 0.2s ease-out;
}

.footer-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgb(240, 239, 233);
  color: rgb(36, 55, 77);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-modal__close:hover,
.footer-modal__close:focus-visible {
  background: rgb(220, 219, 213);
}

.footer-modal__title {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  color: rgb(36, 55, 77);
  margin: 0 0 1rem;
}

.footer-modal__body {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgb(51, 51, 51);
}

@keyframes footer-modal-in {
  from {
    transform: translateY(16px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (min-width: 600px) {
  .footer-modal-overlay {
    align-items: center;
    padding: 1.5rem;
  }

  .footer-modal {
    max-width: 560px;
    border-radius: 1rem;
    padding: 2.75rem 2rem 2rem;
  }
}
