/* 🌆 Grundlayout für den gesamten Artikel */
.istanbul-essay {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #222;
  line-height: 1.75;
  font-size: 17px;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 15px;
}

/* 🩶 Intro-Absatz (der erste <p> mit <strong>) */
.istanbul-essay p:first-of-type {
  background: #f7f7f7;
  border-left: 4px solid #c8a97e;
  padding: 18px 22px;
  border-radius: 6px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  margin: 25px auto 40px;
}

/* ✨ Bilder */
.istanbul-essay figure.image_resized {
  display: block;
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.istanbul-essay figure.image_resized img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.istanbul-essay figure.image_resized:hover img {
  transform: scale(1.02);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.18);
}

/* 🖋️ Bildunterschriften */
.istanbul-essay figure.image_resized figcaption {
  font-family: 'Georgia', serif;
  color: #555;
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.6;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .istanbul-essay {
    font-size: 16px;
    line-height: 1.7;
    padding: 10px;
  }
  .istanbul-essay p:first-of-type {
    font-size: 17px;
    padding: 16px 18px;
  }
  .istanbul-essay figure.image_resized {
    width: 95% !important;
    margin: 20px auto !important;
  }
  .istanbul-essay figure.image_resized img {
    border-radius: 6px;
  }
  .istanbul-essay figure.image_resized figcaption {
    font-size: 13px;
  }
}

/* 💻 Großbildschirme */
@media (min-width: 1200px) {
  .istanbul-essay figure.image_resized {
    width: 70%;
  }
}

