.blog-container{
    width: 100%;
}
.blog-wrapper{
    display: grid; grid-gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}
.blog-list{
    grid-column: 1/3; height: auto;
    display: flex; gap: 10rem; padding: 4rem;
    flex-direction: column;
}
.recent-post{
    grid-column: 3; height: auto; padding: 2rem;
}
.blog-element{
    padding: 0.35rem; height: auto;
    display: flex; flex-direction: column;
    justify-content: center;
    align-items: center;
}
.blog-gap{
    gap: 2rem;
}
.blog-element img{
    width: 100%; min-height: 300px; max-height: 500px;
}
.blog-attach, .blog-attach2{
    width: 80%; border-radius: 0.35rem;
    background: white; margin-top: -7.5%;
    box-shadow: 5px 5px 10px rgba(192, 180, 180, 0.3); min-height: 300px; 
    height: auto; padding: 2rem;
    display: flex; flex-direction: column; gap: 0.95rem;
}
.blog-attach2{
    width: 100%; margin-top: 0; 
    padding: 0.5rem; box-shadow: unset;
}
.blog-attach2:hover{
    box-shadow: 2.5px 2.5px 5px rgba(192, 180, 180, 0.3); 
}
.blog-title{
    font-weight: bold; font-size: 1.55rem;
}
.blog-content{
    font-size: 1rem;
}
.blog-bottom{
    width: 100%; display: flex;
    justify-content: space-between;
}
.blog-move-left{
    justify-content: flex-end;
}
.blog-bottom-left{
    display: flex; align-items: center; gap: 0.5rem;
}
.recent-post{
    display: flex; flex-direction: column;
    gap: 5rem; width: 100%;
}
.recent-post-wrapper{
    background: white;  width: 100%; height: auto; padding: 1.5rem;
    box-shadow: 5px 5px 10px rgba(192, 180, 180, 0.3);
    display: flex; flex-direction: column; gap: 2.5rem;
}
.recent-post-title{
    width: 100%; padding: 0.45rem; 
    border-left: 0.2rem solid red;
    font-weight: bold; font-size: 1.55rem;
}
.recent-post-sub-title, .recent-post-sub-title a{
    font-weight: bold; font-size: 0.85rem;
}
.recent-post-grid{
    display: grid; grid-template-columns: 1fr;
    grid-gap: 2.5rem; height: auto;
}
.recent-post-element{
    display: flex; flex-direction: row;
    gap: 1.5rem; padding: 0.25rem;
    border-radius: 0.25rem; cursor: pointer;
}
.recent-post-element:hover{
    background: lightgray;
}
.recent-post-element img{
    width: 100px !important; height: 100px !important;
}
.recent-post-info{
    display: flex; flex-direction: column;
    gap: 0.2rem; height: 100px; justify-content: center;
    align-items: flex-start; flex: 1;
}
.recent-post-next{
    display: flex; align-items: center; gap: 0.5rem;
    flex-direction: row;
}
@media only screen and (max-width: 1200px) {
    .recent-post-next{
        flex-direction: column;
        gap: 0.2rem;
    }
}
@media only screen and (max-width: 1024px) {
    .blog-attach{
        width: 95%;
    }
    .blog-wrapper{
        grid-template-columns: 1fr; grid-gap: 2.5rem;
    }
    .blog-list{
        grid-column: 1; padding: 0.85rem;
    }
    .recent-post{
        grid-column: 1; padding: 0.85rem;
    }
}