/* Make the footer always stay at the bottom. This is for the short content pages*/
body {
    position: relative;
    min-height: 100vh;
}
article {
	padding-bottom: 150px;
	margin-bottom: 0;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Adjust the article padding when there is no sidebar */
@media screen and (min-width: 769px) {
    article {
        padding-left: 30px;
    }
}