:root {
    --font-title: 24px;
    --blog-color-title: #08374d;
    --blog-color-content: #fff;
    --blog-color-border: #d1e2ec;
    --blog-color-button: #08628b;
    --blog-color-button-hover: #0b74a5;
    --blog-color-button-font: #eaeaea;
    --blog-color-button-font-hover: #fff;

}
.blog-container {
    margin: 0px;
    padding: 0px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.blog-content {

    width: 90%;
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 2em;
    display: flex !important;
    flex-direction: row;
    background-color: var(--blog-color-content);
    border-radius: 1em;
    border: 3px solid var(--blog-color-border);

}

.post-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;

}

.post-thumbnail img {
    border-radius: 1em;
    width: 20vw;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;


}


.blog-entry {

    padding-left: 2em;
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 75%;
    min-width: 200px;

}

.entry-text {

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-entry h2 {
    color: var(--blog-color-title);
    font-size: var(--font-title) !important;
    font-weight: bold;
}

.blog-entry p {
    color: #000 !important;
    font-size: 16px !important;
}

.entry-learn-more {
    display: flex;
    justify-content: start;
}

.learn-more-button {
    font-size: 16px !important;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    padding: 3px 20px;
    color: var(--blog-color-button-font);
    background-color: var(--blog-color-button);
    border-radius: 4px;
    text-decoration: none;
}

.learn-more-button:hover {
    color: var(--blog-color-button-font-hover);
    background-color: var(--blog-color-button-hover);
}

@media screen and (max-width: 768px) {

    .post-thumbnail {
        width: 100%;
    }

    .post-thumbnail img {
        width: 30vw;
    }

    .blog-content {
        flex-direction: column;
    }

    .blog-container {
        justify-content: center;
    }

    .blog-entry {
        width: 100%;
        padding: 1em;
    }

    .entry-learn-more {
        justify-content: center;
    }

    .blog-entry p,
    .blog-entry h2 {
        text-align: center;
    }

}