.news {
    background-color: #f8f8f8;
}

.news__entry {
    border-bottom: 1px solid #c8c8c8;
    position: relative;
}

.news__entry.state--open-news .news__bottom {
    height: auto;
}

.news__header {
    font-size: var(--font-size-l);
    padding: 2rem var(--page-padding);
    display: block;
    color: #000;
    line-height: 1.2;
}

.news__header .news__date {
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.news__date {
    font-size: var(--font-size-m);    font-weight: 600;
    margin-bottom: 1rem;
}

.news__bottom {
    height: 0;
    overflow: hidden;
    transition: height 400ms ease;
}

.news__bottom-inner {
    padding: 0 var(--page-padding) 2rem;
}

.news__close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 200ms ease;
}

.state--open-news .news__close {
    opacity: 1;
}

.news__close::after,
.news__close::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 9px;
    left: 0;
}

.news__close::before {
    transform: rotate(45deg);
}

.news__close::after {
    transform: rotate(-45deg);
}

.news__picture {
    display: block;
    margin-bottom: 2rem;
    width: 100vw;
    margin-left: calc(var(--page-padding) * -1);
}

.news__picture.state--awards {
    padding: var(--page-padding);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__image {
    width: 100%;
}

.state--awards .news__image {
    max-width: 100%;
    width: auto;
}

.news__newsletter {
    padding: 2rem var(--page-padding);
    border-bottom: 1px solid #c8c8c8;
}

.news__newsletter-text {
    font-size: var(--font-size-l);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news__newsletter .mc-field-group label {
    display: inline-block;
    margin-right: 1rem;
}

.news__newsletter .mc-field-group input[type="email"] {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .news__header {
        text-align: center;
        height: auto;
        transition: height 400ms ease, opacity 200ms ease, padding 400ms ease;
    }

    .state--open-news .news__header {
        height: 0;
        padding: 0;
        opacity: 0;
        overflow: hidden;
    }

    .news__bottom-inner {
        display: flex;
        padding-bottom: 0;
    }

    .news__close {
        pointer-events: auto;
        right: 1rem;
        top: 1rem;
    }

    .news__content-wrapper {
        width: 50%;
        order: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 3rem 0;
        padding-right: 2rem;
    }

    .news__title {
        font-size: var(--font-size-xl);
        line-height: 1.2;
        margin-bottom: 4rem;
    }

    .news__image-container {
        width: 50%;
        order: 2;
        display: flex;
        align-items: stretch;
    }

    .news__picture {
        width: 50vw;
        margin-right: calc(var(--page-padding) * -1);
        margin-left: 0;
        margin-bottom: 0;

        display: flex;
        align-items: center;
        justify-content: center;
        padding: 3rem;
        background-color: #fff;
    }

    .news__image {
        max-height: 600px;
        width: auto;
        max-width: 100%;
    }

    .news__newsletter {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .news__newsletter-text {
        margin-bottom: 0;
    }

    .news__newsletter #mc_embed_signup {
        flex: 1;
        padding-left: 2rem;
    }

    .news__newsletter .mc-field-group {
        display: flex;  
        justify-content: flex-end;
        align-items: center;
    }

    .news__newsletter .mc-field-group label {
        margin-bottom: 0;
    }

    .news__newsletter .mc-field-group input[type="email"] {
        display: inline-block;
        max-width: 300px;
        margin-bottom: 0;
        padding: 1rem;
        height: 54px;
        margin-right: -1px;
    }

    .news__newsletter .mc-field-group input[type="submit"] {
        display: inline-block;
        width: auto;
        padding: 1rem;
        margin-bottom: 0;
    }
}