section article {
    width: 100%;
    margin: 48px;
}

section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 48px);
}

section article h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-family: Lexend;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: left;
}

section article p {
    width: 100%;
    flex-shrink: 0;
    color: #000;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
}

section article .more-info {
    display: flex;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    color: #000;
    font-family: Lexend;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: right;
}

section img {
    width: auto;
    border-radius: 43px;
    height: inherit;
}

section a {
    height: 210px;
    width: auto;
}

#neu-title {
    margin-top: 80px;
    float: left;
}

#all-news {
    float: right;
    margin-top: 80px;
    margin-bottom: -20px;
    color: black;
    font-family: Lexend;
    text-decoration: none;
    opacity: 0.8;
}

#big-more-news {
    /* Material 3 Button Styles */
    display: flex;
    font-family: Lexend;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    color: #255616;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    margin: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 48px;
    border: 1px solid gray;
}

#big-more-news:hover {
    box-shadow: 0px 5px 10px #00000054;
}

main {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}

main h1 {
    color: #000;
    font-family: Lexend;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    max-width: calc(100vw - 16px);
}

@media screen and (max-width: 825px) {
    section {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: center;
        margin-bottom: -24px;
        width: 100%;
    }

    section>a {
        display: none;
    }

    #neu-title {
        margin-bottom: -32px;
    }

    section article .more-info {
        margin-top: -16px;
    }

    #big-more-news {
        margin-bottom: 24px;
    }

    section article {
        width: calc(100vw - 48px);
        margin: 24px;
    }
}