.post-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    
} 

.archive-blogs-filter label {
    cursor: pointer;
}

.post-thumbnail {
    overflow: hidden;
    border-radius: 5px;
}

.post-thumbnail img {
    transform: scale(1);
    border-radius: 5px;
    height: 158px;
    object-fit: cover;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
}

.post-item:hover img {
    transform: scale(1.1);
}

.post-item {
    display: block;
}

.post-title  {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #001B2F !important;
}

.post-excerpt {
    font-size: 14px;
    color: #808d97;
}

.read-more {
    color: #E70491;
    font-size: 14px;
    font-weight: bold;
}

.read-more svg {
    margin-left: 5px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
}

.post-item:hover .read-more svg {
    margin-left: 10px;
}

.post-container--post {
    opacity: 1;
}

.post-container--loading {
    opacity: 0.8;
}
@media only screen and (max-width: 600px){

    .post-container {
        grid-template-columns: 1fr;
    }

}