/* ============================================
   Schul-News Manager – Frontend Styles
   ============================================ */

.sn-list {
    max-width: 860px;
    margin: 0 auto;
    font-family: inherit;
}

/* Einzelner News-Eintrag */
.sn-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e5e5e5;
}

.sn-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Bild */
.sn-bild {
    width: 100%;
    margin-bottom: 18px;
    overflow: hidden;
    line-height: 0;
}

.sn-bild img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 420px;
    object-fit: cover;
}

/* Inhalt */
.sn-content {
    padding: 0;
}

/* Datum */
.sn-datum {
    font-size: 13px;
    font-weight: 600;
    color: #2a5ba8;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Titel */
.sn-titel {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.35;
}

/* Text */
.sn-text {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
}

.sn-text p {
    margin-top: 0;
    margin-bottom: 14px;
}

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

.sn-text strong {
    font-weight: 600;
    color: #222;
}

/* Kein Inhalt */
.sn-no-news {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 600px) {
    .sn-bild img {
        max-height: 260px;
    }

    .sn-titel {
        font-size: 18px;
    }

    .sn-item {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }
}
