/*  Styles Klubarbeit */

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

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

h1 {
  margin-top: 30px;
  margin-left: 10px;
  margin-bottom: 50px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  
  
  width: 100%;
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.text-box {
  width: 75%;
  display: flex;
  flex: 1 1 300px;
  flex-direction: column;
  gap: 12px;
}

.image-box {
  width: 25%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

@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;
}  

@media (max-width: 700px) {
    .gross-image-box img {
        width: 100%;
    }
}
  
}
