.main_area {
    background-color: #f2f2f2;
}
.blog_inner {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    min-height: 800px;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: white;
}
.main_header {
    color: #222;
    font-family: var(--standard-heading-font);
    padding-top: 45px;
    font-size: 36px;
}
.category_blog_list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 50px;
    width: 100%;
}
.blog_post_container {
    display: grid;
    position: relative;
    width: 85%;
    height: auto;
    background-color: #eee;
    transition: 0.3s;
}
.blog_post_image {
    width: 100%;
    height: auto;
}
.blog_post_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.anchor_on_full_div {
    width:100%;
    height:100%;
    top:0;
    left: 0;
    position: absolute;
}
.blog_post_heading {
    font-family: var(--standard-heading-font);
    text-decoration: none;
    color: #363636;
    font-size: 1rem;
}
.blog_post_content {
    padding: 10px;
}
@media screen and (max-width: 1350px) {
    .category_blog_list {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }
    .main_header {
        display: flex;
        justify-content: center;
    }
    .blog_post_heading {
        font-size: 1.3rem;
    }
}
@media screen and (max-width: 600px) {
    .category_blog_list {
        grid-template-columns: 1fr;
    }
}