/* =====================================
   BLOGARTIKEL
===================================== */

 .article-category {
    font-size: .9rem;
    color: var(--hellgrau);
    margin-bottom: 28px;
}

.article-meta {
    font-size: .9rem;
    color: var(--hellgrau);
    font-style: italic;
}

.article-section-title {
    margin-bottom: 26px;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--berry);
}

.article-divider {
    display: flex;
    align-items: center;
    gap: 90px;
width: 100%;
    max-width: 820px;
    margin: 56px auto;
}

.article-divider span {
    flex: 1;
    height: 1px;
    background: var(--berry);
    opacity: .25;
}
.blog-intro {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}
.blog-article {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;
}

.hero-image {
    margin: 40px 0 60px;
}

.hero-image__img {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: 420px;      /* später fein abstimmen */
    object-fit: cover;
    margin: 0 auto;
}

/* =====================================
   BLOG-INTRO
===================================== */

.blog-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}

.article-category {
    margin: 0 0 22px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--hellgrau);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-intro h1 {
    margin-bottom: 18px;
}

.article-meta {
    margin-bottom: 36px;
    font-size: 0.95rem;
    color: var(--hellgrau);
    font-style: normal;
}

.article-meta span {
    margin: 0 8px;
}

.article-lead {
    max-width: 820px;
    font-size: 1.35rem;
    line-height: 1.55;
    color: var(--dunkelgrau);
}

/* =====================================
   THEMEN
===================================== */

.article-tags {
    margin: 28px 0 50px;
    font-size: .85rem;
    line-height: 2;
}

.article-tags span {
  display: block;
    margin-bottom: 8px;
    color: var(--hellgrau);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.article-tags a {
    display: inline-block;
    margin: 0 10px 8px 0;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: var(--dunkelgrau);
    text-decoration: none;
    transition: .2s;
}

.article-tags a:hover {
    border-color: var(--berry);
    color: var(--berry);
}
/* =====================================
   LESESAAL
===================================== */

.reading-room {
    max-width: 820px;
    margin: 0 auto;
}

.reading-room h2 {
    margin: 70px 0 24px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--berry);
}

.reading-room p {
    max-width: none;
    margin-bottom: 28px;
    line-height: 1.75;
}


/* =====================================
   SCHWELLE ZUM LESESAAL
===================================== */

.lesesaal-schwelle {
    width: 100%;
    max-width: 820px;
    margin: 70px auto;
}

.lesesaal-linie {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 90px;
}

.lesesaal-linie span {
    display: block;
    width: 100%;
    background-color: var(--berry);
}

.lesesaal-linie--stark span {
    height: 2px;
    opacity: .55;
}

.lesesaal-linie--fein {
    margin-top: 4px;
}

.lesesaal-linie--fein span {
    height: 1px;
    opacity: .25;
}


/* Austritt: Abstand zwischen den Linien umkehren */

.lesesaal-schwelle--austritt .lesesaal-linie--fein {
    margin-top: 0;
    margin-bottom: 4px;
}

/* =====================================
   ARTIKELMODULE
===================================== */

/* ---------- Grundlayout ---------- */

.article-section {
    margin-bottom: 80px;
}


/* ---------- Nur Text ---------- */

.article-text {
    max-width: 820px;
}


/* ---------- Basis für alle Bildlayouts ---------- */

.article-layout {
    display: grid;
    gap: 50px;
    align-items: start;
    margin: 35px 0 45px;
}


/* ---------- Bild rechts ---------- */

.article-layout--right {
    grid-template-columns: 2fr 1fr;
}


/* ---------- Bild links ---------- */

.article-layout--left {
    grid-template-columns: 1fr 2fr;
}


/* ---------- Querbild ---------- */

.article-layout--wide {
    display: block;
    margin: 40px 0 50px;
}

.article-layout--wide img {
    display: block;
    width: 100%;
    height: auto;
}

.article-layout--wide figcaption {
    margin-top: 10px;
    font-size: .8rem;
    line-height: 1.4;
    color: var(--hellgrau);
}

/* ---------- Zwei Bilder ---------- */

.article-layout--double {
    grid-template-columns: 1fr 1fr;
}


/* ---------- Gemeinsame Elemente ---------- */

.article-layout__text p {
    max-width: none;
}

.article-layout__image {
    margin: 0;
}

.article-layout__image img {
    display: block;
    width: 100%;
    height: auto;
}

.article-layout__image figcaption {
    margin-top: 10px;
    font-size: .8rem;
    line-height: 1.4;
    color: var(--hellgrau);
}


/* =====================================
   AUSGANG AUS DEM LESESAAL
===================================== */

.article-exit {
    max-width: 820px;
    margin: 0 auto 90px;
}

.article-exit > h2 {
    margin: 0 0 48px;
    font-size: 2rem;
    font-weight: 300;
    color: var(--berry);
}

.article-exit__item {
    padding: 34px 0;
    border-top: 1px solid rgba(165, 0, 100, .22);
}

.article-exit__item:last-child {
    border-bottom: 1px solid rgba(165, 0, 100, .22);
}

.article-exit__item--primary {
    padding-top: 0;
    border-top: 0;
}

.article-exit__item h3 {
    margin: 0 0 14px;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dunkelgrau);
}

.article-exit__item p {
    max-width: 680px;
    margin: 0 0 18px;
    line-height: 1.65;
}

.article-exit__item .room-link {
    font-size: .95rem;
}


/* =====================================
   MOBIL
===================================== */


@media (max-width:768px){

    .article-layout,
    .article-layout--right,
    .article-layout--left,
    .article-layout--double{
        grid-template-columns:1fr;
        gap:30px;
    }

}
/* =====================================
   AUSGANG – MOBIL
===================================== */

@media (max-width: 768px) {

    .article-exit {
        margin-bottom: 60px;
    }

    .article-exit > h2 {
        margin-bottom: 34px;
        font-size: 1.7rem;
    }

    .article-exit__item {
        padding: 28px 0;
    }

}

/* =====================================
   Liste im Artikel
===================================== */

.plant-profile {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plant-profile li {
    padding: .8rem 0;
    border-bottom: 1px solid #e7e7e7;
    line-height: 1.7;
}

.plant-profile li:last-child {
    border-bottom: none;
}

.plant-profile strong {
    display: inline-block;
    min-width: 140px;
    color: var(--berry);
    font-weight: 600;
}

.fact-group {
    margin: 2.8rem 0;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid #d9d9d9;
}

.fact-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.fact-group h3 {
    margin: 0 0 1rem;
    color: var(--berry);
    font-size: 1rem;
    font-weight: 600;
}

.fact-group ul {
    margin: 0;
    padding-left: 1.3rem;
}

.fact-group li {
    margin-bottom: .8rem;
    line-height: 1.7;
}

.fact-group strong {
    font-weight: 600;
}
/* =====================================
  Zitate im Artikel
===================================== */
.article-quote {
    max-width: 720px;
    margin: 5rem auto;
    padding: 2.5rem 3rem;
    text-align: center;
    border-top: 2px solid var(--berry);
    border-bottom: 1px solid #d9d9d9;
}

.article-quote p {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.7;
    font-style: italic;
    color: #444;
}

.article-quote cite {
    display: block;
    margin-top: 1.8rem;
    font-style: normal;
    font-size: .95rem;
    letter-spacing: .08em;
    color: var(--berry);
}

