/* BLOG – ALLGEMEIN */
.blog-artikel, .artikel-liste {
  max-width: 900px;
  margin: 0 auto;
}



/* ARTIKELLISTE */
.artikel-liste {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

/* EINZELNE ARTIKELBOX */
.artikel-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* ARTIKELBILD */
.artikel-box img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* TITEL */
.artikel-box h3 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.7rem;
  color: #2f3b2f;
}

/* TEASER-TEXT */
.artikel-box p {
  margin-bottom: 25px;
  color: #2f3b2f;
}

/* BUTTON – BLOG VARIANTE */
.artikel-box .btn {
  display: inline-block;
  background: #aab9a2;
  color: white;
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.artikel-box .btn:hover {
  background: #8fa48a;
}
/* ===== Blog: Grundlayout ===== */
main.blog-bereich {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

/* ===== Titel ===== */
.blog-title {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #b59b59;
  text-align: center;
  margin-bottom: 10px;
}

.blog-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #2f3b2f;
  margin-bottom: 50px;
}
.blog-einführungstext,
.blog-einführungstext p,
.blog-einführungstext * {
    text-align: justify !important;
    hyphens: auto;
}
/* ===== Artikel-Boxen ===== */
.blog-artikel {
  background: white;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.blog-artikel img {
  width: 220px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.blog-artikel h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #b59b59;
  margin-bottom: 10px;
}

.blog-artikel p {
  font-size: 1rem;
  line-height: 1.5;
  color: #2f3b2f;
}

/* Weiterlesen-Button */
.blog-artikel .btn {
  display: inline-block;
  margin-top: 15px;
  background: #aab9a2;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  transition: 0.3s;
  font-size: 0.95rem;
}

.blog-artikel .btn:hover {
  background: #8f9d87;
}
/* Zurück-Buttons */
.btn-zurueck, .btn-zurueck-kategorie {
    display: inline-block;
    margin: 1.5rem 0;
    padding: 0.8rem 1.6rem;
    background-color: #aab9a2;  /* wie alle Buttons */
    color: #fff;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-zurueck:hover, .btn-zurueck-kategorie:hover {
    background-color: #8fa08a;
}
.btn-container {
    text-align: center;
    margin: 2rem 0;
}

.btn-container a {
    display: inline-block;
    margin: 0.5rem;
}
/* --------------------------------------------- */
/* BLOG-ARTIKEL – MAGAZIN-STIL / SAUBERE TYPO */
/* --------------------------------------------- */

.blog-artikel-seite {
  max-width: 850px;
  margin: 60px auto;
  padding: 0 20px;
}

.artikel-title {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 10px;
  color: #2f3b2f;
}

.artikel-subline {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #4d5a4d;
}

.artikel-box {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  backdrop-filter: blur(3px);
}

.artikel-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #2f3b2f;
}

.artikel-box p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #2f3b2f;
}

.artikel-box ul {
  margin: 20px 0 30px 20px;
  padding-left: 20px;
}

.artikel-box ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #2f3b2f;
}
/* ----------------------------- */
/* FIX: Text & Listen linksbündig */
/* ----------------------------- */

.artikel-box {
  text-align: left !important;
}

.artikel-box p,
.artikel-box ul,
.artikel-box li {
  text-align: left !important;
}

.artikel-box ul {
  margin-left: 20px;
  padding-left: 20px;
}

.artikel-box li {
  display: list-item;
  list-style: disc;
}

/* Überschrift & Subline weiterhin zentriert */
.artikel-title,
.artikel-subline {
  text-align: center !important;
}

.btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0 60px 0;
}

.btn-zurueck,
.btn-kategorie {
  padding: 14px 32px;
  background-color:   #aab9a2;
  color: #fff;;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
  min-width: 370px;
  text-align: center;
  display: inline-block;
}

.btn-zurueck:hover,
.btn-kategorie:hover {
  background-color:   #aab9a2;
  color: #fff;;
}

/* ---------------------------------------------- */
/* BLOG KATEGORIE – FIX: ZENTRIERTER BLOCKABSATZ */
/* ---------------------------------------------- */

