.z_wrapper{
    width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zeitung{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.zeitung h1{
    margin-top: 0;
    line-height: 1.3em;
}
.z_cover{
    width: 20%;
}
.z_cover img{
    width: 100%;
    height: auto;
}
.z_info{
    width: 35%;
    margin-right: 19%;
}
.z_facts{
    width: 20%;
}
.z_facts p{
    margin: 0;
}
.za_cntr{
    width: 100%;
    height: 3em;
    padding: 0 0.7em 0 0;
    border-bottom: 1px solid rgb(224, 224, 224);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease-in-out;
}
.za_cntr:hover{
    color: #E72227;
}
.z_artikel{
    width: 100%;
    margin-bottom: 3em;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.8s ease-in-out;
}
.ac_open{
    max-height: 45.4em; /* Höhe für 15 Artikel */
    transition: max-height 1s ease-in-out;
}
.z_artikel a{
    width: 100%;
    /* min-height: 3em; */
    padding: 1em 0.8em 1em 0.8em;
    box-sizing: border-box;
    text-decoration: none;
    border-bottom: 1px solid rgb(224, 224, 224);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease-in-out;
    line-height: 1.25em;
}
.z_artikel a:hover{
    background-color: #e7e7e7;
}
.z_artikel h2{
    margin: 0;
}
.z_artikel img{
    width: 20px;
    height: 20px;
    margin-left: 1em;
}

.a_title{
    text-align: center;
}
.bto{
    margin: 6rem 0 -8vh 0;
}
.bto img{
    width: 1em;
    height: auto;
    margin: 0 0.3em -0.1em 0;
}
.bto a{
    text-decoration: none;
    border-bottom: 1px solid #111419;
}
.bto a:hover{
    border-color: transparent;
}
.mtz{
    margin-top: 5rem;
}

@media screen and (max-width: 1280px) {
    .z_wrapper{
        width: 90%;
    }
}
@media screen and (max-width: 1024px) {
    .z_info{
        width: 45%;
        margin-right: 9%;
    }
}
@media screen and (max-width: 767px) {
    .z_cover{
        width: 50%;
        margin-right: 50%;
    }
    .z_info, .z_facts{
        width: 70%;
        margin-right: 30%;
    }
    .za_cntr{
        margin-top: 1em;
        padding: 0 0 0 0;
    }
    .zeitung{
        margin-top: 3rem;
    }
    .zeitung h1{
        margin-top: 1em;
    }
    .z_artikel a{
        padding: 1em 0 1em 0;
    }
    .z_artikel img{
        width: 15px;
        height: 15px;
    }
}
@media screen and (max-width: 575px) {
    .z_cover{
        width: 100%;
        margin-right: 0;
    }
    .z_info, .z_facts{
        width: 100%;
        margin-right: 0;
    }
}