.newsRectangleBoxContainer {
    background: #fff;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.newsRectangleBoxPadding{
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.newsRectangleBoxTitle {
    font-family: var( --font-family-roboto);
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.newsRectangleRight{
    display: flex;
    flex-direction: row;
    gap: 1em;

    align-items: center;
    justify-content: center;
}
.socialLogo{
    /* width: 40px; */
    height: 40px;

}
.socialContainer{
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.newsButtons {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.newsButtons a {
    display: inline-block;
    border-radius: 23px;
    cursor: pointer;
    text-align: center;
}



@media screen and (max-width: 800px) {
    .newsRectangleBoxPadding{
        flex-direction: column;
    }
    .newsRectangleRight{
        flex-direction: column;
    }
    .socialContainer{
        justify-content: space-around;
        padding-top: 20px;
    }
    .newsRectangleBoxTitle {
        font-family: var( --font-family-roboto);
        font-style: normal;
        font-weight: 700;
        font-size: 38.4px;
        line-height: 55px;
        /* identical to box height, or 144% */

        letter-spacing: 1.96895px;
        text-transform: uppercase;

    }
    .newsRectangleLeft{
        text-align: center;
    }

    .newsRectangleBoxPadding{
        padding: 20px;
    }
    .socialLogo{
        width: 28px;
        height: 28px;
    }
    .socialContainer{
        gap: 1.5em;
    }
    .newsButtons {
        flex-direction: column;
        gap: 1em;
    }
    .newsButtons {
        width: 100%;
    }
}
