/*  Styles Aktuelles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f4f6f8;
  padding: 20px;
}

h1 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.card {
  background: #FFFACD;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.gross-text-box,
.gross-image-box {
    width: 100%;
    margin: 25px auto 0;
}


h3 {
  font-size: 22px;
  color: #222;
  margin-bottom: 30px;
}

p {
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media (max-width: 700px) {
  .top {
    flex-direction: column;
  }
}

  .text-box,
  .image-box,
  .gross-text-box
  .gross-image-box  {
    width: 100%;
  }
  
.gross-image-box img {
    width: 90%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* zentriert das Bild */
    border-radius: 10px;
}  

.line {
  border: none;
  height: 1px;
  background-color: #dedede;
  width: 90vw;
  margin: 15px auto 25px auto; /* unten - links - oben - rechts */
}

.line-rot {
  border: none;
  height: 1px;
  background-color: #FF6A6A;
  width: 30vw;
  margin: 20px auto 20px 0; /* top – right – bottom – left */
}

/* Doppel-Linie */
.box {
  border-top: 2px solid #dedede;
  position: relative;
  padding-top: 25px;
  padding-bottom: 40px; /* Abstand unter der Doppel-Linie */
}

.box::before {
  content: "";
  position: absolute;
  top: 7px; /* 2px + 15px Abstand */
  left: 0;
  right: 0;
  height: 2px;
  background: #dedede;
}
