.postList {
    display: flex;
    flex-direction: column;
}

.postList__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.postList__item {
    margin-bottom: 1em;
}

.quicklink__titleWrapper {
    overflow: hidden;
}

.quicklink__title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .postList__list {
        display: grid;
        grid-template-columns: calc(50% - 0.5em) calc(50% - 0.5em);
        grid-gap: 0 1em;
    }
}
