/* ============================================
   POST-INFO COMPONENT - Shared styles for news meta info
   ============================================ */

.post-info {
    gap: 12px;
}

.post-category {
    margin-bottom: 0;
}

.category-link {
    font-size: 13px;
    font-weight: 400;
    color: #8D999E;
    transition: all 0.3s ease;
    text-decoration: none;
}

.category-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    line-height: 18px;
    color: #8D999E;
}

.meta-item i {
    font-size: 12px;
    color: #8D999E;
}