/* =============================================================================
   NEWS.CSS – Mühlentor Bernau
   Styles für die News-Seite: news.html.
   Ladereihenfolge: nach site.css.
   ============================================================================= */

.section-content {
    padding: 5rem 0 4rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 60%);
}

.news-block {
    max-width: 760px;
    margin: 0 auto;
}

/* ── Permanente Infobox ───────────────────────────────────────────────────── */

.permanent-info-box {
    background: #fdfaf2;
    border-left: 4px solid #b8935c;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 3.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .02);
}

.permanent-info-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #111;
    margin-top: 0;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.permanent-info-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* ── News-Artikel ────────────────────────────────────────────────────────── */

.news-article {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.news-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-header {
    margin-bottom: 1.2rem;
}

.news-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    line-height: 1.25;
    color: #111;
    margin: 0 0 .5rem 0;
}

.news-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: .88rem;
    color: #7a7a7a;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
}

.news-meta span.separator::after {
    content: "•";
    color: #ccc;
}

.news-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #2b2b2b;
    margin: 0 0 1.2rem 0;
}

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

.news-signature {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0, 0, 0, .06);
}

.news-signature p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.news-signature .author-name {
    font-weight: 700;
    color: #111;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 767.98px) {
    .section-content {
        padding: 3rem 0 2.5rem;
    }
    .sg-title {
        font-size: 1.5rem !important;
    }
    .sg-sub {
        font-size: .95rem;
    }
    .permanent-info-box {
        padding: 1.25rem;
        margin-bottom: 2.5rem;
    }
    .news-article {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }
    .news-content p {
        font-size: .98rem;
        line-height: 1.75;
    }
}
