.post-categories {
    display: flex;
    gap: .5rem;
}

.post-category {
    display: flex;
    align-items: center;
    padding: .5rem;
    background: var(--color-primary);
    border-radius: 50px;
}

.post-category img {
    width: 4rem;
    height: 1.5rem;
}

@media (min-width: 576px) {
    .post-category {
        padding-inline: 1rem;
    }

    .post-category img {
        width: 5rem;
        height: 2rem;
    }
}