.blog-bereich {
  max-width: 900px !important;
  margin: 60px auto !important;
  padding: 0 20px !important;
  text-align: left !important;
}

.blog-bereich h2,
.blog-bereich .blog-title {
  text-align: center !important;
}

.blog-artikel {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 25px !important;
  padding: 25px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 0 15px rgba(0,0,0,0.05) !important;
  margin-bottom: 50px !important;
}

.blog-artikel img {
  width: 150px !important;
  border-radius: 12px !important;
  flex-shrink: 0 !important;
}

.blog-artikel p,
.blog-artikel h3 {
  text-align: left !important;
  line-height: 1.7 !important;
}
.zitat-box {
  max-width: 700px;
  margin: 50px auto;
  background: rgba(202, 213, 204, 0.85);
  padding: 35px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  font-style: italic;
}

.zitat-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #2f3b2f;
  margin-bottom: 15px;
}

.zitat-author {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #b59b59; /* dezenter Goldton */
  margin-top: 5px;
}
.blog-artikel-seite p,
.blog-artikel-seite ul,
.blog-artikel-seite li,
.blog-artikel-seite .artikel-box {
  text-align: justify;
}
.blog-artikel-seite ul,
.blog-artikel-seite li {
  text-align: left !important;
}
.blog-artikel-seite p {
  text-align: justify !important;
}
.blog-artikel-seite p.artikel-subline {
  text-align: center !important;
}
/* ======================================= */
/* RESPONSIVE FIX FÜR HANDY / TABLET       */
/* ======================================= */
@media (max-width: 768px) {

  /* Blog-Artikel: Bild oben, Text unten */
  .blog-artikel {
      flex-direction: column !important;
      text-align: center !important;
      padding: 20px !important;
  }

  .blog-artikel img {
      width: 100% !important;
      max-width: 100% !important;
      height: auto !important;
  }

  /* Einzelartikel-Box */
  .artikel-box {
      padding: 25px !important;
  }

  /* Titel verkleinern */
  .artikel-title {
      font-size: 1.9rem !important;
  }

  .artikel-subline {
      font-size: 1rem !important;
  }

  /* Buttons endlich mobil-tauglich */
  .btn-zurueck,
  .btn-kategorie {
      min-width: unset !important;
      width: 100% !important;
      padding: 14px 20px !important;
      font-size: 1rem !important;
  }

  .btn-row {
      flex-direction: column !important;
      gap: 15px !important;
  }

  /* Zitatbox */
  .zitat-box {
      padding: 25px !important;
  }

  .zitat-text {
      font-size: 1.2rem !important;
}

.blog-einführungstext,
.blog-einführungstext p,
.blog-einführungstext * {
    text-align: justify !important;
    hyphens: auto;
}


}

/* ================================================================= */
/*   MOBILER HARD-FIX FÜR BLOG-ARTIKEL (Flex-Layout deaktivieren)   */
/* ================================================================= */
@media (max-width: 768px) {

    /* Artikelbox soll NICHT mehr Flex sein → verhindert Verschiebung */
    .blog-artikel-seite .artikel-box {
        display: block !important;
        width: 100% !important;
        padding: 20px !important;
    }

    /* Zitatbox soll 100% Breite bekommen + mittig stehen */
    .blog-artikel-seite .zitat-box {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px auto !important;
        text-align: center !important;
    }

    /* Text in der Zitatbox */
    .blog-artikel-seite .zitat-text,
    .blog-artikel-seite .zitat-author {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }

    /* Überschriften zentrieren, egal was style.css macht */
    .blog-artikel-seite h1,
    .blog-artikel-seite h2,
    .blog-artikel-seite h3 {
        text-align: center !important;
        width: 100% !important;
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
/* =============================== */
/* GOLD-LINK FIX – BLEIBT GOLD     */
/* =============================== */

.gold-link,
.gold-link:visited {
  color: #b59b59;
  text-decoration: none;
  font-weight: 500;
}

.gold-link:hover,
.gold-link:active,
.gold-link:focus {
  color: #a89055;   /* etwas dunkleres Gold beim Hover */
  text-decoration: underline;
}



