.blog_preview_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 60px;

    border-top: 1px solid black;
    padding-top: 60px;
    margin-top: 60px;

    width: 100%;

    background-color: white;
}


.blog_post_preview_container {
    width: 320px;
}

.blog_post_preview_img {
    width: 100%;
    margin-bottom: 20px;
}

.blog_post_preview_name {
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
}

.blog_date_title {
    font-size: 16px;
    font-weight: 450;
    line-height: 35px;
    letter-spacing: 1.6px; 

    width: 100%;
    text-align: center;
}

.blog_anchor_list {
    list-style-position: outside;
    padding-left: 24px;
	padding-right: 12px;
    padding-top: 60px;
}

.blog_list_el {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;

    text-decoration: underline 1px solid black;
    text-underline-offset: 2px;

    margin-left: -10px;
	margin-left: 0;
}

@media only screen and (max-width: 750px) {
    .blog_post_preview_container {
        margin: 0 auto;
        width: 440px;
    }
}

@media only screen and (max-width: 700px) {

    .blog_list_el {
        font-size: 18px;
    }

    .blog_anchor_list {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 550px) {
    .blog_post_preview_container {
        max-width: 440px;
    }
}

@media only screen and (max-width: 455px) {
    .blog_post_preview_name {
        font-size: 18px;
    }
}