/* ========================================= */
/* Content Section - Two Column Layout      */
/* ========================================= */

.content-section h2 {
  text-align: left;
  font-size: 32px;
  margin-bottom: 40px;
}

.content-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  /* KORREKTUR: #fff ersetzt durch Variable */
  color: var(--text-main);
    text-align: left;
}

.content-section ul {
text-align: left;
}

.content-section li {
text-align: left;
}

p .source-credit {
text-align: left;  
}

/* Content Block - Zweispaltiges Layout */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

/* Letzter Block ohne Margin */
.content-block:last-child {
  margin-bottom: 0;
}

/* Standard Layout: Text in Spalte 1, Bild in Spalte 2 */
.content-text {
  grid-column: 1;
}

.content-image {
  grid-column: 2;
}

.content-image a {
  cursor: zoom-in;
}

/* Reverse Layout: Bild in Spalte 1, Text in Spalte 2 */
.content-block.reverse .content-text {
  grid-column: 2;
}

.content-block.reverse .content-image {
  grid-column: 1;
}

/* Text Container */
.content-text {
  /* KORREKTUR: #fff ersetzt durch Variable */
  color: var(--text-main);
}

.content-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* Bild Container - NUR für content-section */
.content-section .content-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.content-section .content-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.content-section .content-image:hover img {
  transform: scale(1.05);
}

/* Vollbreite für spezielle Elemente */
.content-block.full-width {
  grid-template-columns: 1fr; /* Nur eine Spalte */
  margin-bottom: 60px;
}

.content-block.full-width .content-image {
  grid-column: 1;
  max-width: 900px; /* Begrenzte Breite für bessere Darstellung */
  margin: 0 auto; /* Zentriert */
}

.content-block.full-width .content-image img {
  width: 100%;
  height: auto;
}

/* ========================================= */
/* Responsive - Tablet                      */
/* ========================================= */
@media (max-width: 992px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Auf Tablet: Text immer oben, Bild immer unten */
  .content-text {
    grid-column: 1;
    order: 1;
  }
  
  .content-image {
    grid-column: 1;
    order: 2;
  }
  
  .content-block.reverse .content-text {
    grid-column: 1;
    order: 1;
  }
  
  .content-block.reverse .content-image {
    grid-column: 1;
    order: 2;
  }
}

/* ========================================= */
/* Responsive - Mobile                      */
/* ========================================= */
@media (max-width: 768px) {
  .content-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .content-section h3 {
    font-size: 20px;
  }
  
  .content-block {
    margin-bottom: 40px;
    gap: 20px;
  }
  
  .content-text p {
    font-size: 15px;
  }
}

/* ========================================= */
/* Responsive - Kleine Mobile               */
/* ========================================= */
@media (max-width: 375px) {
  .content-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  
  .content-section h3 {
    font-size: 18px;
  }
  
  .content-block {
    margin-bottom: 30px;
  }
  
  .content-text p {
    font-size: 14px;
  }
}