
#newsoutsidecontainer {
    padding-left: 15px;
    padding-right: 15px;
}

#news-label {
    display: flex;
    max-width: var(--main-width);
    margin: auto;
}


#news {
    /* background: blue; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    column-gap: 30px;
    justify-content: space-between;
    max-width: var(--main-width);
    margin: auto;
    border: none;
    padding: 0;
}

#news .newsitem {
    /* background: red; */
    display: flex;
    flex-direction: column;
}


#news .newsitem .newsheader {
}


#news .newsitem img {
    width: 100%;
}

#news .newsitem p {
    margin: 0;
}

#rssnews-container {
    grid-column-start: 1;
}
