/*  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: #FFFfff;
  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;
}

.image-box {
  width: 40%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

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

  .image-box {
    width: 80%;
    margin-top: 20px;
  }

  .image-box img {
    width: 80%;
    max-width: 100%;
  }
}

/* GALERIE LINK */
.gallery-link {
  display: inline-block; /* oder block */
  margin-bottom: 50px;
  color: #ff0000;
  font-size: 20px;
  text-decoration: none !important;  
}

.gallery-link:hover {
  opacity: 0.8;
  color: #000000;
}

a.gallery-link,
a.gallery-link:link,
a.gallery-link:visited,
a.gallery-link:hover,
a.gallery-link:active {
  text-decoration: none;
  color: #ff0000;
}

.bildtitel {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
