/* Posts Section */
.posts{
    margin: 4rem 4rem 0rem 4rem;
}
.posts-container{
    column-count: 4;
    column-gap: 1rem;
}
.post-card{
    display: inline-block;
    width: 20vw;
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.2s;
    text-decoration: none;
    color: #3d3d3d;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
}
.post-card:hover .post_like-icon{
    display: block;
}
.post-card:hover .post-card > img{
    transform: scale(1.2);
}
.post-card > img{
    width: 100%;
    min-height: 12rem;
    object-fit: cover;
    border-radius: 20px;
    overflow: hidden;
}
.post_like-icon{
    display: none;
    position: absolute;
    top: 4%;
    right: 5%;
    transform: translate(-5%,-4%);
    font-size: 1.5rem;
    border-radius: 50%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
}

.post_picture-icon, .post_video-icon, .post_audio-icon{
    position: absolute;
    top: 4%;
    left: 5%;
    transform: translate(-5%,-4%);
    font-size: 1.5rem;
    border-radius: 20%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
}
.post-date{
    display: block;
    margin-left: 1rem;
    margin-top: -3.7rem; 
}
.post-date > span{
    color: white;
    font-size: 1.03rem;
    font-weight: 600;
}
.post_calender-icon{
    font-size: 1.5rem;
    border-radius: 20%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
    margin-right: 0.6rem;
}
.post-heading{
    margin-top: 2rem;
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #3d3d3d;
    text-align: center;
}
.post-info{
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}
.post-info > img{
    width: 3rem;
    border-radius: 50%;
    margin-right: 0.6rem;
}
.post-info-name{
    font-size: 0.9rem;
    color: #3d3d3d;
    font-weight: 600;
}
.post-info-likesView{
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background-color: rgb(243, 242, 242);
}
.post-info-likesView > small{
    font-size: 1rem;
    width: 50%;
    text-align: center;
}
.post-info-likesView > small > i{
    font-size: 1.1rem;
    margin-right: 0.5rem;
}
.post-info-likesView > small:not(:last-child){
    border-right: 1px solid #3d3d3d;
}
/* Post Media queries */
@media(max-width: 1020px){
    .posts-container{
        column-count: 3;
    }
}
@media(max-width: 800px){
    .posts{
        margin: 1rem;
    }
}
@media(max-width: 700px){
    .posts-container{
        column-count: 2;
    }
}
@media(max-width: 560px){
    .posts-container{
        display: flex;
        flex-direction: column;
    }
    .post-card{
        display: block;
        margin: 1rem auto;
        width: 60%;
    }
}
