.post-categories {
    display: flex;
    align-items: center;
    gap: var(--spacing-05-x);
    flex-wrap: wrap;
}

.post-categories .post-category {
    display: flex;
    padding: var(--spacing-1x) var(--spacing-2x);
    align-items: center;
    border-radius: var(--radius-50);
    border: 2px solid var(--text-primary);
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: var(--font-size-xl);
    white-space: nowrap;
    height: 40px;
    margin: var(--spacing-0x);
}

@media (max-width: 768px) {
    height: 36px;
}