/*
 * ============================================================
 * NEWS – STYLESHEET
 * ============================================================
 */


* {
    box-sizing: border-box;
}


html {
    min-height: 100%;
}


body {
    min-height: 100vh;

    margin: 0;

    padding: 40px 20px;

    background: #ffffff;

    color: #212529;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}


/*
 * ============================================================
 * CONTAINER
 * ============================================================
 */

.container {
    width: 100%;

    max-width: 900px;

    margin: 0 auto;
}


/*
 * ============================================================
 * KOPF
 * ============================================================
 */

.header {
    margin-bottom: 30px;
}


h1 {
    margin: 0 0 10px;

    font-size: 32px;

    font-weight: 600;

    line-height: 1.2;
}


.intro {
    margin: 0;

    color: #6c757d;

    font-size: 17px;

    line-height: 1.6;
}


/*
 * ============================================================
 * LISTE
 * ============================================================
 */

.item-list {
    margin: 0;

    padding: 0;

    list-style: none;

    border-top: 1px solid #dee2e6;
}


.item {
    margin: 0;

    padding: 0;

    border-bottom: 1px solid #dee2e6;
}


.item a {
    display: block;

    padding: 15px 5px;

    color: #0d6efd;

    font-size: 19px;

    line-height: 1.5;

    text-decoration: none;
}


.item a:hover {
    text-decoration: underline;
}


/*
 * ============================================================
 * KEINE BEITRÄGE
 * ============================================================
 */

.empty {
    padding: 25px;

    background: #f8f9fa;

    border: 1px solid #dee2e6;

    border-radius: 8px;

    color: #6c757d;

    line-height: 1.6;

    text-align: center;
}


/*
 * ============================================================
 * RESPONSIVE
 * ============================================================
 */

@media (max-width: 650px) {

    body {
        padding: 25px 15px;
    }


    h1 {
        font-size: 28px;
    }


    .item a {
        font-size: 17px;
    }

}
