
/* NEWSGRID */
.fp-block-newsgrid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
}


/* NEWSLINE */

.newsline-single {
    display: flex;
    align-items: center;

    width: 100%;
    height: 100%;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--font-color-body);
    background-color: white;
    transition: var(--transition-animation);
    border: var(--border-size);
    border-color: var(--border-color-light)
    
}

.newsline-single-inner {
    padding: 1rem;
}

.newsline-single-text h1 {
    /* font-family: var(); */
    font-size: var(--font-size-l);
    letter-spacing: var(--font-kerning-headline);
}


.newsline-single-text h2 {
    font-size: var(--font-size-s);
    color: var(--font-color-sitename);
    letter-spacing: var(--font-kerning-headline);
}

.newsline-single-button {
    /* display: flex; */
    display: none;
    flex-direction: row;
    justify-content: right;
}

/* ---------------- MEDIA */

/* TABLET */
@media screen and (min-width: 700px) {

    
}

/* DESKTOP */
@media screen and (min-width: 900px) {




    
}

/* DESKTOP */
@media screen and (min-width: 1200px) {

    .fp-block-newsgrid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .newsline-single-text h1 {
        /* font-family: var(); */
        font-size: var(--font-size-l);
    }

}