/*
 * ============================================================
 * NEWS – STYLESHEET
 * Angepasst an die maßgebliche style.css
 * ============================================================
 */


* {
    box-sizing: border-box;
}


html {
    min-height: 100%;

    background: #f7f4ee;
}


body {
    min-height: 100vh;

    margin: 0;

    padding: 42px 20px;

    background: #f7f4ee;

    color: #302e2a;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.05rem;

    line-height: 1.75;
}


/*
 * ============================================================
 * CONTAINER
 * ============================================================
 */

.container {
    width: min(100%, 1080px);

    max-width: 1080px;

    margin: 0 auto;
}


/*
 * ============================================================
 * KOPF
 * ============================================================
 */

.header {
    max-width: 850px;

    margin-bottom: 30px;
}


h1 {
    margin: 0 0 10px;

    color: #24221f;

    font-size: clamp(2.3rem, 5vw, 3.8rem);

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -0.025em;
}


.intro {
    max-width: 760px;

    margin: 0;

    color: #665f56;

    font-size: 1.18rem;

    line-height: 1.55;
}


/*
 * ============================================================
 * LISTE
 * ============================================================
 */

.item-list {
    margin: 0;

    padding: 0;

    list-style: none;

    border-top: 1px solid #ddd5c8;
}


.item {
    margin: 0;

    padding: 0;

    border-bottom: 1px solid #ddd5c8;
}


.item a {
    display: block;

    padding: 14px 5px;

    color: #685b4b;

    font-size: 1.05rem;

    line-height: 1.6;

    text-decoration:
        underline;

    text-decoration-color: #b8a991;

    text-decoration-thickness: 1px;

    text-underline-offset: 3px;

    transition:
        color 0.18s ease;
}


.item a:hover {
    color: #302a23;
}


/*
 * ============================================================
 * KEINE BEITRÄGE
 * ============================================================
 */

.empty {
    padding: 25px;

    background: #f0ece4;

    border: 1px solid #d5cec1;

    border-radius: 7px;

    color: #837b70;

    line-height: 1.6;

    text-align: center;
}


/*
 * ============================================================
 * RESPONSIVE
 * ============================================================
 */

@media (max-width: 700px) {

    body {
        padding: 26px 12px;
    }


    .container {
        width: 100%;
    }


    .header {
        margin-bottom: 25px;
    }


    h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }


    .intro {
        font-size: 1.05rem;
    }


    .item a {
        padding: 12px 4px;

        font-size: 1rem;
    }

}


/*
 * ============================================================
 * SEHR KLEINE BILDSCHIRME
 * ============================================================
 */

@media (max-width: 420px) {

    body {
        padding: 20px 10px;
    }


    .intro {
        font-size: 1rem;
    }


    h1 {
        font-size: 1.9rem;
    }

}
