.blog-post {
    padding: 1rem;
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    color: white;
    height: auto;
    text-decoration: none;
}

.blog-post img {
    padding-right: 1rem;
    max-height: 100px;
}

.blog-post-ref {
    text-decoration: none;
}

.blog-post-header {
    margin: none;
    display: flex;
    align-items: center;
    color: white;
    height: auto;
    text-decoration: none;
}

.blog-post-header #blog-post-date {
    padding-left: 1rem;

}

@media screen and (max-width: 600px) {
    .blog-post-title {
        display: inline;
    }

    .blog-post-title #blog-post-date {
        padding-left: 0;

    }

}