/* Separate introduction and recent articles into separate columns if screen not mobile */

@media only screen and (min-width: 768px) {
    .introduction {
        display: grid;
        grid-template-columns: 3fr 1fr;
        grid-template-rows: auto auto;
    }
}

/* There should only be padding right if there are multiple columns */

.introduction article {
    padding: 0 20px 0 0;
}

@media only screen and (max-width: 768px) {
    .introduction article {
        padding: 0;
    }
}

.blog-items li {
    list-style: none;

    display: flex;
    flex-direction: column;

    margin: 10px 0;
}

.blog-items time {
    font-size: 0.7rem;
}