/* === SEITENSPEZIFISCH === */


.impressum-wrapper {
  display: flex;
  align-items: flex-start; /* ⬅ Gleiche Startposition oben */
  justify-content: center;
  gap: 4rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
}

.impressum {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
}

.left-column {
  width: 40%;
  text-align: left
}

.right-column {
  width: 55%;
  margin-top: 2rem; /* oder mehr für größeren Abstand */
  text-align: left
}

.left-column img {
  width: 75%;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.impressum h2, .impressum h3 {
  color: #e63946;
}

.impressum a {
  display: inline-block;
  text-align: right;
  direction: rtl; /* sorgt dafür, dass der Link-Inhalt nicht "ausläuft" */
}

html {
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  .impressum {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }

  .left-column,
  .right-column {
    width: 50%;
  }

  .left-column {
    padding-right: 2rem;
  }

  .right-column {
    padding-left: 2rem;
  }
}
