.post-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2x);
    border-radius: var(--radius-1x);
    cursor: pointer;
}

.post-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: var(--spacing-0x);
}

.post-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: var(--font-line-height-sm);
    margin: var(--spacing-0x);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-card .content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: var(--text-primary);
    font-family: var(--font-family-body), var(--font-family-reserve);
    font-size: var(--font-size-sm);
    font-weight: 400;
    line-height: var(--font-size-xl);
    margin: var(--spacing-0x);
}

.post-card .post-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-card .post-categories {
    margin-top: auto;
    margin-bottom: var(--spacing-2x);
}

@media (max-width: 768px) {
    .post-card .post-categories .post-category {
        height: 32px;
    }
}