.news{
    background-image: url("../assets/News-background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100%;
}

.news-content{
    display: flex;
    flex-flow: row wrap;
    min-height: 75vh;
    align-items: flex-start;
    background-color: rgba(61, 61, 61, 0.5);
}

.news-h1-container{
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.news-h1{
    font-size: 40px;
}

.news-sw-gc-container{
    flex-basis: 25%;
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.news-h2-p-bb-container{
    flex-basis: 70%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    min-height: 424px;
}

.news-h2-p-container{
    min-width: 327px;
    inline-size: 50vw;
    overflow-wrap: break-word;
}

.news-buy-button{
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
}

@media (max-width: 1415px) {
    .news-sw-gc-container{
        flex-basis: 100%;
    }

    .news-h2-p-bb-container{
        flex-basis: 100%;
        justify-content: space-evenly;
        align-items: center;
    }

    .news-content{
        flex-flow: column;
        align-items: center;
    }

    .news-h2-p-container{
        inline-size: 75vw;
    }
}

@media (max-width: 765px) {
    .news-h1{
        font-size: 30px;
    }
}

