#blog-container .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-card a {
    text-decoration: none;
    color: black;
}

.recent-blogposts-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 4rem;
}

.featured-blogposts-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 2rem;
}

.snippet_text, .featured_text, .article_text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article_text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.snippet_text {
    padding: 2rem;
}

.snippet_text h3 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.post_details {
    font-size: 0.85rem;
}

.snippet_image, .main_article_figure img{
    max-height: 50vh;
    aspect-ratio: 20/9;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.main_article_figure {
    margin-bottom: 1rem;
}

.featured-blogpost {
    width: 400px;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
}

.featured-blogpost h3 {
    font-size: clamp(1rem, 4vw, 1.25rem);
}

.featured_image {
    aspect-ratio: 16/9;
    max-height: 11vh;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media only screen and (min-width: 830.1px) {
    #blog-container .container {
        flex-direction: row;
        gap: 4rem;
    }
}