
body.blog{
    background-color: white;
}

.page_title{
    font-size: 2.5rem;
    padding: 64px 64px 0px 64px;
}

.posts-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 36px;
    padding: 64px;
}



.the_post_container{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

    background: linear-gradient(45deg,rgba(3, 15, 71, 1) 0%, rgba(64, 8, 45, 1) 100%);
    border-radius: 24px;
    overflow: hidden;   

    position: relative;
}

.the_post_container:nth-child(2n + 1){
    background: linear-gradient(45deg,rgba(71, 3, 67, 1) 0%, rgba(17, 0, 51, 1) 100%);
}

.post_content_container{
    padding: 8px 8px 16px 8px;
}

.the_post_container .post_thumbnail_image{
    width: 100%;
    height: 200px;

    background: grey;
}

.the_post_container .post_thumbnail_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.the_post_container .post_category_blog{
    position: absolute;

    top: 0;
    left: 0;

    background: rgba(255,255,255,0.5);
    color: rgb(1, 1, 53);

    padding: 4px 12px;
    font-size: 0.9rem;
    border-radius: 0px 8px 8px 0px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.the_post_container .post_category_blog a{
    text-decoration: none;
    color: rgb(1, 1, 53);
    font-weight: 600;
}

.post_content_container h1{
    font-size: 1.5rem;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: -0.15px;
    font-weight: 600;
}

.post_content_container p{
    font-size: 1rem;
    margin-top: 8px;
    color: rgb(239, 239, 239);
}

.post_content_container{
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .posts-container{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 36px;
    padding: 24px;
}
}