.news-section {
    width: 100%;
    padding: 1em;
    background: #D8B571;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 0;
    min-height: 780px;
    overflow: hidden;
}
.news-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(images/news-asset.png);
    background-size: 100% 180%;
    transform: rotateY(180deg);
    background-position: center; 
    background-repeat: no-repeat; 
    opacity: 0.3; 
    z-index: -1;
}
.news-section h2 {
    font-size: 3rem;
    color: #F8F8F8;
    font-family: "Bagel Fat One";
    font-weight: 400;
    margin-bottom: 0.5em;
    margin-top: 2rem;
}
.nyhets-block {
    background: transparent;
    display: flex;
    flex-direction: column;
    font-family: 'Afacad Flux';
    height: auto;
    font-size: 1.125rem;
    gap: 1em;
    padding: 1em;
    width: clamp(200px, 100%, 600px);
}
.nyhets-block article {
    display: flex;
    background: #F8F8F8;
    width: 100%;
    flex-wrap: wrap;
    padding: 1em;
}
.nyhets-block article:hover {
    background: #FF9DEA;
}
.nyhets-block figure {
    display: flex;
    width: 40%;
    height: auto;
}
.nyhets-block figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nyhets-block aside {
    display: flex;
    flex-wrap: wrap;
    width: 60%;
    height: 8rem;
    overflow: hidden;
    padding: 0em 1em 0em;
}
.nyhets-block aside button {
    display: none;
}
.summary-news {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: rgba(0, 0, 0, 0.5);
    width: 100%;
    border-bottom: 1px solid black;
}
.news-button-send {
    font-family: 'Afacad Flux';
    align-self: center;
    color: #f8f8f8;
    font-size: 1.125rem;
    background-color: #D63D3D;
    border: none;
    border-radius: 2em;
    box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.19);
    width: 120px;
    height: 40px;
    flex-shrink: 0;
}
.news-button-send{
    cursor: pointer;
}
.news-event-quote{
    font-family: 'Afacad Flux';
    font-size: 1.125rem;
    align-self: center;
    text-align: center;
}

@media screen and (min-width: 1200px){
    .news-section {
        min-height: 65em;
    }
    .nyhets-block {
        flex-direction: row;
        justify-content: center;
        position: relative;
        width: 100%;
        background: transparent;
        height: 90vh;
    }
    .nyhets-block article {
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        height: 70%;
        background: #F8F8F8;
        margin: 0em 1em 0em;
        max-width: 400px;
        font-size: 1rem;
    }
    .nyhets-block aside {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        overflow: hidden;
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }
    .nyhets-block aside h3 {
        align-self: center;
    }
    .nyhets-block figure {
        width: 90%;
    }
    .summary-news {
        width: 90%;
        position: absolute;
        bottom: 1em;
        border-bottom: 1px solid black;
    }
    .news-button-send {
        display: none;
    }
    .nyhets-block aside button {
        font-family: 'Afacad Flux';
        display: flex;
        align-items: center;
        align-self: center;
        justify-content: center;
        position: absolute;
        bottom: -4rem;
        color: #f8f8f8;
        font-size: 1.125rem;
        background-color: #D63D3D;
        border: none;
        border-radius: 2em;
        box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.19);
        width: 120px;
        height: 40px;
        margin: 1em 0em 1em;
    }
    .nyhets-block aside button:hover {
        cursor: pointer;
    }
    .news-event-quote {
        font-size: 1.375rem;
        position: absolute;
        bottom: 0;
    }
}