/* Mobile */
.publications-page {
    position: relative;
    padding: 4rem 0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,0) 90%, rgba(255,255,255,1) 100%);
}

.publications-page__header {
    margin: 1rem 1rem 5rem;
}

.publications-page__header h2 {
    max-width: 650px;
}

.publications-page__body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2rem;
}

.publications-page__item {
    width: 100%;
    display: block;
}

/* Tablet */
@media only screen and (min-width: 475px) {
    .publications-page__item {
        width: 33%;
    }
}

/* Desktop */
@media only screen and (min-width: 1024px) {
    .publications-page__body {
        margin-top: 4rem;
    }
    
    .publications-page__item {
        width: 30%;
    }
    .publications-page__header {
        margin: 1rem 0 8rem calc(27.5vw - 1rem);
    }


    .publications-page__header h2 p {
        margin-bottom: 1em;
    }
}

/* Desktop Large */
@media only screen and (min-width: 1440px) {
    .publications-page {
        padding: 6rem 4rem;
    }

    .publications-page__item {
        width: 25%;
    }
    
    .publications-page__header {
        margin: 1rem 0 8rem calc(25vw - 3.5rem);
    }
}