.hep-post-categories-list {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hep-categories-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid #6366f1;
    display: inline-block;
}

.categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: #6366f1;
    color: #ffffff;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.category-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.category-name {
    flex: 1;
}

.category-count {
    font-size: 13px;
    opacity: 0.7;
}

/* RTL Support */
[dir="rtl"] .category-item:hover {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .hep-post-categories-list {
        padding: 16px;
    }

    .hep-categories-title {
        font-size: 18px;
    }

    .category-item {
        padding: 12px 14px;
        font-size: 14px;
    }

    .category-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
}
