.blog-category-wrapper {
    padding: 30px 0 100px 0;
}
.blog-category-wrapper .h2 {
    margin-bottom: 20px;
}
.post-card {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 11px);
}
.image-box {
    position: relative;
}
.image-box .post-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 6px 2px 6px;
    background: var(--primary);
    width: fit-content;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 3px;
    font-size: 13px;
}
.image-box img {
    border-radius: 5px;
}
.post-date {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #afafaf;
}
@media (max-width: 1480px) {
    .post-date {
        margin-bottom: 5px;
    }
}
@media (max-width: 1279px) {
    .post-card {
        width: calc(50% - 8px);
    }
    .image-box .post-tags {
        top: 15px;
        left: 15px;
    }
}
@media (max-width: 667px) {
    .blog-category-wrapper {
        padding: 30px 0 50px 0;
    }
    .blog-category-wrapper .h2 {
        margin-bottom: 15px;
    }
    .post-card {
        width: calc(100% - 0px);
    }
}