/* Grundlayout */
body {
  margin: 0;
  font-family: verdana, arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

/* Spalten wie früher span6/span6 */
.col {
  flex: 1 1 50%;
  box-sizing: border-box;
}

/* Linke Spalte: volle Breite + Farbverlauf */
.left {
  background: linear-gradient( to bottom, #e6e6e6 0%, #ffffff 75%, #ffffff 100% );
  padding: 20px;
  min-height: 100vh;
}

/* Rechte Spalte */
.right {
  padding: 20px;
}

/* Links rechtsbündig */
#text {
  text-align: right;
  padding-top: 240px;
}

#text p {
  margin: 8px 0;
}

#text a {
  color: #5e5e5e;
  text-decoration: none;
}

#text a:hover {
  color: #111111;
  text-decoration: underline;
}

/* Bild rechts */
#bild {
  text-align: right;
}

#bild img {
  max-width: 100%;
  height: auto;
}

/* Mobile Ansicht */
@media (max-width: 992px) {

  /* Eine Spalte */
  .row {
    flex-direction: column;
  }

  /* Bildbereich: mit Farbverlauf */
  .right {
    order: -1;
    width: 100%;
    padding: 20px;
    text-align: center;
    background: linear-gradient(to bottom, #e6e6e6, #ffffff);
  }

  #bild img {
    max-width: 80%;
    height: auto;
  }

  /* Linkbereich: OHNE Farbverlauf */
  .left {
    order: 2;
    width: 100%;
    padding: 20px;
    background: none; /* ← kein Verlauf */
  }

  #text {
    text-align: center;
    padding-top: 0px;
  }
}



