.pressesprecher {
    width: 200px;
    height: 260px;
    background-color: darkgrey;
    border-radius: 12px;
    overflow: hidden;
}

.pressesprecher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medien_downloads_box {
    margin-block-start: 0.83em;
    background-color: rgb(245, 241, 196);
    border-radius: 15px;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.medien_downloads_titel {
    color: rgb(142, 106, 136);
}

.medien_downloads_box p {
    color: rgb(142, 106, 136);
}

.medien_downloads_box p a {
    color: rgb(142, 106, 136);
}


.medienmitteilung {
    color: black;
    text-decoration: none;
    margin-top: 40px;
    margin-bottom: 40px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.medienmitteilung_background {
    position: absolute;
    width: 100%;
    height: 65px;
    overflow: hidden;
}

.medienmitteilung_roundedbox {
    width: 98%;
    height: 100px;
    border: rgb(112, 112, 112) solid 3px;
    border-radius: 20px;
}

.medienmitteilung_headerrow {
    margin: 15px 0px 10px 0px;
    width: 95%;

    display: flex;
    flex-direction: row;

    font-weight: 600;
}

.medienmitteilung_date {
    width: 30%;
}

.medienmitteilung_titel {
    width: 70%;
}

.medienmitteilung_contentrow {
    width: 95%;
    line-height: 170%;
}

.pressespiegel {
    color: black;
    text-decoration: none;

    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pressespiegel_eintrag {
    width: 31%;
    height: 240px;
}
@media (max-width: 900px) {
    .pressespiegel_eintrag {
        width: 47.32824%;
    }
}
@media (max-width: 600px) {
    .pressespiegel_eintrag {
        width: 100%;
    }
}

.pressespiegel_eintrag_inhalt {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pressespiegel_eintrag_background {
    position: absolute;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.pressespiegel_eintrag_roundedbox {
    width: 98%;
    height: 260px;
    border: rgb(112, 112, 112) solid 3px;
    border-radius: 20px;
}

.pressespiegel_eintrag_titel {
    margin-top: 20px;
    font-weight: 600;
    font-size: larger;
    color: rgb(55, 55, 54);

    width: 85%;
}

.pressespiegel_eintrag_untertitel {
    margin-top: 10px;
    font-size: smaller;
    color: rgb(126, 126, 126);

    width: 85%;
}

.pressespiegel_eintrag_link {
    margin-top: 20px;
    font-style: italic;
    font-weight: 600;
    font-size: large;
    color: rgb(219, 195, 14);
    line-height: 150%;
    overflow-wrap: break-word;
    word-wrap: break-word;

    width: 85%;
}